Llama.gltf 240 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222
  1. {
  2. "asset" : {
  3. "version" : "2.0"
  4. },
  5. "scene" : 0,
  6. "scenes" : [
  7. {
  8. "name" : "Scene",
  9. "nodes" : [
  10. 25
  11. ]
  12. }
  13. ],
  14. "nodes" : [
  15. {
  16. "rotation" : [
  17. 0.7071068286895752,
  18. -6.434410124711576e-07,
  19. -6.434410124711576e-07,
  20. 0.7071068286895752
  21. ],
  22. "translation" : [
  23. -0.6222583055496216,
  24. 0.07783520221710205,
  25. 0.9798283576965332
  26. ],
  27. "name" : "FrontFoot.R"
  28. },
  29. {
  30. "rotation" : [
  31. 0.13236454129219055,
  32. -0.018815575167536736,
  33. 0.002513105748221278,
  34. 0.9910193085670471
  35. ],
  36. "translation" : [
  37. -3.725290298461914e-09,
  38. 1.1522759199142456,
  39. 5.774199962615967e-08
  40. ],
  41. "scale" : [
  42. 1,
  43. 0.9999998807907104,
  44. 1
  45. ],
  46. "name" : "FrontLowLeg.R"
  47. },
  48. {
  49. "rotation" : [
  50. 0.7056754231452942,
  51. -0.7034598588943481,
  52. -0.04496995359659195,
  53. 0.07172350585460663
  54. ],
  55. "translation" : [
  56. 5.844157868750699e-08,
  57. 0.4095715582370758,
  58. 3.3236204899367294e-09
  59. ],
  60. "children" : [
  61. 1
  62. ],
  63. "scale" : [
  64. 1,
  65. 1.0000001192092896,
  66. 1
  67. ],
  68. "name" : "FrontUpLeg.R"
  69. },
  70. {
  71. "rotation" : [
  72. -1.7174411937048717e-07,
  73. -3.4065340770439434e-08,
  74. 0.7071068286895752,
  75. 0.7071068286895752
  76. ],
  77. "translation" : [
  78. -0.2237308919429779,
  79. 0.6522345542907715,
  80. 0.9378541111946106
  81. ],
  82. "children" : [
  83. 2
  84. ],
  85. "name" : "FrontLeg.R"
  86. },
  87. {
  88. "rotation" : [
  89. -0.23119580745697021,
  90. 0.01882718876004219,
  91. 0.0044748177751898766,
  92. 0.9727147817611694
  93. ],
  94. "translation" : [
  95. 3.725290298461914e-08,
  96. 1.1416398286819458,
  97. 5.029141902923584e-08
  98. ],
  99. "scale" : [
  100. 0.9999999403953552,
  101. 1,
  102. 0.9999999403953552
  103. ],
  104. "name" : "BackLowLeg.R"
  105. },
  106. {
  107. "rotation" : [
  108. -0.6994131207466125,
  109. 0.6948642134666443,
  110. -0.10402467101812363,
  111. 0.13101156055927277
  112. ],
  113. "translation" : [
  114. -9.829552283235898e-09,
  115. 0.36548808217048645,
  116. 3.785970648095827e-09
  117. ],
  118. "children" : [
  119. 4
  120. ],
  121. "scale" : [
  122. 1,
  123. 1.0000003576278687,
  124. 1
  125. ],
  126. "name" : "BackUpLeg.R"
  127. },
  128. {
  129. "rotation" : [
  130. -4.147892695982591e-07,
  131. -2.771105016563524e-07,
  132. 0.7071068286895752,
  133. 0.7071068286895752
  134. ],
  135. "translation" : [
  136. -0.2527070939540863,
  137. 0.6522345542907715,
  138. -1.1605074405670166
  139. ],
  140. "children" : [
  141. 5
  142. ],
  143. "name" : "BackLeg.R"
  144. },
  145. {
  146. "rotation" : [
  147. 0.1322072595357895,
  148. 0.05182727426290512,
  149. -0.006922222673892975,
  150. 0.9898420572280884
  151. ],
  152. "translation" : [
  153. 3.166496753692627e-08,
  154. 1.1522759199142456,
  155. -6.332993507385254e-08
  156. ],
  157. "scale" : [
  158. 0.9999999403953552,
  159. 1,
  160. 0.9999999403953552
  161. ],
  162. "name" : "FrontLowLeg.L"
  163. },
  164. {
  165. "rotation" : [
  166. -0.021431082859635353,
  167. -0.09512416273355484,
  168. 0.7067819237709045,
  169. 0.7006793022155762
  170. ],
  171. "translation" : [
  172. 9.091502306546317e-08,
  173. 0.4095717966556549,
  174. 9.193371397486771e-09
  175. ],
  176. "children" : [
  177. 7
  178. ],
  179. "scale" : [
  180. 1,
  181. 1,
  182. 0.9999999403953552
  183. ],
  184. "name" : "FrontUpLeg.L"
  185. },
  186. {
  187. "rotation" : [
  188. 0.7071068286895752,
  189. 0.7071068286895752,
  190. -6.813063890831472e-08,
  191. -1.3767878215276141e-07
  192. ],
  193. "translation" : [
  194. 0.17576079070568085,
  195. 0.6522345542907715,
  196. 0.9378541111946106
  197. ],
  198. "children" : [
  199. 8
  200. ],
  201. "scale" : [
  202. 0.9999999403953552,
  203. 0.9999997019767761,
  204. 1
  205. ],
  206. "name" : "FrontLeg.L"
  207. },
  208. {
  209. "rotation" : [
  210. -0.2312285155057907,
  211. -0.009245170280337334,
  212. -0.0021974716801196337,
  213. 0.9728530645370483
  214. ],
  215. "translation" : [
  216. -2.2351741790771484e-08,
  217. 1.1416398286819458,
  218. 9.220093488693237e-08
  219. ],
  220. "name" : "BackLowLeg.L"
  221. },
  222. {
  223. "rotation" : [
  224. 0.11090832203626633,
  225. 0.12416107952594757,
  226. 0.6983546614646912,
  227. 0.6961208581924438
  228. ],
  229. "translation" : [
  230. 9.028558167756273e-08,
  231. 0.3654882311820984,
  232. -1.526299797660613e-08
  233. ],
  234. "children" : [
  235. 10
  236. ],
  237. "scale" : [
  238. 1.0000001192092896,
  239. 1.0000001192092896,
  240. 0.9999999403953552
  241. ],
  242. "name" : "BackUpLeg.L"
  243. },
  244. {
  245. "rotation" : [
  246. 0.7071068286895752,
  247. 0.7071068286895752,
  248. -3.0133972472867754e-07,
  249. -3.90559847573968e-07
  250. ],
  251. "translation" : [
  252. 0.20473696291446686,
  253. 0.6522345542907715,
  254. -1.1605074405670166
  255. ],
  256. "children" : [
  257. 11
  258. ],
  259. "scale" : [
  260. 0.9999999403953552,
  261. 0.9999997019767761,
  262. 1
  263. ],
  264. "name" : "BackLeg.L"
  265. },
  266. {
  267. "rotation" : [
  268. 0.624598503112793,
  269. -0.03953960910439491,
  270. 0.04037843644618988,
  271. 0.7788985371589661
  272. ],
  273. "translation" : [
  274. -0.025126438587903976,
  275. 1.095418930053711,
  276. -1.8697530031204224
  277. ],
  278. "scale" : [
  279. 1,
  280. 0.9999999403953552,
  281. 0.9999999403953552
  282. ],
  283. "name" : "Back"
  284. },
  285. {
  286. "rotation" : [
  287. -0.7651087045669556,
  288. -0.15866653621196747,
  289. 0.20435932278633118,
  290. 0.5896362662315369
  291. ],
  292. "translation" : [
  293. -2.0945662981830537e-09,
  294. 1.280710220336914,
  295. -4.390044239244162e-08
  296. ],
  297. "name" : "Head"
  298. },
  299. {
  300. "rotation" : [
  301. 0.009341633878648281,
  302. -0.02987664006650448,
  303. -0.01718813180923462,
  304. 0.9993621706962585
  305. ],
  306. "translation" : [
  307. 2.2351741790771484e-08,
  308. 0.9223299622535706,
  309. 1.280568540096283e-07
  310. ],
  311. "children" : [
  312. 14
  313. ],
  314. "scale" : [
  315. 0.9999998807907104,
  316. 0.9999999403953552,
  317. 1
  318. ],
  319. "name" : "Neck"
  320. },
  321. {
  322. "rotation" : [
  323. -0.014027746394276619,
  324. -0.9931138157844543,
  325. -0.11196984350681305,
  326. 0.03148116543889046
  327. ],
  328. "translation" : [
  329. -0.057327255606651306,
  330. 1.4069905281066895,
  331. 1.4414523839950562
  332. ],
  333. "children" : [
  334. 15
  335. ],
  336. "scale" : [
  337. 0.9999999403953552,
  338. 0.9999999403953552,
  339. 1
  340. ],
  341. "name" : "Shoulders"
  342. },
  343. {
  344. "rotation" : [
  345. 0.048669543117284775,
  346. 0.0006810504128225148,
  347. -0.013531201519072056,
  348. 0.998723030090332
  349. ],
  350. "translation" : [
  351. 3.283198601877757e-09,
  352. 1.0058820247650146,
  353. 2.1948500261714798e-07
  354. ],
  355. "scale" : [
  356. 0.9999999403953552,
  357. 0.9999999403953552,
  358. 1
  359. ],
  360. "name" : "Torso"
  361. },
  362. {
  363. "rotation" : [
  364. 3.4683316698647104e-06,
  365. 0.6980746984481812,
  366. 0.7160249352455139,
  367. 3.3813828395068413e-06
  368. ],
  369. "translation" : [
  370. -0.025126438587903976,
  371. 1.3001558780670166,
  372. -1.0117493867874146
  373. ],
  374. "children" : [
  375. 17
  376. ],
  377. "name" : "Hips"
  378. },
  379. {
  380. "name" : "Body",
  381. "children" : [
  382. 3,
  383. 6,
  384. 9,
  385. 12,
  386. 13,
  387. 16,
  388. 18
  389. ],
  390. "translation" : [
  391. 0.00418555922806263,
  392. 1.7917680740356445,
  393. -0.0135071761906147
  394. ]
  395. },
  396. {
  397. "rotation" : [
  398. 0.7071068286895752,
  399. -6.434410124711576e-07,
  400. -6.434410124711576e-07,
  401. 0.7071068286895752
  402. ],
  403. "translation" : [
  404. -0.650572657585144,
  405. 0.07783520221710205,
  406. -1.3867123126983643
  407. ],
  408. "name" : "BackFoot.R"
  409. },
  410. {
  411. "rotation" : [
  412. 0.7071068286895752,
  413. -9.806159368963563e-07,
  414. -9.806159368963563e-07,
  415. 0.7071068286895752
  416. ],
  417. "translation" : [
  418. 0.5826594829559326,
  419. 0.07783520221710205,
  420. 0.9798283576965332
  421. ],
  422. "name" : "FrontFoot.L"
  423. },
  424. {
  425. "rotation" : [
  426. 0.7071068286895752,
  427. -9.806159368963563e-07,
  428. -9.806159368963563e-07,
  429. 0.7071068286895752
  430. ],
  431. "translation" : [
  432. 0.6109739542007446,
  433. 0.07783520221710205,
  434. -1.3867123126983643
  435. ],
  436. "name" : "BackFoot.L"
  437. },
  438. {
  439. "name" : "root",
  440. "children" : [
  441. 0,
  442. 19,
  443. 20,
  444. 21,
  445. 22
  446. ]
  447. },
  448. {
  449. "name" : "Llama",
  450. "mesh" : 0,
  451. "skin" : 0
  452. },
  453. {
  454. "name" : "Armature",
  455. "children" : [
  456. 24,
  457. 23
  458. ]
  459. }
  460. ],
  461. "animations" : [
  462. {
  463. "name" : "Jump",
  464. "channels" : [
  465. {
  466. "target" : {
  467. "node" : 23,
  468. "path" : "translation"
  469. },
  470. "sampler" : 0
  471. },
  472. {
  473. "target" : {
  474. "node" : 23,
  475. "path" : "rotation"
  476. },
  477. "sampler" : 1
  478. },
  479. {
  480. "target" : {
  481. "node" : 23,
  482. "path" : "scale"
  483. },
  484. "sampler" : 2
  485. },
  486. {
  487. "target" : {
  488. "node" : 0,
  489. "path" : "translation"
  490. },
  491. "sampler" : 3
  492. },
  493. {
  494. "target" : {
  495. "node" : 0,
  496. "path" : "rotation"
  497. },
  498. "sampler" : 4
  499. },
  500. {
  501. "target" : {
  502. "node" : 0,
  503. "path" : "scale"
  504. },
  505. "sampler" : 5
  506. },
  507. {
  508. "target" : {
  509. "node" : 19,
  510. "path" : "translation"
  511. },
  512. "sampler" : 6
  513. },
  514. {
  515. "target" : {
  516. "node" : 19,
  517. "path" : "rotation"
  518. },
  519. "sampler" : 7
  520. },
  521. {
  522. "target" : {
  523. "node" : 19,
  524. "path" : "scale"
  525. },
  526. "sampler" : 8
  527. },
  528. {
  529. "target" : {
  530. "node" : 3,
  531. "path" : "translation"
  532. },
  533. "sampler" : 9
  534. },
  535. {
  536. "target" : {
  537. "node" : 3,
  538. "path" : "rotation"
  539. },
  540. "sampler" : 10
  541. },
  542. {
  543. "target" : {
  544. "node" : 3,
  545. "path" : "scale"
  546. },
  547. "sampler" : 11
  548. },
  549. {
  550. "target" : {
  551. "node" : 2,
  552. "path" : "translation"
  553. },
  554. "sampler" : 12
  555. },
  556. {
  557. "target" : {
  558. "node" : 2,
  559. "path" : "rotation"
  560. },
  561. "sampler" : 13
  562. },
  563. {
  564. "target" : {
  565. "node" : 2,
  566. "path" : "scale"
  567. },
  568. "sampler" : 14
  569. },
  570. {
  571. "target" : {
  572. "node" : 1,
  573. "path" : "translation"
  574. },
  575. "sampler" : 15
  576. },
  577. {
  578. "target" : {
  579. "node" : 1,
  580. "path" : "rotation"
  581. },
  582. "sampler" : 16
  583. },
  584. {
  585. "target" : {
  586. "node" : 1,
  587. "path" : "scale"
  588. },
  589. "sampler" : 17
  590. },
  591. {
  592. "target" : {
  593. "node" : 6,
  594. "path" : "translation"
  595. },
  596. "sampler" : 18
  597. },
  598. {
  599. "target" : {
  600. "node" : 6,
  601. "path" : "rotation"
  602. },
  603. "sampler" : 19
  604. },
  605. {
  606. "target" : {
  607. "node" : 6,
  608. "path" : "scale"
  609. },
  610. "sampler" : 20
  611. },
  612. {
  613. "target" : {
  614. "node" : 5,
  615. "path" : "translation"
  616. },
  617. "sampler" : 21
  618. },
  619. {
  620. "target" : {
  621. "node" : 5,
  622. "path" : "rotation"
  623. },
  624. "sampler" : 22
  625. },
  626. {
  627. "target" : {
  628. "node" : 5,
  629. "path" : "scale"
  630. },
  631. "sampler" : 23
  632. },
  633. {
  634. "target" : {
  635. "node" : 4,
  636. "path" : "translation"
  637. },
  638. "sampler" : 24
  639. },
  640. {
  641. "target" : {
  642. "node" : 4,
  643. "path" : "rotation"
  644. },
  645. "sampler" : 25
  646. },
  647. {
  648. "target" : {
  649. "node" : 4,
  650. "path" : "scale"
  651. },
  652. "sampler" : 26
  653. },
  654. {
  655. "target" : {
  656. "node" : 9,
  657. "path" : "translation"
  658. },
  659. "sampler" : 27
  660. },
  661. {
  662. "target" : {
  663. "node" : 9,
  664. "path" : "rotation"
  665. },
  666. "sampler" : 28
  667. },
  668. {
  669. "target" : {
  670. "node" : 9,
  671. "path" : "scale"
  672. },
  673. "sampler" : 29
  674. },
  675. {
  676. "target" : {
  677. "node" : 8,
  678. "path" : "translation"
  679. },
  680. "sampler" : 30
  681. },
  682. {
  683. "target" : {
  684. "node" : 8,
  685. "path" : "rotation"
  686. },
  687. "sampler" : 31
  688. },
  689. {
  690. "target" : {
  691. "node" : 8,
  692. "path" : "scale"
  693. },
  694. "sampler" : 32
  695. },
  696. {
  697. "target" : {
  698. "node" : 7,
  699. "path" : "translation"
  700. },
  701. "sampler" : 33
  702. },
  703. {
  704. "target" : {
  705. "node" : 7,
  706. "path" : "rotation"
  707. },
  708. "sampler" : 34
  709. },
  710. {
  711. "target" : {
  712. "node" : 7,
  713. "path" : "scale"
  714. },
  715. "sampler" : 35
  716. },
  717. {
  718. "target" : {
  719. "node" : 12,
  720. "path" : "translation"
  721. },
  722. "sampler" : 36
  723. },
  724. {
  725. "target" : {
  726. "node" : 12,
  727. "path" : "rotation"
  728. },
  729. "sampler" : 37
  730. },
  731. {
  732. "target" : {
  733. "node" : 12,
  734. "path" : "scale"
  735. },
  736. "sampler" : 38
  737. },
  738. {
  739. "target" : {
  740. "node" : 11,
  741. "path" : "translation"
  742. },
  743. "sampler" : 39
  744. },
  745. {
  746. "target" : {
  747. "node" : 11,
  748. "path" : "rotation"
  749. },
  750. "sampler" : 40
  751. },
  752. {
  753. "target" : {
  754. "node" : 11,
  755. "path" : "scale"
  756. },
  757. "sampler" : 41
  758. },
  759. {
  760. "target" : {
  761. "node" : 10,
  762. "path" : "translation"
  763. },
  764. "sampler" : 42
  765. },
  766. {
  767. "target" : {
  768. "node" : 10,
  769. "path" : "rotation"
  770. },
  771. "sampler" : 43
  772. },
  773. {
  774. "target" : {
  775. "node" : 10,
  776. "path" : "scale"
  777. },
  778. "sampler" : 44
  779. },
  780. {
  781. "target" : {
  782. "node" : 13,
  783. "path" : "translation"
  784. },
  785. "sampler" : 45
  786. },
  787. {
  788. "target" : {
  789. "node" : 13,
  790. "path" : "rotation"
  791. },
  792. "sampler" : 46
  793. },
  794. {
  795. "target" : {
  796. "node" : 13,
  797. "path" : "scale"
  798. },
  799. "sampler" : 47
  800. },
  801. {
  802. "target" : {
  803. "node" : 16,
  804. "path" : "translation"
  805. },
  806. "sampler" : 48
  807. },
  808. {
  809. "target" : {
  810. "node" : 16,
  811. "path" : "rotation"
  812. },
  813. "sampler" : 49
  814. },
  815. {
  816. "target" : {
  817. "node" : 16,
  818. "path" : "scale"
  819. },
  820. "sampler" : 50
  821. },
  822. {
  823. "target" : {
  824. "node" : 15,
  825. "path" : "translation"
  826. },
  827. "sampler" : 51
  828. },
  829. {
  830. "target" : {
  831. "node" : 15,
  832. "path" : "rotation"
  833. },
  834. "sampler" : 52
  835. },
  836. {
  837. "target" : {
  838. "node" : 15,
  839. "path" : "scale"
  840. },
  841. "sampler" : 53
  842. },
  843. {
  844. "target" : {
  845. "node" : 14,
  846. "path" : "translation"
  847. },
  848. "sampler" : 54
  849. },
  850. {
  851. "target" : {
  852. "node" : 14,
  853. "path" : "rotation"
  854. },
  855. "sampler" : 55
  856. },
  857. {
  858. "target" : {
  859. "node" : 14,
  860. "path" : "scale"
  861. },
  862. "sampler" : 56
  863. },
  864. {
  865. "target" : {
  866. "node" : 18,
  867. "path" : "translation"
  868. },
  869. "sampler" : 57
  870. },
  871. {
  872. "target" : {
  873. "node" : 18,
  874. "path" : "rotation"
  875. },
  876. "sampler" : 58
  877. },
  878. {
  879. "target" : {
  880. "node" : 18,
  881. "path" : "scale"
  882. },
  883. "sampler" : 59
  884. },
  885. {
  886. "target" : {
  887. "node" : 17,
  888. "path" : "translation"
  889. },
  890. "sampler" : 60
  891. },
  892. {
  893. "target" : {
  894. "node" : 17,
  895. "path" : "rotation"
  896. },
  897. "sampler" : 61
  898. },
  899. {
  900. "target" : {
  901. "node" : 17,
  902. "path" : "scale"
  903. },
  904. "sampler" : 62
  905. },
  906. {
  907. "target" : {
  908. "node" : 20,
  909. "path" : "translation"
  910. },
  911. "sampler" : 63
  912. },
  913. {
  914. "target" : {
  915. "node" : 20,
  916. "path" : "rotation"
  917. },
  918. "sampler" : 64
  919. },
  920. {
  921. "target" : {
  922. "node" : 20,
  923. "path" : "scale"
  924. },
  925. "sampler" : 65
  926. },
  927. {
  928. "target" : {
  929. "node" : 21,
  930. "path" : "translation"
  931. },
  932. "sampler" : 66
  933. },
  934. {
  935. "target" : {
  936. "node" : 21,
  937. "path" : "rotation"
  938. },
  939. "sampler" : 67
  940. },
  941. {
  942. "target" : {
  943. "node" : 21,
  944. "path" : "scale"
  945. },
  946. "sampler" : 68
  947. },
  948. {
  949. "target" : {
  950. "node" : 22,
  951. "path" : "translation"
  952. },
  953. "sampler" : 69
  954. },
  955. {
  956. "target" : {
  957. "node" : 22,
  958. "path" : "rotation"
  959. },
  960. "sampler" : 70
  961. },
  962. {
  963. "target" : {
  964. "node" : 22,
  965. "path" : "scale"
  966. },
  967. "sampler" : 71
  968. }
  969. ],
  970. "samplers" : [
  971. {
  972. "interpolation" : "LINEAR",
  973. "input" : 19,
  974. "output" : 20
  975. },
  976. {
  977. "interpolation" : "LINEAR",
  978. "input" : 19,
  979. "output" : 21
  980. },
  981. {
  982. "interpolation" : "LINEAR",
  983. "input" : 19,
  984. "output" : 22
  985. },
  986. {
  987. "interpolation" : "LINEAR",
  988. "input" : 19,
  989. "output" : 23
  990. },
  991. {
  992. "interpolation" : "LINEAR",
  993. "input" : 19,
  994. "output" : 24
  995. },
  996. {
  997. "interpolation" : "LINEAR",
  998. "input" : 19,
  999. "output" : 25
  1000. },
  1001. {
  1002. "interpolation" : "LINEAR",
  1003. "input" : 19,
  1004. "output" : 26
  1005. },
  1006. {
  1007. "interpolation" : "LINEAR",
  1008. "input" : 19,
  1009. "output" : 27
  1010. },
  1011. {
  1012. "interpolation" : "LINEAR",
  1013. "input" : 19,
  1014. "output" : 28
  1015. },
  1016. {
  1017. "interpolation" : "LINEAR",
  1018. "input" : 19,
  1019. "output" : 29
  1020. },
  1021. {
  1022. "interpolation" : "LINEAR",
  1023. "input" : 19,
  1024. "output" : 30
  1025. },
  1026. {
  1027. "interpolation" : "LINEAR",
  1028. "input" : 19,
  1029. "output" : 31
  1030. },
  1031. {
  1032. "interpolation" : "LINEAR",
  1033. "input" : 19,
  1034. "output" : 32
  1035. },
  1036. {
  1037. "interpolation" : "LINEAR",
  1038. "input" : 19,
  1039. "output" : 33
  1040. },
  1041. {
  1042. "interpolation" : "LINEAR",
  1043. "input" : 19,
  1044. "output" : 34
  1045. },
  1046. {
  1047. "interpolation" : "LINEAR",
  1048. "input" : 19,
  1049. "output" : 35
  1050. },
  1051. {
  1052. "interpolation" : "LINEAR",
  1053. "input" : 19,
  1054. "output" : 36
  1055. },
  1056. {
  1057. "interpolation" : "LINEAR",
  1058. "input" : 19,
  1059. "output" : 37
  1060. },
  1061. {
  1062. "interpolation" : "LINEAR",
  1063. "input" : 19,
  1064. "output" : 38
  1065. },
  1066. {
  1067. "interpolation" : "LINEAR",
  1068. "input" : 19,
  1069. "output" : 39
  1070. },
  1071. {
  1072. "interpolation" : "LINEAR",
  1073. "input" : 19,
  1074. "output" : 40
  1075. },
  1076. {
  1077. "interpolation" : "LINEAR",
  1078. "input" : 19,
  1079. "output" : 41
  1080. },
  1081. {
  1082. "interpolation" : "LINEAR",
  1083. "input" : 19,
  1084. "output" : 42
  1085. },
  1086. {
  1087. "interpolation" : "LINEAR",
  1088. "input" : 19,
  1089. "output" : 43
  1090. },
  1091. {
  1092. "interpolation" : "LINEAR",
  1093. "input" : 19,
  1094. "output" : 44
  1095. },
  1096. {
  1097. "interpolation" : "LINEAR",
  1098. "input" : 19,
  1099. "output" : 45
  1100. },
  1101. {
  1102. "interpolation" : "LINEAR",
  1103. "input" : 19,
  1104. "output" : 46
  1105. },
  1106. {
  1107. "interpolation" : "LINEAR",
  1108. "input" : 19,
  1109. "output" : 47
  1110. },
  1111. {
  1112. "interpolation" : "LINEAR",
  1113. "input" : 19,
  1114. "output" : 48
  1115. },
  1116. {
  1117. "interpolation" : "LINEAR",
  1118. "input" : 19,
  1119. "output" : 49
  1120. },
  1121. {
  1122. "interpolation" : "LINEAR",
  1123. "input" : 19,
  1124. "output" : 50
  1125. },
  1126. {
  1127. "interpolation" : "LINEAR",
  1128. "input" : 19,
  1129. "output" : 51
  1130. },
  1131. {
  1132. "interpolation" : "LINEAR",
  1133. "input" : 19,
  1134. "output" : 52
  1135. },
  1136. {
  1137. "interpolation" : "LINEAR",
  1138. "input" : 19,
  1139. "output" : 53
  1140. },
  1141. {
  1142. "interpolation" : "LINEAR",
  1143. "input" : 19,
  1144. "output" : 54
  1145. },
  1146. {
  1147. "interpolation" : "LINEAR",
  1148. "input" : 19,
  1149. "output" : 55
  1150. },
  1151. {
  1152. "interpolation" : "LINEAR",
  1153. "input" : 19,
  1154. "output" : 56
  1155. },
  1156. {
  1157. "interpolation" : "LINEAR",
  1158. "input" : 19,
  1159. "output" : 57
  1160. },
  1161. {
  1162. "interpolation" : "LINEAR",
  1163. "input" : 19,
  1164. "output" : 58
  1165. },
  1166. {
  1167. "interpolation" : "LINEAR",
  1168. "input" : 19,
  1169. "output" : 59
  1170. },
  1171. {
  1172. "interpolation" : "LINEAR",
  1173. "input" : 19,
  1174. "output" : 60
  1175. },
  1176. {
  1177. "interpolation" : "LINEAR",
  1178. "input" : 19,
  1179. "output" : 61
  1180. },
  1181. {
  1182. "interpolation" : "LINEAR",
  1183. "input" : 19,
  1184. "output" : 62
  1185. },
  1186. {
  1187. "interpolation" : "LINEAR",
  1188. "input" : 19,
  1189. "output" : 63
  1190. },
  1191. {
  1192. "interpolation" : "LINEAR",
  1193. "input" : 19,
  1194. "output" : 64
  1195. },
  1196. {
  1197. "interpolation" : "LINEAR",
  1198. "input" : 19,
  1199. "output" : 65
  1200. },
  1201. {
  1202. "interpolation" : "LINEAR",
  1203. "input" : 19,
  1204. "output" : 66
  1205. },
  1206. {
  1207. "interpolation" : "LINEAR",
  1208. "input" : 19,
  1209. "output" : 67
  1210. },
  1211. {
  1212. "interpolation" : "LINEAR",
  1213. "input" : 19,
  1214. "output" : 68
  1215. },
  1216. {
  1217. "interpolation" : "LINEAR",
  1218. "input" : 19,
  1219. "output" : 69
  1220. },
  1221. {
  1222. "interpolation" : "LINEAR",
  1223. "input" : 19,
  1224. "output" : 70
  1225. },
  1226. {
  1227. "interpolation" : "LINEAR",
  1228. "input" : 19,
  1229. "output" : 71
  1230. },
  1231. {
  1232. "interpolation" : "LINEAR",
  1233. "input" : 19,
  1234. "output" : 72
  1235. },
  1236. {
  1237. "interpolation" : "LINEAR",
  1238. "input" : 19,
  1239. "output" : 73
  1240. },
  1241. {
  1242. "interpolation" : "LINEAR",
  1243. "input" : 19,
  1244. "output" : 74
  1245. },
  1246. {
  1247. "interpolation" : "LINEAR",
  1248. "input" : 19,
  1249. "output" : 75
  1250. },
  1251. {
  1252. "interpolation" : "LINEAR",
  1253. "input" : 19,
  1254. "output" : 76
  1255. },
  1256. {
  1257. "interpolation" : "LINEAR",
  1258. "input" : 19,
  1259. "output" : 77
  1260. },
  1261. {
  1262. "interpolation" : "LINEAR",
  1263. "input" : 19,
  1264. "output" : 78
  1265. },
  1266. {
  1267. "interpolation" : "LINEAR",
  1268. "input" : 19,
  1269. "output" : 79
  1270. },
  1271. {
  1272. "interpolation" : "LINEAR",
  1273. "input" : 19,
  1274. "output" : 80
  1275. },
  1276. {
  1277. "interpolation" : "LINEAR",
  1278. "input" : 19,
  1279. "output" : 81
  1280. },
  1281. {
  1282. "interpolation" : "LINEAR",
  1283. "input" : 19,
  1284. "output" : 82
  1285. },
  1286. {
  1287. "interpolation" : "LINEAR",
  1288. "input" : 19,
  1289. "output" : 83
  1290. },
  1291. {
  1292. "interpolation" : "LINEAR",
  1293. "input" : 19,
  1294. "output" : 84
  1295. },
  1296. {
  1297. "interpolation" : "LINEAR",
  1298. "input" : 19,
  1299. "output" : 85
  1300. },
  1301. {
  1302. "interpolation" : "LINEAR",
  1303. "input" : 19,
  1304. "output" : 86
  1305. },
  1306. {
  1307. "interpolation" : "LINEAR",
  1308. "input" : 19,
  1309. "output" : 87
  1310. },
  1311. {
  1312. "interpolation" : "LINEAR",
  1313. "input" : 19,
  1314. "output" : 88
  1315. },
  1316. {
  1317. "interpolation" : "LINEAR",
  1318. "input" : 19,
  1319. "output" : 89
  1320. },
  1321. {
  1322. "interpolation" : "LINEAR",
  1323. "input" : 19,
  1324. "output" : 90
  1325. },
  1326. {
  1327. "interpolation" : "LINEAR",
  1328. "input" : 19,
  1329. "output" : 91
  1330. }
  1331. ]
  1332. },
  1333. {
  1334. "name" : "Idle",
  1335. "channels" : [
  1336. {
  1337. "target" : {
  1338. "node" : 23,
  1339. "path" : "translation"
  1340. },
  1341. "sampler" : 0
  1342. },
  1343. {
  1344. "target" : {
  1345. "node" : 23,
  1346. "path" : "rotation"
  1347. },
  1348. "sampler" : 1
  1349. },
  1350. {
  1351. "target" : {
  1352. "node" : 23,
  1353. "path" : "scale"
  1354. },
  1355. "sampler" : 2
  1356. },
  1357. {
  1358. "target" : {
  1359. "node" : 0,
  1360. "path" : "translation"
  1361. },
  1362. "sampler" : 3
  1363. },
  1364. {
  1365. "target" : {
  1366. "node" : 0,
  1367. "path" : "rotation"
  1368. },
  1369. "sampler" : 4
  1370. },
  1371. {
  1372. "target" : {
  1373. "node" : 0,
  1374. "path" : "scale"
  1375. },
  1376. "sampler" : 5
  1377. },
  1378. {
  1379. "target" : {
  1380. "node" : 19,
  1381. "path" : "translation"
  1382. },
  1383. "sampler" : 6
  1384. },
  1385. {
  1386. "target" : {
  1387. "node" : 19,
  1388. "path" : "rotation"
  1389. },
  1390. "sampler" : 7
  1391. },
  1392. {
  1393. "target" : {
  1394. "node" : 19,
  1395. "path" : "scale"
  1396. },
  1397. "sampler" : 8
  1398. },
  1399. {
  1400. "target" : {
  1401. "node" : 3,
  1402. "path" : "translation"
  1403. },
  1404. "sampler" : 9
  1405. },
  1406. {
  1407. "target" : {
  1408. "node" : 3,
  1409. "path" : "rotation"
  1410. },
  1411. "sampler" : 10
  1412. },
  1413. {
  1414. "target" : {
  1415. "node" : 3,
  1416. "path" : "scale"
  1417. },
  1418. "sampler" : 11
  1419. },
  1420. {
  1421. "target" : {
  1422. "node" : 2,
  1423. "path" : "translation"
  1424. },
  1425. "sampler" : 12
  1426. },
  1427. {
  1428. "target" : {
  1429. "node" : 2,
  1430. "path" : "rotation"
  1431. },
  1432. "sampler" : 13
  1433. },
  1434. {
  1435. "target" : {
  1436. "node" : 2,
  1437. "path" : "scale"
  1438. },
  1439. "sampler" : 14
  1440. },
  1441. {
  1442. "target" : {
  1443. "node" : 1,
  1444. "path" : "translation"
  1445. },
  1446. "sampler" : 15
  1447. },
  1448. {
  1449. "target" : {
  1450. "node" : 1,
  1451. "path" : "rotation"
  1452. },
  1453. "sampler" : 16
  1454. },
  1455. {
  1456. "target" : {
  1457. "node" : 1,
  1458. "path" : "scale"
  1459. },
  1460. "sampler" : 17
  1461. },
  1462. {
  1463. "target" : {
  1464. "node" : 6,
  1465. "path" : "translation"
  1466. },
  1467. "sampler" : 18
  1468. },
  1469. {
  1470. "target" : {
  1471. "node" : 6,
  1472. "path" : "rotation"
  1473. },
  1474. "sampler" : 19
  1475. },
  1476. {
  1477. "target" : {
  1478. "node" : 6,
  1479. "path" : "scale"
  1480. },
  1481. "sampler" : 20
  1482. },
  1483. {
  1484. "target" : {
  1485. "node" : 5,
  1486. "path" : "translation"
  1487. },
  1488. "sampler" : 21
  1489. },
  1490. {
  1491. "target" : {
  1492. "node" : 5,
  1493. "path" : "rotation"
  1494. },
  1495. "sampler" : 22
  1496. },
  1497. {
  1498. "target" : {
  1499. "node" : 5,
  1500. "path" : "scale"
  1501. },
  1502. "sampler" : 23
  1503. },
  1504. {
  1505. "target" : {
  1506. "node" : 4,
  1507. "path" : "translation"
  1508. },
  1509. "sampler" : 24
  1510. },
  1511. {
  1512. "target" : {
  1513. "node" : 4,
  1514. "path" : "rotation"
  1515. },
  1516. "sampler" : 25
  1517. },
  1518. {
  1519. "target" : {
  1520. "node" : 4,
  1521. "path" : "scale"
  1522. },
  1523. "sampler" : 26
  1524. },
  1525. {
  1526. "target" : {
  1527. "node" : 9,
  1528. "path" : "translation"
  1529. },
  1530. "sampler" : 27
  1531. },
  1532. {
  1533. "target" : {
  1534. "node" : 9,
  1535. "path" : "rotation"
  1536. },
  1537. "sampler" : 28
  1538. },
  1539. {
  1540. "target" : {
  1541. "node" : 9,
  1542. "path" : "scale"
  1543. },
  1544. "sampler" : 29
  1545. },
  1546. {
  1547. "target" : {
  1548. "node" : 8,
  1549. "path" : "translation"
  1550. },
  1551. "sampler" : 30
  1552. },
  1553. {
  1554. "target" : {
  1555. "node" : 8,
  1556. "path" : "rotation"
  1557. },
  1558. "sampler" : 31
  1559. },
  1560. {
  1561. "target" : {
  1562. "node" : 8,
  1563. "path" : "scale"
  1564. },
  1565. "sampler" : 32
  1566. },
  1567. {
  1568. "target" : {
  1569. "node" : 7,
  1570. "path" : "translation"
  1571. },
  1572. "sampler" : 33
  1573. },
  1574. {
  1575. "target" : {
  1576. "node" : 7,
  1577. "path" : "rotation"
  1578. },
  1579. "sampler" : 34
  1580. },
  1581. {
  1582. "target" : {
  1583. "node" : 7,
  1584. "path" : "scale"
  1585. },
  1586. "sampler" : 35
  1587. },
  1588. {
  1589. "target" : {
  1590. "node" : 12,
  1591. "path" : "translation"
  1592. },
  1593. "sampler" : 36
  1594. },
  1595. {
  1596. "target" : {
  1597. "node" : 12,
  1598. "path" : "rotation"
  1599. },
  1600. "sampler" : 37
  1601. },
  1602. {
  1603. "target" : {
  1604. "node" : 12,
  1605. "path" : "scale"
  1606. },
  1607. "sampler" : 38
  1608. },
  1609. {
  1610. "target" : {
  1611. "node" : 11,
  1612. "path" : "translation"
  1613. },
  1614. "sampler" : 39
  1615. },
  1616. {
  1617. "target" : {
  1618. "node" : 11,
  1619. "path" : "rotation"
  1620. },
  1621. "sampler" : 40
  1622. },
  1623. {
  1624. "target" : {
  1625. "node" : 11,
  1626. "path" : "scale"
  1627. },
  1628. "sampler" : 41
  1629. },
  1630. {
  1631. "target" : {
  1632. "node" : 10,
  1633. "path" : "translation"
  1634. },
  1635. "sampler" : 42
  1636. },
  1637. {
  1638. "target" : {
  1639. "node" : 10,
  1640. "path" : "rotation"
  1641. },
  1642. "sampler" : 43
  1643. },
  1644. {
  1645. "target" : {
  1646. "node" : 10,
  1647. "path" : "scale"
  1648. },
  1649. "sampler" : 44
  1650. },
  1651. {
  1652. "target" : {
  1653. "node" : 13,
  1654. "path" : "translation"
  1655. },
  1656. "sampler" : 45
  1657. },
  1658. {
  1659. "target" : {
  1660. "node" : 13,
  1661. "path" : "rotation"
  1662. },
  1663. "sampler" : 46
  1664. },
  1665. {
  1666. "target" : {
  1667. "node" : 13,
  1668. "path" : "scale"
  1669. },
  1670. "sampler" : 47
  1671. },
  1672. {
  1673. "target" : {
  1674. "node" : 16,
  1675. "path" : "translation"
  1676. },
  1677. "sampler" : 48
  1678. },
  1679. {
  1680. "target" : {
  1681. "node" : 16,
  1682. "path" : "rotation"
  1683. },
  1684. "sampler" : 49
  1685. },
  1686. {
  1687. "target" : {
  1688. "node" : 16,
  1689. "path" : "scale"
  1690. },
  1691. "sampler" : 50
  1692. },
  1693. {
  1694. "target" : {
  1695. "node" : 15,
  1696. "path" : "translation"
  1697. },
  1698. "sampler" : 51
  1699. },
  1700. {
  1701. "target" : {
  1702. "node" : 15,
  1703. "path" : "rotation"
  1704. },
  1705. "sampler" : 52
  1706. },
  1707. {
  1708. "target" : {
  1709. "node" : 15,
  1710. "path" : "scale"
  1711. },
  1712. "sampler" : 53
  1713. },
  1714. {
  1715. "target" : {
  1716. "node" : 14,
  1717. "path" : "translation"
  1718. },
  1719. "sampler" : 54
  1720. },
  1721. {
  1722. "target" : {
  1723. "node" : 14,
  1724. "path" : "rotation"
  1725. },
  1726. "sampler" : 55
  1727. },
  1728. {
  1729. "target" : {
  1730. "node" : 14,
  1731. "path" : "scale"
  1732. },
  1733. "sampler" : 56
  1734. },
  1735. {
  1736. "target" : {
  1737. "node" : 18,
  1738. "path" : "translation"
  1739. },
  1740. "sampler" : 57
  1741. },
  1742. {
  1743. "target" : {
  1744. "node" : 18,
  1745. "path" : "rotation"
  1746. },
  1747. "sampler" : 58
  1748. },
  1749. {
  1750. "target" : {
  1751. "node" : 18,
  1752. "path" : "scale"
  1753. },
  1754. "sampler" : 59
  1755. },
  1756. {
  1757. "target" : {
  1758. "node" : 17,
  1759. "path" : "translation"
  1760. },
  1761. "sampler" : 60
  1762. },
  1763. {
  1764. "target" : {
  1765. "node" : 17,
  1766. "path" : "rotation"
  1767. },
  1768. "sampler" : 61
  1769. },
  1770. {
  1771. "target" : {
  1772. "node" : 17,
  1773. "path" : "scale"
  1774. },
  1775. "sampler" : 62
  1776. },
  1777. {
  1778. "target" : {
  1779. "node" : 20,
  1780. "path" : "translation"
  1781. },
  1782. "sampler" : 63
  1783. },
  1784. {
  1785. "target" : {
  1786. "node" : 20,
  1787. "path" : "rotation"
  1788. },
  1789. "sampler" : 64
  1790. },
  1791. {
  1792. "target" : {
  1793. "node" : 20,
  1794. "path" : "scale"
  1795. },
  1796. "sampler" : 65
  1797. },
  1798. {
  1799. "target" : {
  1800. "node" : 21,
  1801. "path" : "translation"
  1802. },
  1803. "sampler" : 66
  1804. },
  1805. {
  1806. "target" : {
  1807. "node" : 21,
  1808. "path" : "rotation"
  1809. },
  1810. "sampler" : 67
  1811. },
  1812. {
  1813. "target" : {
  1814. "node" : 21,
  1815. "path" : "scale"
  1816. },
  1817. "sampler" : 68
  1818. },
  1819. {
  1820. "target" : {
  1821. "node" : 22,
  1822. "path" : "translation"
  1823. },
  1824. "sampler" : 69
  1825. },
  1826. {
  1827. "target" : {
  1828. "node" : 22,
  1829. "path" : "rotation"
  1830. },
  1831. "sampler" : 70
  1832. },
  1833. {
  1834. "target" : {
  1835. "node" : 22,
  1836. "path" : "scale"
  1837. },
  1838. "sampler" : 71
  1839. }
  1840. ],
  1841. "samplers" : [
  1842. {
  1843. "interpolation" : "LINEAR",
  1844. "input" : 92,
  1845. "output" : 93
  1846. },
  1847. {
  1848. "interpolation" : "LINEAR",
  1849. "input" : 92,
  1850. "output" : 94
  1851. },
  1852. {
  1853. "interpolation" : "LINEAR",
  1854. "input" : 92,
  1855. "output" : 95
  1856. },
  1857. {
  1858. "interpolation" : "LINEAR",
  1859. "input" : 92,
  1860. "output" : 96
  1861. },
  1862. {
  1863. "interpolation" : "LINEAR",
  1864. "input" : 92,
  1865. "output" : 97
  1866. },
  1867. {
  1868. "interpolation" : "LINEAR",
  1869. "input" : 92,
  1870. "output" : 98
  1871. },
  1872. {
  1873. "interpolation" : "LINEAR",
  1874. "input" : 92,
  1875. "output" : 99
  1876. },
  1877. {
  1878. "interpolation" : "LINEAR",
  1879. "input" : 92,
  1880. "output" : 100
  1881. },
  1882. {
  1883. "interpolation" : "LINEAR",
  1884. "input" : 92,
  1885. "output" : 101
  1886. },
  1887. {
  1888. "interpolation" : "LINEAR",
  1889. "input" : 92,
  1890. "output" : 102
  1891. },
  1892. {
  1893. "interpolation" : "LINEAR",
  1894. "input" : 92,
  1895. "output" : 103
  1896. },
  1897. {
  1898. "interpolation" : "LINEAR",
  1899. "input" : 92,
  1900. "output" : 104
  1901. },
  1902. {
  1903. "interpolation" : "LINEAR",
  1904. "input" : 92,
  1905. "output" : 105
  1906. },
  1907. {
  1908. "interpolation" : "LINEAR",
  1909. "input" : 92,
  1910. "output" : 106
  1911. },
  1912. {
  1913. "interpolation" : "LINEAR",
  1914. "input" : 92,
  1915. "output" : 107
  1916. },
  1917. {
  1918. "interpolation" : "LINEAR",
  1919. "input" : 92,
  1920. "output" : 108
  1921. },
  1922. {
  1923. "interpolation" : "LINEAR",
  1924. "input" : 92,
  1925. "output" : 109
  1926. },
  1927. {
  1928. "interpolation" : "LINEAR",
  1929. "input" : 92,
  1930. "output" : 110
  1931. },
  1932. {
  1933. "interpolation" : "LINEAR",
  1934. "input" : 92,
  1935. "output" : 111
  1936. },
  1937. {
  1938. "interpolation" : "LINEAR",
  1939. "input" : 92,
  1940. "output" : 112
  1941. },
  1942. {
  1943. "interpolation" : "LINEAR",
  1944. "input" : 92,
  1945. "output" : 113
  1946. },
  1947. {
  1948. "interpolation" : "LINEAR",
  1949. "input" : 92,
  1950. "output" : 114
  1951. },
  1952. {
  1953. "interpolation" : "LINEAR",
  1954. "input" : 92,
  1955. "output" : 115
  1956. },
  1957. {
  1958. "interpolation" : "LINEAR",
  1959. "input" : 92,
  1960. "output" : 116
  1961. },
  1962. {
  1963. "interpolation" : "LINEAR",
  1964. "input" : 92,
  1965. "output" : 117
  1966. },
  1967. {
  1968. "interpolation" : "LINEAR",
  1969. "input" : 92,
  1970. "output" : 118
  1971. },
  1972. {
  1973. "interpolation" : "LINEAR",
  1974. "input" : 92,
  1975. "output" : 119
  1976. },
  1977. {
  1978. "interpolation" : "LINEAR",
  1979. "input" : 92,
  1980. "output" : 120
  1981. },
  1982. {
  1983. "interpolation" : "LINEAR",
  1984. "input" : 92,
  1985. "output" : 121
  1986. },
  1987. {
  1988. "interpolation" : "LINEAR",
  1989. "input" : 92,
  1990. "output" : 122
  1991. },
  1992. {
  1993. "interpolation" : "LINEAR",
  1994. "input" : 92,
  1995. "output" : 123
  1996. },
  1997. {
  1998. "interpolation" : "LINEAR",
  1999. "input" : 92,
  2000. "output" : 124
  2001. },
  2002. {
  2003. "interpolation" : "LINEAR",
  2004. "input" : 92,
  2005. "output" : 125
  2006. },
  2007. {
  2008. "interpolation" : "LINEAR",
  2009. "input" : 92,
  2010. "output" : 126
  2011. },
  2012. {
  2013. "interpolation" : "LINEAR",
  2014. "input" : 92,
  2015. "output" : 127
  2016. },
  2017. {
  2018. "interpolation" : "LINEAR",
  2019. "input" : 92,
  2020. "output" : 128
  2021. },
  2022. {
  2023. "interpolation" : "LINEAR",
  2024. "input" : 92,
  2025. "output" : 129
  2026. },
  2027. {
  2028. "interpolation" : "LINEAR",
  2029. "input" : 92,
  2030. "output" : 130
  2031. },
  2032. {
  2033. "interpolation" : "LINEAR",
  2034. "input" : 92,
  2035. "output" : 131
  2036. },
  2037. {
  2038. "interpolation" : "LINEAR",
  2039. "input" : 92,
  2040. "output" : 132
  2041. },
  2042. {
  2043. "interpolation" : "LINEAR",
  2044. "input" : 92,
  2045. "output" : 133
  2046. },
  2047. {
  2048. "interpolation" : "LINEAR",
  2049. "input" : 92,
  2050. "output" : 134
  2051. },
  2052. {
  2053. "interpolation" : "LINEAR",
  2054. "input" : 92,
  2055. "output" : 135
  2056. },
  2057. {
  2058. "interpolation" : "LINEAR",
  2059. "input" : 92,
  2060. "output" : 136
  2061. },
  2062. {
  2063. "interpolation" : "LINEAR",
  2064. "input" : 92,
  2065. "output" : 137
  2066. },
  2067. {
  2068. "interpolation" : "LINEAR",
  2069. "input" : 92,
  2070. "output" : 138
  2071. },
  2072. {
  2073. "interpolation" : "LINEAR",
  2074. "input" : 92,
  2075. "output" : 139
  2076. },
  2077. {
  2078. "interpolation" : "LINEAR",
  2079. "input" : 92,
  2080. "output" : 140
  2081. },
  2082. {
  2083. "interpolation" : "LINEAR",
  2084. "input" : 92,
  2085. "output" : 141
  2086. },
  2087. {
  2088. "interpolation" : "LINEAR",
  2089. "input" : 92,
  2090. "output" : 142
  2091. },
  2092. {
  2093. "interpolation" : "LINEAR",
  2094. "input" : 92,
  2095. "output" : 143
  2096. },
  2097. {
  2098. "interpolation" : "LINEAR",
  2099. "input" : 92,
  2100. "output" : 144
  2101. },
  2102. {
  2103. "interpolation" : "LINEAR",
  2104. "input" : 92,
  2105. "output" : 145
  2106. },
  2107. {
  2108. "interpolation" : "LINEAR",
  2109. "input" : 92,
  2110. "output" : 146
  2111. },
  2112. {
  2113. "interpolation" : "LINEAR",
  2114. "input" : 92,
  2115. "output" : 147
  2116. },
  2117. {
  2118. "interpolation" : "LINEAR",
  2119. "input" : 92,
  2120. "output" : 148
  2121. },
  2122. {
  2123. "interpolation" : "LINEAR",
  2124. "input" : 92,
  2125. "output" : 149
  2126. },
  2127. {
  2128. "interpolation" : "LINEAR",
  2129. "input" : 92,
  2130. "output" : 150
  2131. },
  2132. {
  2133. "interpolation" : "LINEAR",
  2134. "input" : 92,
  2135. "output" : 151
  2136. },
  2137. {
  2138. "interpolation" : "LINEAR",
  2139. "input" : 92,
  2140. "output" : 152
  2141. },
  2142. {
  2143. "interpolation" : "LINEAR",
  2144. "input" : 92,
  2145. "output" : 153
  2146. },
  2147. {
  2148. "interpolation" : "LINEAR",
  2149. "input" : 92,
  2150. "output" : 154
  2151. },
  2152. {
  2153. "interpolation" : "LINEAR",
  2154. "input" : 92,
  2155. "output" : 155
  2156. },
  2157. {
  2158. "interpolation" : "LINEAR",
  2159. "input" : 92,
  2160. "output" : 156
  2161. },
  2162. {
  2163. "interpolation" : "LINEAR",
  2164. "input" : 92,
  2165. "output" : 157
  2166. },
  2167. {
  2168. "interpolation" : "LINEAR",
  2169. "input" : 92,
  2170. "output" : 158
  2171. },
  2172. {
  2173. "interpolation" : "LINEAR",
  2174. "input" : 92,
  2175. "output" : 159
  2176. },
  2177. {
  2178. "interpolation" : "LINEAR",
  2179. "input" : 92,
  2180. "output" : 160
  2181. },
  2182. {
  2183. "interpolation" : "LINEAR",
  2184. "input" : 92,
  2185. "output" : 161
  2186. },
  2187. {
  2188. "interpolation" : "LINEAR",
  2189. "input" : 92,
  2190. "output" : 162
  2191. },
  2192. {
  2193. "interpolation" : "LINEAR",
  2194. "input" : 92,
  2195. "output" : 163
  2196. },
  2197. {
  2198. "interpolation" : "LINEAR",
  2199. "input" : 92,
  2200. "output" : 164
  2201. }
  2202. ]
  2203. },
  2204. {
  2205. "name" : "Walk",
  2206. "channels" : [
  2207. {
  2208. "target" : {
  2209. "node" : 23,
  2210. "path" : "translation"
  2211. },
  2212. "sampler" : 0
  2213. },
  2214. {
  2215. "target" : {
  2216. "node" : 23,
  2217. "path" : "rotation"
  2218. },
  2219. "sampler" : 1
  2220. },
  2221. {
  2222. "target" : {
  2223. "node" : 23,
  2224. "path" : "scale"
  2225. },
  2226. "sampler" : 2
  2227. },
  2228. {
  2229. "target" : {
  2230. "node" : 0,
  2231. "path" : "translation"
  2232. },
  2233. "sampler" : 3
  2234. },
  2235. {
  2236. "target" : {
  2237. "node" : 0,
  2238. "path" : "rotation"
  2239. },
  2240. "sampler" : 4
  2241. },
  2242. {
  2243. "target" : {
  2244. "node" : 0,
  2245. "path" : "scale"
  2246. },
  2247. "sampler" : 5
  2248. },
  2249. {
  2250. "target" : {
  2251. "node" : 19,
  2252. "path" : "translation"
  2253. },
  2254. "sampler" : 6
  2255. },
  2256. {
  2257. "target" : {
  2258. "node" : 19,
  2259. "path" : "rotation"
  2260. },
  2261. "sampler" : 7
  2262. },
  2263. {
  2264. "target" : {
  2265. "node" : 19,
  2266. "path" : "scale"
  2267. },
  2268. "sampler" : 8
  2269. },
  2270. {
  2271. "target" : {
  2272. "node" : 3,
  2273. "path" : "translation"
  2274. },
  2275. "sampler" : 9
  2276. },
  2277. {
  2278. "target" : {
  2279. "node" : 3,
  2280. "path" : "rotation"
  2281. },
  2282. "sampler" : 10
  2283. },
  2284. {
  2285. "target" : {
  2286. "node" : 3,
  2287. "path" : "scale"
  2288. },
  2289. "sampler" : 11
  2290. },
  2291. {
  2292. "target" : {
  2293. "node" : 2,
  2294. "path" : "translation"
  2295. },
  2296. "sampler" : 12
  2297. },
  2298. {
  2299. "target" : {
  2300. "node" : 2,
  2301. "path" : "rotation"
  2302. },
  2303. "sampler" : 13
  2304. },
  2305. {
  2306. "target" : {
  2307. "node" : 2,
  2308. "path" : "scale"
  2309. },
  2310. "sampler" : 14
  2311. },
  2312. {
  2313. "target" : {
  2314. "node" : 1,
  2315. "path" : "translation"
  2316. },
  2317. "sampler" : 15
  2318. },
  2319. {
  2320. "target" : {
  2321. "node" : 1,
  2322. "path" : "rotation"
  2323. },
  2324. "sampler" : 16
  2325. },
  2326. {
  2327. "target" : {
  2328. "node" : 1,
  2329. "path" : "scale"
  2330. },
  2331. "sampler" : 17
  2332. },
  2333. {
  2334. "target" : {
  2335. "node" : 6,
  2336. "path" : "translation"
  2337. },
  2338. "sampler" : 18
  2339. },
  2340. {
  2341. "target" : {
  2342. "node" : 6,
  2343. "path" : "rotation"
  2344. },
  2345. "sampler" : 19
  2346. },
  2347. {
  2348. "target" : {
  2349. "node" : 6,
  2350. "path" : "scale"
  2351. },
  2352. "sampler" : 20
  2353. },
  2354. {
  2355. "target" : {
  2356. "node" : 5,
  2357. "path" : "translation"
  2358. },
  2359. "sampler" : 21
  2360. },
  2361. {
  2362. "target" : {
  2363. "node" : 5,
  2364. "path" : "rotation"
  2365. },
  2366. "sampler" : 22
  2367. },
  2368. {
  2369. "target" : {
  2370. "node" : 5,
  2371. "path" : "scale"
  2372. },
  2373. "sampler" : 23
  2374. },
  2375. {
  2376. "target" : {
  2377. "node" : 4,
  2378. "path" : "translation"
  2379. },
  2380. "sampler" : 24
  2381. },
  2382. {
  2383. "target" : {
  2384. "node" : 4,
  2385. "path" : "rotation"
  2386. },
  2387. "sampler" : 25
  2388. },
  2389. {
  2390. "target" : {
  2391. "node" : 4,
  2392. "path" : "scale"
  2393. },
  2394. "sampler" : 26
  2395. },
  2396. {
  2397. "target" : {
  2398. "node" : 9,
  2399. "path" : "translation"
  2400. },
  2401. "sampler" : 27
  2402. },
  2403. {
  2404. "target" : {
  2405. "node" : 9,
  2406. "path" : "rotation"
  2407. },
  2408. "sampler" : 28
  2409. },
  2410. {
  2411. "target" : {
  2412. "node" : 9,
  2413. "path" : "scale"
  2414. },
  2415. "sampler" : 29
  2416. },
  2417. {
  2418. "target" : {
  2419. "node" : 8,
  2420. "path" : "translation"
  2421. },
  2422. "sampler" : 30
  2423. },
  2424. {
  2425. "target" : {
  2426. "node" : 8,
  2427. "path" : "rotation"
  2428. },
  2429. "sampler" : 31
  2430. },
  2431. {
  2432. "target" : {
  2433. "node" : 8,
  2434. "path" : "scale"
  2435. },
  2436. "sampler" : 32
  2437. },
  2438. {
  2439. "target" : {
  2440. "node" : 7,
  2441. "path" : "translation"
  2442. },
  2443. "sampler" : 33
  2444. },
  2445. {
  2446. "target" : {
  2447. "node" : 7,
  2448. "path" : "rotation"
  2449. },
  2450. "sampler" : 34
  2451. },
  2452. {
  2453. "target" : {
  2454. "node" : 7,
  2455. "path" : "scale"
  2456. },
  2457. "sampler" : 35
  2458. },
  2459. {
  2460. "target" : {
  2461. "node" : 12,
  2462. "path" : "translation"
  2463. },
  2464. "sampler" : 36
  2465. },
  2466. {
  2467. "target" : {
  2468. "node" : 12,
  2469. "path" : "rotation"
  2470. },
  2471. "sampler" : 37
  2472. },
  2473. {
  2474. "target" : {
  2475. "node" : 12,
  2476. "path" : "scale"
  2477. },
  2478. "sampler" : 38
  2479. },
  2480. {
  2481. "target" : {
  2482. "node" : 11,
  2483. "path" : "translation"
  2484. },
  2485. "sampler" : 39
  2486. },
  2487. {
  2488. "target" : {
  2489. "node" : 11,
  2490. "path" : "rotation"
  2491. },
  2492. "sampler" : 40
  2493. },
  2494. {
  2495. "target" : {
  2496. "node" : 11,
  2497. "path" : "scale"
  2498. },
  2499. "sampler" : 41
  2500. },
  2501. {
  2502. "target" : {
  2503. "node" : 10,
  2504. "path" : "translation"
  2505. },
  2506. "sampler" : 42
  2507. },
  2508. {
  2509. "target" : {
  2510. "node" : 10,
  2511. "path" : "rotation"
  2512. },
  2513. "sampler" : 43
  2514. },
  2515. {
  2516. "target" : {
  2517. "node" : 10,
  2518. "path" : "scale"
  2519. },
  2520. "sampler" : 44
  2521. },
  2522. {
  2523. "target" : {
  2524. "node" : 13,
  2525. "path" : "translation"
  2526. },
  2527. "sampler" : 45
  2528. },
  2529. {
  2530. "target" : {
  2531. "node" : 13,
  2532. "path" : "rotation"
  2533. },
  2534. "sampler" : 46
  2535. },
  2536. {
  2537. "target" : {
  2538. "node" : 13,
  2539. "path" : "scale"
  2540. },
  2541. "sampler" : 47
  2542. },
  2543. {
  2544. "target" : {
  2545. "node" : 16,
  2546. "path" : "translation"
  2547. },
  2548. "sampler" : 48
  2549. },
  2550. {
  2551. "target" : {
  2552. "node" : 16,
  2553. "path" : "rotation"
  2554. },
  2555. "sampler" : 49
  2556. },
  2557. {
  2558. "target" : {
  2559. "node" : 16,
  2560. "path" : "scale"
  2561. },
  2562. "sampler" : 50
  2563. },
  2564. {
  2565. "target" : {
  2566. "node" : 15,
  2567. "path" : "translation"
  2568. },
  2569. "sampler" : 51
  2570. },
  2571. {
  2572. "target" : {
  2573. "node" : 15,
  2574. "path" : "rotation"
  2575. },
  2576. "sampler" : 52
  2577. },
  2578. {
  2579. "target" : {
  2580. "node" : 15,
  2581. "path" : "scale"
  2582. },
  2583. "sampler" : 53
  2584. },
  2585. {
  2586. "target" : {
  2587. "node" : 14,
  2588. "path" : "translation"
  2589. },
  2590. "sampler" : 54
  2591. },
  2592. {
  2593. "target" : {
  2594. "node" : 14,
  2595. "path" : "rotation"
  2596. },
  2597. "sampler" : 55
  2598. },
  2599. {
  2600. "target" : {
  2601. "node" : 14,
  2602. "path" : "scale"
  2603. },
  2604. "sampler" : 56
  2605. },
  2606. {
  2607. "target" : {
  2608. "node" : 18,
  2609. "path" : "translation"
  2610. },
  2611. "sampler" : 57
  2612. },
  2613. {
  2614. "target" : {
  2615. "node" : 18,
  2616. "path" : "rotation"
  2617. },
  2618. "sampler" : 58
  2619. },
  2620. {
  2621. "target" : {
  2622. "node" : 18,
  2623. "path" : "scale"
  2624. },
  2625. "sampler" : 59
  2626. },
  2627. {
  2628. "target" : {
  2629. "node" : 17,
  2630. "path" : "translation"
  2631. },
  2632. "sampler" : 60
  2633. },
  2634. {
  2635. "target" : {
  2636. "node" : 17,
  2637. "path" : "rotation"
  2638. },
  2639. "sampler" : 61
  2640. },
  2641. {
  2642. "target" : {
  2643. "node" : 17,
  2644. "path" : "scale"
  2645. },
  2646. "sampler" : 62
  2647. },
  2648. {
  2649. "target" : {
  2650. "node" : 20,
  2651. "path" : "translation"
  2652. },
  2653. "sampler" : 63
  2654. },
  2655. {
  2656. "target" : {
  2657. "node" : 20,
  2658. "path" : "rotation"
  2659. },
  2660. "sampler" : 64
  2661. },
  2662. {
  2663. "target" : {
  2664. "node" : 20,
  2665. "path" : "scale"
  2666. },
  2667. "sampler" : 65
  2668. },
  2669. {
  2670. "target" : {
  2671. "node" : 21,
  2672. "path" : "translation"
  2673. },
  2674. "sampler" : 66
  2675. },
  2676. {
  2677. "target" : {
  2678. "node" : 21,
  2679. "path" : "rotation"
  2680. },
  2681. "sampler" : 67
  2682. },
  2683. {
  2684. "target" : {
  2685. "node" : 21,
  2686. "path" : "scale"
  2687. },
  2688. "sampler" : 68
  2689. },
  2690. {
  2691. "target" : {
  2692. "node" : 22,
  2693. "path" : "translation"
  2694. },
  2695. "sampler" : 69
  2696. },
  2697. {
  2698. "target" : {
  2699. "node" : 22,
  2700. "path" : "rotation"
  2701. },
  2702. "sampler" : 70
  2703. },
  2704. {
  2705. "target" : {
  2706. "node" : 22,
  2707. "path" : "scale"
  2708. },
  2709. "sampler" : 71
  2710. }
  2711. ],
  2712. "samplers" : [
  2713. {
  2714. "interpolation" : "LINEAR",
  2715. "input" : 165,
  2716. "output" : 166
  2717. },
  2718. {
  2719. "interpolation" : "LINEAR",
  2720. "input" : 165,
  2721. "output" : 167
  2722. },
  2723. {
  2724. "interpolation" : "LINEAR",
  2725. "input" : 165,
  2726. "output" : 168
  2727. },
  2728. {
  2729. "interpolation" : "LINEAR",
  2730. "input" : 165,
  2731. "output" : 169
  2732. },
  2733. {
  2734. "interpolation" : "LINEAR",
  2735. "input" : 165,
  2736. "output" : 170
  2737. },
  2738. {
  2739. "interpolation" : "LINEAR",
  2740. "input" : 165,
  2741. "output" : 171
  2742. },
  2743. {
  2744. "interpolation" : "LINEAR",
  2745. "input" : 165,
  2746. "output" : 172
  2747. },
  2748. {
  2749. "interpolation" : "LINEAR",
  2750. "input" : 165,
  2751. "output" : 173
  2752. },
  2753. {
  2754. "interpolation" : "LINEAR",
  2755. "input" : 165,
  2756. "output" : 174
  2757. },
  2758. {
  2759. "interpolation" : "LINEAR",
  2760. "input" : 165,
  2761. "output" : 175
  2762. },
  2763. {
  2764. "interpolation" : "LINEAR",
  2765. "input" : 165,
  2766. "output" : 176
  2767. },
  2768. {
  2769. "interpolation" : "LINEAR",
  2770. "input" : 165,
  2771. "output" : 177
  2772. },
  2773. {
  2774. "interpolation" : "LINEAR",
  2775. "input" : 165,
  2776. "output" : 178
  2777. },
  2778. {
  2779. "interpolation" : "LINEAR",
  2780. "input" : 165,
  2781. "output" : 179
  2782. },
  2783. {
  2784. "interpolation" : "LINEAR",
  2785. "input" : 165,
  2786. "output" : 180
  2787. },
  2788. {
  2789. "interpolation" : "LINEAR",
  2790. "input" : 165,
  2791. "output" : 181
  2792. },
  2793. {
  2794. "interpolation" : "LINEAR",
  2795. "input" : 165,
  2796. "output" : 182
  2797. },
  2798. {
  2799. "interpolation" : "LINEAR",
  2800. "input" : 165,
  2801. "output" : 183
  2802. },
  2803. {
  2804. "interpolation" : "LINEAR",
  2805. "input" : 165,
  2806. "output" : 184
  2807. },
  2808. {
  2809. "interpolation" : "LINEAR",
  2810. "input" : 165,
  2811. "output" : 185
  2812. },
  2813. {
  2814. "interpolation" : "LINEAR",
  2815. "input" : 165,
  2816. "output" : 186
  2817. },
  2818. {
  2819. "interpolation" : "LINEAR",
  2820. "input" : 165,
  2821. "output" : 187
  2822. },
  2823. {
  2824. "interpolation" : "LINEAR",
  2825. "input" : 165,
  2826. "output" : 188
  2827. },
  2828. {
  2829. "interpolation" : "LINEAR",
  2830. "input" : 165,
  2831. "output" : 189
  2832. },
  2833. {
  2834. "interpolation" : "LINEAR",
  2835. "input" : 165,
  2836. "output" : 190
  2837. },
  2838. {
  2839. "interpolation" : "LINEAR",
  2840. "input" : 165,
  2841. "output" : 191
  2842. },
  2843. {
  2844. "interpolation" : "LINEAR",
  2845. "input" : 165,
  2846. "output" : 192
  2847. },
  2848. {
  2849. "interpolation" : "LINEAR",
  2850. "input" : 165,
  2851. "output" : 193
  2852. },
  2853. {
  2854. "interpolation" : "LINEAR",
  2855. "input" : 165,
  2856. "output" : 194
  2857. },
  2858. {
  2859. "interpolation" : "LINEAR",
  2860. "input" : 165,
  2861. "output" : 195
  2862. },
  2863. {
  2864. "interpolation" : "LINEAR",
  2865. "input" : 165,
  2866. "output" : 196
  2867. },
  2868. {
  2869. "interpolation" : "LINEAR",
  2870. "input" : 165,
  2871. "output" : 197
  2872. },
  2873. {
  2874. "interpolation" : "LINEAR",
  2875. "input" : 165,
  2876. "output" : 198
  2877. },
  2878. {
  2879. "interpolation" : "LINEAR",
  2880. "input" : 165,
  2881. "output" : 199
  2882. },
  2883. {
  2884. "interpolation" : "LINEAR",
  2885. "input" : 165,
  2886. "output" : 200
  2887. },
  2888. {
  2889. "interpolation" : "LINEAR",
  2890. "input" : 165,
  2891. "output" : 201
  2892. },
  2893. {
  2894. "interpolation" : "LINEAR",
  2895. "input" : 165,
  2896. "output" : 202
  2897. },
  2898. {
  2899. "interpolation" : "LINEAR",
  2900. "input" : 165,
  2901. "output" : 203
  2902. },
  2903. {
  2904. "interpolation" : "LINEAR",
  2905. "input" : 165,
  2906. "output" : 204
  2907. },
  2908. {
  2909. "interpolation" : "LINEAR",
  2910. "input" : 165,
  2911. "output" : 205
  2912. },
  2913. {
  2914. "interpolation" : "LINEAR",
  2915. "input" : 165,
  2916. "output" : 206
  2917. },
  2918. {
  2919. "interpolation" : "LINEAR",
  2920. "input" : 165,
  2921. "output" : 207
  2922. },
  2923. {
  2924. "interpolation" : "LINEAR",
  2925. "input" : 165,
  2926. "output" : 208
  2927. },
  2928. {
  2929. "interpolation" : "LINEAR",
  2930. "input" : 165,
  2931. "output" : 209
  2932. },
  2933. {
  2934. "interpolation" : "LINEAR",
  2935. "input" : 165,
  2936. "output" : 210
  2937. },
  2938. {
  2939. "interpolation" : "LINEAR",
  2940. "input" : 165,
  2941. "output" : 211
  2942. },
  2943. {
  2944. "interpolation" : "LINEAR",
  2945. "input" : 165,
  2946. "output" : 212
  2947. },
  2948. {
  2949. "interpolation" : "LINEAR",
  2950. "input" : 165,
  2951. "output" : 213
  2952. },
  2953. {
  2954. "interpolation" : "LINEAR",
  2955. "input" : 165,
  2956. "output" : 214
  2957. },
  2958. {
  2959. "interpolation" : "LINEAR",
  2960. "input" : 165,
  2961. "output" : 215
  2962. },
  2963. {
  2964. "interpolation" : "LINEAR",
  2965. "input" : 165,
  2966. "output" : 216
  2967. },
  2968. {
  2969. "interpolation" : "LINEAR",
  2970. "input" : 165,
  2971. "output" : 217
  2972. },
  2973. {
  2974. "interpolation" : "LINEAR",
  2975. "input" : 165,
  2976. "output" : 218
  2977. },
  2978. {
  2979. "interpolation" : "LINEAR",
  2980. "input" : 165,
  2981. "output" : 219
  2982. },
  2983. {
  2984. "interpolation" : "LINEAR",
  2985. "input" : 165,
  2986. "output" : 220
  2987. },
  2988. {
  2989. "interpolation" : "LINEAR",
  2990. "input" : 165,
  2991. "output" : 221
  2992. },
  2993. {
  2994. "interpolation" : "LINEAR",
  2995. "input" : 165,
  2996. "output" : 222
  2997. },
  2998. {
  2999. "interpolation" : "LINEAR",
  3000. "input" : 165,
  3001. "output" : 223
  3002. },
  3003. {
  3004. "interpolation" : "LINEAR",
  3005. "input" : 165,
  3006. "output" : 224
  3007. },
  3008. {
  3009. "interpolation" : "LINEAR",
  3010. "input" : 165,
  3011. "output" : 225
  3012. },
  3013. {
  3014. "interpolation" : "LINEAR",
  3015. "input" : 165,
  3016. "output" : 226
  3017. },
  3018. {
  3019. "interpolation" : "LINEAR",
  3020. "input" : 165,
  3021. "output" : 227
  3022. },
  3023. {
  3024. "interpolation" : "LINEAR",
  3025. "input" : 165,
  3026. "output" : 228
  3027. },
  3028. {
  3029. "interpolation" : "LINEAR",
  3030. "input" : 165,
  3031. "output" : 229
  3032. },
  3033. {
  3034. "interpolation" : "LINEAR",
  3035. "input" : 165,
  3036. "output" : 230
  3037. },
  3038. {
  3039. "interpolation" : "LINEAR",
  3040. "input" : 165,
  3041. "output" : 231
  3042. },
  3043. {
  3044. "interpolation" : "LINEAR",
  3045. "input" : 165,
  3046. "output" : 232
  3047. },
  3048. {
  3049. "interpolation" : "LINEAR",
  3050. "input" : 165,
  3051. "output" : 233
  3052. },
  3053. {
  3054. "interpolation" : "LINEAR",
  3055. "input" : 165,
  3056. "output" : 234
  3057. },
  3058. {
  3059. "interpolation" : "LINEAR",
  3060. "input" : 165,
  3061. "output" : 235
  3062. },
  3063. {
  3064. "interpolation" : "LINEAR",
  3065. "input" : 165,
  3066. "output" : 236
  3067. },
  3068. {
  3069. "interpolation" : "LINEAR",
  3070. "input" : 165,
  3071. "output" : 237
  3072. }
  3073. ]
  3074. },
  3075. {
  3076. "name" : "Death",
  3077. "channels" : [
  3078. {
  3079. "target" : {
  3080. "node" : 23,
  3081. "path" : "translation"
  3082. },
  3083. "sampler" : 0
  3084. },
  3085. {
  3086. "target" : {
  3087. "node" : 23,
  3088. "path" : "rotation"
  3089. },
  3090. "sampler" : 1
  3091. },
  3092. {
  3093. "target" : {
  3094. "node" : 23,
  3095. "path" : "scale"
  3096. },
  3097. "sampler" : 2
  3098. },
  3099. {
  3100. "target" : {
  3101. "node" : 0,
  3102. "path" : "translation"
  3103. },
  3104. "sampler" : 3
  3105. },
  3106. {
  3107. "target" : {
  3108. "node" : 0,
  3109. "path" : "rotation"
  3110. },
  3111. "sampler" : 4
  3112. },
  3113. {
  3114. "target" : {
  3115. "node" : 0,
  3116. "path" : "scale"
  3117. },
  3118. "sampler" : 5
  3119. },
  3120. {
  3121. "target" : {
  3122. "node" : 19,
  3123. "path" : "translation"
  3124. },
  3125. "sampler" : 6
  3126. },
  3127. {
  3128. "target" : {
  3129. "node" : 19,
  3130. "path" : "rotation"
  3131. },
  3132. "sampler" : 7
  3133. },
  3134. {
  3135. "target" : {
  3136. "node" : 19,
  3137. "path" : "scale"
  3138. },
  3139. "sampler" : 8
  3140. },
  3141. {
  3142. "target" : {
  3143. "node" : 3,
  3144. "path" : "translation"
  3145. },
  3146. "sampler" : 9
  3147. },
  3148. {
  3149. "target" : {
  3150. "node" : 3,
  3151. "path" : "rotation"
  3152. },
  3153. "sampler" : 10
  3154. },
  3155. {
  3156. "target" : {
  3157. "node" : 3,
  3158. "path" : "scale"
  3159. },
  3160. "sampler" : 11
  3161. },
  3162. {
  3163. "target" : {
  3164. "node" : 2,
  3165. "path" : "translation"
  3166. },
  3167. "sampler" : 12
  3168. },
  3169. {
  3170. "target" : {
  3171. "node" : 2,
  3172. "path" : "rotation"
  3173. },
  3174. "sampler" : 13
  3175. },
  3176. {
  3177. "target" : {
  3178. "node" : 2,
  3179. "path" : "scale"
  3180. },
  3181. "sampler" : 14
  3182. },
  3183. {
  3184. "target" : {
  3185. "node" : 1,
  3186. "path" : "translation"
  3187. },
  3188. "sampler" : 15
  3189. },
  3190. {
  3191. "target" : {
  3192. "node" : 1,
  3193. "path" : "rotation"
  3194. },
  3195. "sampler" : 16
  3196. },
  3197. {
  3198. "target" : {
  3199. "node" : 1,
  3200. "path" : "scale"
  3201. },
  3202. "sampler" : 17
  3203. },
  3204. {
  3205. "target" : {
  3206. "node" : 6,
  3207. "path" : "translation"
  3208. },
  3209. "sampler" : 18
  3210. },
  3211. {
  3212. "target" : {
  3213. "node" : 6,
  3214. "path" : "rotation"
  3215. },
  3216. "sampler" : 19
  3217. },
  3218. {
  3219. "target" : {
  3220. "node" : 6,
  3221. "path" : "scale"
  3222. },
  3223. "sampler" : 20
  3224. },
  3225. {
  3226. "target" : {
  3227. "node" : 5,
  3228. "path" : "translation"
  3229. },
  3230. "sampler" : 21
  3231. },
  3232. {
  3233. "target" : {
  3234. "node" : 5,
  3235. "path" : "rotation"
  3236. },
  3237. "sampler" : 22
  3238. },
  3239. {
  3240. "target" : {
  3241. "node" : 5,
  3242. "path" : "scale"
  3243. },
  3244. "sampler" : 23
  3245. },
  3246. {
  3247. "target" : {
  3248. "node" : 4,
  3249. "path" : "translation"
  3250. },
  3251. "sampler" : 24
  3252. },
  3253. {
  3254. "target" : {
  3255. "node" : 4,
  3256. "path" : "rotation"
  3257. },
  3258. "sampler" : 25
  3259. },
  3260. {
  3261. "target" : {
  3262. "node" : 4,
  3263. "path" : "scale"
  3264. },
  3265. "sampler" : 26
  3266. },
  3267. {
  3268. "target" : {
  3269. "node" : 9,
  3270. "path" : "translation"
  3271. },
  3272. "sampler" : 27
  3273. },
  3274. {
  3275. "target" : {
  3276. "node" : 9,
  3277. "path" : "rotation"
  3278. },
  3279. "sampler" : 28
  3280. },
  3281. {
  3282. "target" : {
  3283. "node" : 9,
  3284. "path" : "scale"
  3285. },
  3286. "sampler" : 29
  3287. },
  3288. {
  3289. "target" : {
  3290. "node" : 8,
  3291. "path" : "translation"
  3292. },
  3293. "sampler" : 30
  3294. },
  3295. {
  3296. "target" : {
  3297. "node" : 8,
  3298. "path" : "rotation"
  3299. },
  3300. "sampler" : 31
  3301. },
  3302. {
  3303. "target" : {
  3304. "node" : 8,
  3305. "path" : "scale"
  3306. },
  3307. "sampler" : 32
  3308. },
  3309. {
  3310. "target" : {
  3311. "node" : 7,
  3312. "path" : "translation"
  3313. },
  3314. "sampler" : 33
  3315. },
  3316. {
  3317. "target" : {
  3318. "node" : 7,
  3319. "path" : "rotation"
  3320. },
  3321. "sampler" : 34
  3322. },
  3323. {
  3324. "target" : {
  3325. "node" : 7,
  3326. "path" : "scale"
  3327. },
  3328. "sampler" : 35
  3329. },
  3330. {
  3331. "target" : {
  3332. "node" : 12,
  3333. "path" : "translation"
  3334. },
  3335. "sampler" : 36
  3336. },
  3337. {
  3338. "target" : {
  3339. "node" : 12,
  3340. "path" : "rotation"
  3341. },
  3342. "sampler" : 37
  3343. },
  3344. {
  3345. "target" : {
  3346. "node" : 12,
  3347. "path" : "scale"
  3348. },
  3349. "sampler" : 38
  3350. },
  3351. {
  3352. "target" : {
  3353. "node" : 11,
  3354. "path" : "translation"
  3355. },
  3356. "sampler" : 39
  3357. },
  3358. {
  3359. "target" : {
  3360. "node" : 11,
  3361. "path" : "rotation"
  3362. },
  3363. "sampler" : 40
  3364. },
  3365. {
  3366. "target" : {
  3367. "node" : 11,
  3368. "path" : "scale"
  3369. },
  3370. "sampler" : 41
  3371. },
  3372. {
  3373. "target" : {
  3374. "node" : 10,
  3375. "path" : "translation"
  3376. },
  3377. "sampler" : 42
  3378. },
  3379. {
  3380. "target" : {
  3381. "node" : 10,
  3382. "path" : "rotation"
  3383. },
  3384. "sampler" : 43
  3385. },
  3386. {
  3387. "target" : {
  3388. "node" : 10,
  3389. "path" : "scale"
  3390. },
  3391. "sampler" : 44
  3392. },
  3393. {
  3394. "target" : {
  3395. "node" : 13,
  3396. "path" : "translation"
  3397. },
  3398. "sampler" : 45
  3399. },
  3400. {
  3401. "target" : {
  3402. "node" : 13,
  3403. "path" : "rotation"
  3404. },
  3405. "sampler" : 46
  3406. },
  3407. {
  3408. "target" : {
  3409. "node" : 13,
  3410. "path" : "scale"
  3411. },
  3412. "sampler" : 47
  3413. },
  3414. {
  3415. "target" : {
  3416. "node" : 16,
  3417. "path" : "translation"
  3418. },
  3419. "sampler" : 48
  3420. },
  3421. {
  3422. "target" : {
  3423. "node" : 16,
  3424. "path" : "rotation"
  3425. },
  3426. "sampler" : 49
  3427. },
  3428. {
  3429. "target" : {
  3430. "node" : 16,
  3431. "path" : "scale"
  3432. },
  3433. "sampler" : 50
  3434. },
  3435. {
  3436. "target" : {
  3437. "node" : 15,
  3438. "path" : "translation"
  3439. },
  3440. "sampler" : 51
  3441. },
  3442. {
  3443. "target" : {
  3444. "node" : 15,
  3445. "path" : "rotation"
  3446. },
  3447. "sampler" : 52
  3448. },
  3449. {
  3450. "target" : {
  3451. "node" : 15,
  3452. "path" : "scale"
  3453. },
  3454. "sampler" : 53
  3455. },
  3456. {
  3457. "target" : {
  3458. "node" : 14,
  3459. "path" : "translation"
  3460. },
  3461. "sampler" : 54
  3462. },
  3463. {
  3464. "target" : {
  3465. "node" : 14,
  3466. "path" : "rotation"
  3467. },
  3468. "sampler" : 55
  3469. },
  3470. {
  3471. "target" : {
  3472. "node" : 14,
  3473. "path" : "scale"
  3474. },
  3475. "sampler" : 56
  3476. },
  3477. {
  3478. "target" : {
  3479. "node" : 18,
  3480. "path" : "translation"
  3481. },
  3482. "sampler" : 57
  3483. },
  3484. {
  3485. "target" : {
  3486. "node" : 18,
  3487. "path" : "rotation"
  3488. },
  3489. "sampler" : 58
  3490. },
  3491. {
  3492. "target" : {
  3493. "node" : 18,
  3494. "path" : "scale"
  3495. },
  3496. "sampler" : 59
  3497. },
  3498. {
  3499. "target" : {
  3500. "node" : 17,
  3501. "path" : "translation"
  3502. },
  3503. "sampler" : 60
  3504. },
  3505. {
  3506. "target" : {
  3507. "node" : 17,
  3508. "path" : "rotation"
  3509. },
  3510. "sampler" : 61
  3511. },
  3512. {
  3513. "target" : {
  3514. "node" : 17,
  3515. "path" : "scale"
  3516. },
  3517. "sampler" : 62
  3518. },
  3519. {
  3520. "target" : {
  3521. "node" : 20,
  3522. "path" : "translation"
  3523. },
  3524. "sampler" : 63
  3525. },
  3526. {
  3527. "target" : {
  3528. "node" : 20,
  3529. "path" : "rotation"
  3530. },
  3531. "sampler" : 64
  3532. },
  3533. {
  3534. "target" : {
  3535. "node" : 20,
  3536. "path" : "scale"
  3537. },
  3538. "sampler" : 65
  3539. },
  3540. {
  3541. "target" : {
  3542. "node" : 21,
  3543. "path" : "translation"
  3544. },
  3545. "sampler" : 66
  3546. },
  3547. {
  3548. "target" : {
  3549. "node" : 21,
  3550. "path" : "rotation"
  3551. },
  3552. "sampler" : 67
  3553. },
  3554. {
  3555. "target" : {
  3556. "node" : 21,
  3557. "path" : "scale"
  3558. },
  3559. "sampler" : 68
  3560. },
  3561. {
  3562. "target" : {
  3563. "node" : 22,
  3564. "path" : "translation"
  3565. },
  3566. "sampler" : 69
  3567. },
  3568. {
  3569. "target" : {
  3570. "node" : 22,
  3571. "path" : "rotation"
  3572. },
  3573. "sampler" : 70
  3574. },
  3575. {
  3576. "target" : {
  3577. "node" : 22,
  3578. "path" : "scale"
  3579. },
  3580. "sampler" : 71
  3581. }
  3582. ],
  3583. "samplers" : [
  3584. {
  3585. "interpolation" : "LINEAR",
  3586. "input" : 238,
  3587. "output" : 239
  3588. },
  3589. {
  3590. "interpolation" : "LINEAR",
  3591. "input" : 238,
  3592. "output" : 240
  3593. },
  3594. {
  3595. "interpolation" : "LINEAR",
  3596. "input" : 238,
  3597. "output" : 241
  3598. },
  3599. {
  3600. "interpolation" : "LINEAR",
  3601. "input" : 238,
  3602. "output" : 242
  3603. },
  3604. {
  3605. "interpolation" : "LINEAR",
  3606. "input" : 238,
  3607. "output" : 243
  3608. },
  3609. {
  3610. "interpolation" : "LINEAR",
  3611. "input" : 238,
  3612. "output" : 244
  3613. },
  3614. {
  3615. "interpolation" : "LINEAR",
  3616. "input" : 238,
  3617. "output" : 245
  3618. },
  3619. {
  3620. "interpolation" : "LINEAR",
  3621. "input" : 238,
  3622. "output" : 246
  3623. },
  3624. {
  3625. "interpolation" : "LINEAR",
  3626. "input" : 238,
  3627. "output" : 247
  3628. },
  3629. {
  3630. "interpolation" : "LINEAR",
  3631. "input" : 238,
  3632. "output" : 248
  3633. },
  3634. {
  3635. "interpolation" : "LINEAR",
  3636. "input" : 238,
  3637. "output" : 249
  3638. },
  3639. {
  3640. "interpolation" : "LINEAR",
  3641. "input" : 238,
  3642. "output" : 250
  3643. },
  3644. {
  3645. "interpolation" : "LINEAR",
  3646. "input" : 238,
  3647. "output" : 251
  3648. },
  3649. {
  3650. "interpolation" : "LINEAR",
  3651. "input" : 238,
  3652. "output" : 252
  3653. },
  3654. {
  3655. "interpolation" : "LINEAR",
  3656. "input" : 238,
  3657. "output" : 253
  3658. },
  3659. {
  3660. "interpolation" : "LINEAR",
  3661. "input" : 238,
  3662. "output" : 254
  3663. },
  3664. {
  3665. "interpolation" : "LINEAR",
  3666. "input" : 238,
  3667. "output" : 255
  3668. },
  3669. {
  3670. "interpolation" : "LINEAR",
  3671. "input" : 238,
  3672. "output" : 256
  3673. },
  3674. {
  3675. "interpolation" : "LINEAR",
  3676. "input" : 238,
  3677. "output" : 257
  3678. },
  3679. {
  3680. "interpolation" : "LINEAR",
  3681. "input" : 238,
  3682. "output" : 258
  3683. },
  3684. {
  3685. "interpolation" : "LINEAR",
  3686. "input" : 238,
  3687. "output" : 259
  3688. },
  3689. {
  3690. "interpolation" : "LINEAR",
  3691. "input" : 238,
  3692. "output" : 260
  3693. },
  3694. {
  3695. "interpolation" : "LINEAR",
  3696. "input" : 238,
  3697. "output" : 261
  3698. },
  3699. {
  3700. "interpolation" : "LINEAR",
  3701. "input" : 238,
  3702. "output" : 262
  3703. },
  3704. {
  3705. "interpolation" : "LINEAR",
  3706. "input" : 238,
  3707. "output" : 263
  3708. },
  3709. {
  3710. "interpolation" : "LINEAR",
  3711. "input" : 238,
  3712. "output" : 264
  3713. },
  3714. {
  3715. "interpolation" : "LINEAR",
  3716. "input" : 238,
  3717. "output" : 265
  3718. },
  3719. {
  3720. "interpolation" : "LINEAR",
  3721. "input" : 238,
  3722. "output" : 266
  3723. },
  3724. {
  3725. "interpolation" : "LINEAR",
  3726. "input" : 238,
  3727. "output" : 267
  3728. },
  3729. {
  3730. "interpolation" : "LINEAR",
  3731. "input" : 238,
  3732. "output" : 268
  3733. },
  3734. {
  3735. "interpolation" : "LINEAR",
  3736. "input" : 238,
  3737. "output" : 269
  3738. },
  3739. {
  3740. "interpolation" : "LINEAR",
  3741. "input" : 238,
  3742. "output" : 270
  3743. },
  3744. {
  3745. "interpolation" : "LINEAR",
  3746. "input" : 238,
  3747. "output" : 271
  3748. },
  3749. {
  3750. "interpolation" : "LINEAR",
  3751. "input" : 238,
  3752. "output" : 272
  3753. },
  3754. {
  3755. "interpolation" : "LINEAR",
  3756. "input" : 238,
  3757. "output" : 273
  3758. },
  3759. {
  3760. "interpolation" : "LINEAR",
  3761. "input" : 238,
  3762. "output" : 274
  3763. },
  3764. {
  3765. "interpolation" : "LINEAR",
  3766. "input" : 238,
  3767. "output" : 275
  3768. },
  3769. {
  3770. "interpolation" : "LINEAR",
  3771. "input" : 238,
  3772. "output" : 276
  3773. },
  3774. {
  3775. "interpolation" : "LINEAR",
  3776. "input" : 238,
  3777. "output" : 277
  3778. },
  3779. {
  3780. "interpolation" : "LINEAR",
  3781. "input" : 238,
  3782. "output" : 278
  3783. },
  3784. {
  3785. "interpolation" : "LINEAR",
  3786. "input" : 238,
  3787. "output" : 279
  3788. },
  3789. {
  3790. "interpolation" : "LINEAR",
  3791. "input" : 238,
  3792. "output" : 280
  3793. },
  3794. {
  3795. "interpolation" : "LINEAR",
  3796. "input" : 238,
  3797. "output" : 281
  3798. },
  3799. {
  3800. "interpolation" : "LINEAR",
  3801. "input" : 238,
  3802. "output" : 282
  3803. },
  3804. {
  3805. "interpolation" : "LINEAR",
  3806. "input" : 238,
  3807. "output" : 283
  3808. },
  3809. {
  3810. "interpolation" : "LINEAR",
  3811. "input" : 238,
  3812. "output" : 284
  3813. },
  3814. {
  3815. "interpolation" : "LINEAR",
  3816. "input" : 238,
  3817. "output" : 285
  3818. },
  3819. {
  3820. "interpolation" : "LINEAR",
  3821. "input" : 238,
  3822. "output" : 286
  3823. },
  3824. {
  3825. "interpolation" : "LINEAR",
  3826. "input" : 238,
  3827. "output" : 287
  3828. },
  3829. {
  3830. "interpolation" : "LINEAR",
  3831. "input" : 238,
  3832. "output" : 288
  3833. },
  3834. {
  3835. "interpolation" : "LINEAR",
  3836. "input" : 238,
  3837. "output" : 289
  3838. },
  3839. {
  3840. "interpolation" : "LINEAR",
  3841. "input" : 238,
  3842. "output" : 290
  3843. },
  3844. {
  3845. "interpolation" : "LINEAR",
  3846. "input" : 238,
  3847. "output" : 291
  3848. },
  3849. {
  3850. "interpolation" : "LINEAR",
  3851. "input" : 238,
  3852. "output" : 292
  3853. },
  3854. {
  3855. "interpolation" : "LINEAR",
  3856. "input" : 238,
  3857. "output" : 293
  3858. },
  3859. {
  3860. "interpolation" : "LINEAR",
  3861. "input" : 238,
  3862. "output" : 294
  3863. },
  3864. {
  3865. "interpolation" : "LINEAR",
  3866. "input" : 238,
  3867. "output" : 295
  3868. },
  3869. {
  3870. "interpolation" : "LINEAR",
  3871. "input" : 238,
  3872. "output" : 296
  3873. },
  3874. {
  3875. "interpolation" : "LINEAR",
  3876. "input" : 238,
  3877. "output" : 297
  3878. },
  3879. {
  3880. "interpolation" : "LINEAR",
  3881. "input" : 238,
  3882. "output" : 298
  3883. },
  3884. {
  3885. "interpolation" : "LINEAR",
  3886. "input" : 238,
  3887. "output" : 299
  3888. },
  3889. {
  3890. "interpolation" : "LINEAR",
  3891. "input" : 238,
  3892. "output" : 300
  3893. },
  3894. {
  3895. "interpolation" : "LINEAR",
  3896. "input" : 238,
  3897. "output" : 301
  3898. },
  3899. {
  3900. "interpolation" : "LINEAR",
  3901. "input" : 238,
  3902. "output" : 302
  3903. },
  3904. {
  3905. "interpolation" : "LINEAR",
  3906. "input" : 238,
  3907. "output" : 303
  3908. },
  3909. {
  3910. "interpolation" : "LINEAR",
  3911. "input" : 238,
  3912. "output" : 304
  3913. },
  3914. {
  3915. "interpolation" : "LINEAR",
  3916. "input" : 238,
  3917. "output" : 305
  3918. },
  3919. {
  3920. "interpolation" : "LINEAR",
  3921. "input" : 238,
  3922. "output" : 306
  3923. },
  3924. {
  3925. "interpolation" : "LINEAR",
  3926. "input" : 238,
  3927. "output" : 307
  3928. },
  3929. {
  3930. "interpolation" : "LINEAR",
  3931. "input" : 238,
  3932. "output" : 308
  3933. },
  3934. {
  3935. "interpolation" : "LINEAR",
  3936. "input" : 238,
  3937. "output" : 309
  3938. },
  3939. {
  3940. "interpolation" : "LINEAR",
  3941. "input" : 238,
  3942. "output" : 310
  3943. }
  3944. ]
  3945. },
  3946. {
  3947. "name" : "WalkSlow",
  3948. "channels" : [
  3949. {
  3950. "target" : {
  3951. "node" : 23,
  3952. "path" : "translation"
  3953. },
  3954. "sampler" : 0
  3955. },
  3956. {
  3957. "target" : {
  3958. "node" : 23,
  3959. "path" : "rotation"
  3960. },
  3961. "sampler" : 1
  3962. },
  3963. {
  3964. "target" : {
  3965. "node" : 23,
  3966. "path" : "scale"
  3967. },
  3968. "sampler" : 2
  3969. },
  3970. {
  3971. "target" : {
  3972. "node" : 0,
  3973. "path" : "translation"
  3974. },
  3975. "sampler" : 3
  3976. },
  3977. {
  3978. "target" : {
  3979. "node" : 0,
  3980. "path" : "rotation"
  3981. },
  3982. "sampler" : 4
  3983. },
  3984. {
  3985. "target" : {
  3986. "node" : 0,
  3987. "path" : "scale"
  3988. },
  3989. "sampler" : 5
  3990. },
  3991. {
  3992. "target" : {
  3993. "node" : 19,
  3994. "path" : "translation"
  3995. },
  3996. "sampler" : 6
  3997. },
  3998. {
  3999. "target" : {
  4000. "node" : 19,
  4001. "path" : "rotation"
  4002. },
  4003. "sampler" : 7
  4004. },
  4005. {
  4006. "target" : {
  4007. "node" : 19,
  4008. "path" : "scale"
  4009. },
  4010. "sampler" : 8
  4011. },
  4012. {
  4013. "target" : {
  4014. "node" : 3,
  4015. "path" : "translation"
  4016. },
  4017. "sampler" : 9
  4018. },
  4019. {
  4020. "target" : {
  4021. "node" : 3,
  4022. "path" : "rotation"
  4023. },
  4024. "sampler" : 10
  4025. },
  4026. {
  4027. "target" : {
  4028. "node" : 3,
  4029. "path" : "scale"
  4030. },
  4031. "sampler" : 11
  4032. },
  4033. {
  4034. "target" : {
  4035. "node" : 2,
  4036. "path" : "translation"
  4037. },
  4038. "sampler" : 12
  4039. },
  4040. {
  4041. "target" : {
  4042. "node" : 2,
  4043. "path" : "rotation"
  4044. },
  4045. "sampler" : 13
  4046. },
  4047. {
  4048. "target" : {
  4049. "node" : 2,
  4050. "path" : "scale"
  4051. },
  4052. "sampler" : 14
  4053. },
  4054. {
  4055. "target" : {
  4056. "node" : 1,
  4057. "path" : "translation"
  4058. },
  4059. "sampler" : 15
  4060. },
  4061. {
  4062. "target" : {
  4063. "node" : 1,
  4064. "path" : "rotation"
  4065. },
  4066. "sampler" : 16
  4067. },
  4068. {
  4069. "target" : {
  4070. "node" : 1,
  4071. "path" : "scale"
  4072. },
  4073. "sampler" : 17
  4074. },
  4075. {
  4076. "target" : {
  4077. "node" : 6,
  4078. "path" : "translation"
  4079. },
  4080. "sampler" : 18
  4081. },
  4082. {
  4083. "target" : {
  4084. "node" : 6,
  4085. "path" : "rotation"
  4086. },
  4087. "sampler" : 19
  4088. },
  4089. {
  4090. "target" : {
  4091. "node" : 6,
  4092. "path" : "scale"
  4093. },
  4094. "sampler" : 20
  4095. },
  4096. {
  4097. "target" : {
  4098. "node" : 5,
  4099. "path" : "translation"
  4100. },
  4101. "sampler" : 21
  4102. },
  4103. {
  4104. "target" : {
  4105. "node" : 5,
  4106. "path" : "rotation"
  4107. },
  4108. "sampler" : 22
  4109. },
  4110. {
  4111. "target" : {
  4112. "node" : 5,
  4113. "path" : "scale"
  4114. },
  4115. "sampler" : 23
  4116. },
  4117. {
  4118. "target" : {
  4119. "node" : 4,
  4120. "path" : "translation"
  4121. },
  4122. "sampler" : 24
  4123. },
  4124. {
  4125. "target" : {
  4126. "node" : 4,
  4127. "path" : "rotation"
  4128. },
  4129. "sampler" : 25
  4130. },
  4131. {
  4132. "target" : {
  4133. "node" : 4,
  4134. "path" : "scale"
  4135. },
  4136. "sampler" : 26
  4137. },
  4138. {
  4139. "target" : {
  4140. "node" : 9,
  4141. "path" : "translation"
  4142. },
  4143. "sampler" : 27
  4144. },
  4145. {
  4146. "target" : {
  4147. "node" : 9,
  4148. "path" : "rotation"
  4149. },
  4150. "sampler" : 28
  4151. },
  4152. {
  4153. "target" : {
  4154. "node" : 9,
  4155. "path" : "scale"
  4156. },
  4157. "sampler" : 29
  4158. },
  4159. {
  4160. "target" : {
  4161. "node" : 8,
  4162. "path" : "translation"
  4163. },
  4164. "sampler" : 30
  4165. },
  4166. {
  4167. "target" : {
  4168. "node" : 8,
  4169. "path" : "rotation"
  4170. },
  4171. "sampler" : 31
  4172. },
  4173. {
  4174. "target" : {
  4175. "node" : 8,
  4176. "path" : "scale"
  4177. },
  4178. "sampler" : 32
  4179. },
  4180. {
  4181. "target" : {
  4182. "node" : 7,
  4183. "path" : "translation"
  4184. },
  4185. "sampler" : 33
  4186. },
  4187. {
  4188. "target" : {
  4189. "node" : 7,
  4190. "path" : "rotation"
  4191. },
  4192. "sampler" : 34
  4193. },
  4194. {
  4195. "target" : {
  4196. "node" : 7,
  4197. "path" : "scale"
  4198. },
  4199. "sampler" : 35
  4200. },
  4201. {
  4202. "target" : {
  4203. "node" : 12,
  4204. "path" : "translation"
  4205. },
  4206. "sampler" : 36
  4207. },
  4208. {
  4209. "target" : {
  4210. "node" : 12,
  4211. "path" : "rotation"
  4212. },
  4213. "sampler" : 37
  4214. },
  4215. {
  4216. "target" : {
  4217. "node" : 12,
  4218. "path" : "scale"
  4219. },
  4220. "sampler" : 38
  4221. },
  4222. {
  4223. "target" : {
  4224. "node" : 11,
  4225. "path" : "translation"
  4226. },
  4227. "sampler" : 39
  4228. },
  4229. {
  4230. "target" : {
  4231. "node" : 11,
  4232. "path" : "rotation"
  4233. },
  4234. "sampler" : 40
  4235. },
  4236. {
  4237. "target" : {
  4238. "node" : 11,
  4239. "path" : "scale"
  4240. },
  4241. "sampler" : 41
  4242. },
  4243. {
  4244. "target" : {
  4245. "node" : 10,
  4246. "path" : "translation"
  4247. },
  4248. "sampler" : 42
  4249. },
  4250. {
  4251. "target" : {
  4252. "node" : 10,
  4253. "path" : "rotation"
  4254. },
  4255. "sampler" : 43
  4256. },
  4257. {
  4258. "target" : {
  4259. "node" : 10,
  4260. "path" : "scale"
  4261. },
  4262. "sampler" : 44
  4263. },
  4264. {
  4265. "target" : {
  4266. "node" : 13,
  4267. "path" : "translation"
  4268. },
  4269. "sampler" : 45
  4270. },
  4271. {
  4272. "target" : {
  4273. "node" : 13,
  4274. "path" : "rotation"
  4275. },
  4276. "sampler" : 46
  4277. },
  4278. {
  4279. "target" : {
  4280. "node" : 13,
  4281. "path" : "scale"
  4282. },
  4283. "sampler" : 47
  4284. },
  4285. {
  4286. "target" : {
  4287. "node" : 16,
  4288. "path" : "translation"
  4289. },
  4290. "sampler" : 48
  4291. },
  4292. {
  4293. "target" : {
  4294. "node" : 16,
  4295. "path" : "rotation"
  4296. },
  4297. "sampler" : 49
  4298. },
  4299. {
  4300. "target" : {
  4301. "node" : 16,
  4302. "path" : "scale"
  4303. },
  4304. "sampler" : 50
  4305. },
  4306. {
  4307. "target" : {
  4308. "node" : 15,
  4309. "path" : "translation"
  4310. },
  4311. "sampler" : 51
  4312. },
  4313. {
  4314. "target" : {
  4315. "node" : 15,
  4316. "path" : "rotation"
  4317. },
  4318. "sampler" : 52
  4319. },
  4320. {
  4321. "target" : {
  4322. "node" : 15,
  4323. "path" : "scale"
  4324. },
  4325. "sampler" : 53
  4326. },
  4327. {
  4328. "target" : {
  4329. "node" : 14,
  4330. "path" : "translation"
  4331. },
  4332. "sampler" : 54
  4333. },
  4334. {
  4335. "target" : {
  4336. "node" : 14,
  4337. "path" : "rotation"
  4338. },
  4339. "sampler" : 55
  4340. },
  4341. {
  4342. "target" : {
  4343. "node" : 14,
  4344. "path" : "scale"
  4345. },
  4346. "sampler" : 56
  4347. },
  4348. {
  4349. "target" : {
  4350. "node" : 18,
  4351. "path" : "translation"
  4352. },
  4353. "sampler" : 57
  4354. },
  4355. {
  4356. "target" : {
  4357. "node" : 18,
  4358. "path" : "rotation"
  4359. },
  4360. "sampler" : 58
  4361. },
  4362. {
  4363. "target" : {
  4364. "node" : 18,
  4365. "path" : "scale"
  4366. },
  4367. "sampler" : 59
  4368. },
  4369. {
  4370. "target" : {
  4371. "node" : 17,
  4372. "path" : "translation"
  4373. },
  4374. "sampler" : 60
  4375. },
  4376. {
  4377. "target" : {
  4378. "node" : 17,
  4379. "path" : "rotation"
  4380. },
  4381. "sampler" : 61
  4382. },
  4383. {
  4384. "target" : {
  4385. "node" : 17,
  4386. "path" : "scale"
  4387. },
  4388. "sampler" : 62
  4389. },
  4390. {
  4391. "target" : {
  4392. "node" : 20,
  4393. "path" : "translation"
  4394. },
  4395. "sampler" : 63
  4396. },
  4397. {
  4398. "target" : {
  4399. "node" : 20,
  4400. "path" : "rotation"
  4401. },
  4402. "sampler" : 64
  4403. },
  4404. {
  4405. "target" : {
  4406. "node" : 20,
  4407. "path" : "scale"
  4408. },
  4409. "sampler" : 65
  4410. },
  4411. {
  4412. "target" : {
  4413. "node" : 21,
  4414. "path" : "translation"
  4415. },
  4416. "sampler" : 66
  4417. },
  4418. {
  4419. "target" : {
  4420. "node" : 21,
  4421. "path" : "rotation"
  4422. },
  4423. "sampler" : 67
  4424. },
  4425. {
  4426. "target" : {
  4427. "node" : 21,
  4428. "path" : "scale"
  4429. },
  4430. "sampler" : 68
  4431. },
  4432. {
  4433. "target" : {
  4434. "node" : 22,
  4435. "path" : "translation"
  4436. },
  4437. "sampler" : 69
  4438. },
  4439. {
  4440. "target" : {
  4441. "node" : 22,
  4442. "path" : "rotation"
  4443. },
  4444. "sampler" : 70
  4445. },
  4446. {
  4447. "target" : {
  4448. "node" : 22,
  4449. "path" : "scale"
  4450. },
  4451. "sampler" : 71
  4452. }
  4453. ],
  4454. "samplers" : [
  4455. {
  4456. "interpolation" : "LINEAR",
  4457. "input" : 311,
  4458. "output" : 312
  4459. },
  4460. {
  4461. "interpolation" : "LINEAR",
  4462. "input" : 311,
  4463. "output" : 313
  4464. },
  4465. {
  4466. "interpolation" : "LINEAR",
  4467. "input" : 311,
  4468. "output" : 314
  4469. },
  4470. {
  4471. "interpolation" : "LINEAR",
  4472. "input" : 311,
  4473. "output" : 315
  4474. },
  4475. {
  4476. "interpolation" : "LINEAR",
  4477. "input" : 311,
  4478. "output" : 316
  4479. },
  4480. {
  4481. "interpolation" : "LINEAR",
  4482. "input" : 311,
  4483. "output" : 317
  4484. },
  4485. {
  4486. "interpolation" : "LINEAR",
  4487. "input" : 311,
  4488. "output" : 318
  4489. },
  4490. {
  4491. "interpolation" : "LINEAR",
  4492. "input" : 311,
  4493. "output" : 319
  4494. },
  4495. {
  4496. "interpolation" : "LINEAR",
  4497. "input" : 311,
  4498. "output" : 320
  4499. },
  4500. {
  4501. "interpolation" : "LINEAR",
  4502. "input" : 311,
  4503. "output" : 321
  4504. },
  4505. {
  4506. "interpolation" : "LINEAR",
  4507. "input" : 311,
  4508. "output" : 322
  4509. },
  4510. {
  4511. "interpolation" : "LINEAR",
  4512. "input" : 311,
  4513. "output" : 323
  4514. },
  4515. {
  4516. "interpolation" : "LINEAR",
  4517. "input" : 311,
  4518. "output" : 324
  4519. },
  4520. {
  4521. "interpolation" : "LINEAR",
  4522. "input" : 311,
  4523. "output" : 325
  4524. },
  4525. {
  4526. "interpolation" : "LINEAR",
  4527. "input" : 311,
  4528. "output" : 326
  4529. },
  4530. {
  4531. "interpolation" : "LINEAR",
  4532. "input" : 311,
  4533. "output" : 327
  4534. },
  4535. {
  4536. "interpolation" : "LINEAR",
  4537. "input" : 311,
  4538. "output" : 328
  4539. },
  4540. {
  4541. "interpolation" : "LINEAR",
  4542. "input" : 311,
  4543. "output" : 329
  4544. },
  4545. {
  4546. "interpolation" : "LINEAR",
  4547. "input" : 311,
  4548. "output" : 330
  4549. },
  4550. {
  4551. "interpolation" : "LINEAR",
  4552. "input" : 311,
  4553. "output" : 331
  4554. },
  4555. {
  4556. "interpolation" : "LINEAR",
  4557. "input" : 311,
  4558. "output" : 332
  4559. },
  4560. {
  4561. "interpolation" : "LINEAR",
  4562. "input" : 311,
  4563. "output" : 333
  4564. },
  4565. {
  4566. "interpolation" : "LINEAR",
  4567. "input" : 311,
  4568. "output" : 334
  4569. },
  4570. {
  4571. "interpolation" : "LINEAR",
  4572. "input" : 311,
  4573. "output" : 335
  4574. },
  4575. {
  4576. "interpolation" : "LINEAR",
  4577. "input" : 311,
  4578. "output" : 336
  4579. },
  4580. {
  4581. "interpolation" : "LINEAR",
  4582. "input" : 311,
  4583. "output" : 337
  4584. },
  4585. {
  4586. "interpolation" : "LINEAR",
  4587. "input" : 311,
  4588. "output" : 338
  4589. },
  4590. {
  4591. "interpolation" : "LINEAR",
  4592. "input" : 311,
  4593. "output" : 339
  4594. },
  4595. {
  4596. "interpolation" : "LINEAR",
  4597. "input" : 311,
  4598. "output" : 340
  4599. },
  4600. {
  4601. "interpolation" : "LINEAR",
  4602. "input" : 311,
  4603. "output" : 341
  4604. },
  4605. {
  4606. "interpolation" : "LINEAR",
  4607. "input" : 311,
  4608. "output" : 342
  4609. },
  4610. {
  4611. "interpolation" : "LINEAR",
  4612. "input" : 311,
  4613. "output" : 343
  4614. },
  4615. {
  4616. "interpolation" : "LINEAR",
  4617. "input" : 311,
  4618. "output" : 344
  4619. },
  4620. {
  4621. "interpolation" : "LINEAR",
  4622. "input" : 311,
  4623. "output" : 345
  4624. },
  4625. {
  4626. "interpolation" : "LINEAR",
  4627. "input" : 311,
  4628. "output" : 346
  4629. },
  4630. {
  4631. "interpolation" : "LINEAR",
  4632. "input" : 311,
  4633. "output" : 347
  4634. },
  4635. {
  4636. "interpolation" : "LINEAR",
  4637. "input" : 311,
  4638. "output" : 348
  4639. },
  4640. {
  4641. "interpolation" : "LINEAR",
  4642. "input" : 311,
  4643. "output" : 349
  4644. },
  4645. {
  4646. "interpolation" : "LINEAR",
  4647. "input" : 311,
  4648. "output" : 350
  4649. },
  4650. {
  4651. "interpolation" : "LINEAR",
  4652. "input" : 311,
  4653. "output" : 351
  4654. },
  4655. {
  4656. "interpolation" : "LINEAR",
  4657. "input" : 311,
  4658. "output" : 352
  4659. },
  4660. {
  4661. "interpolation" : "LINEAR",
  4662. "input" : 311,
  4663. "output" : 353
  4664. },
  4665. {
  4666. "interpolation" : "LINEAR",
  4667. "input" : 311,
  4668. "output" : 354
  4669. },
  4670. {
  4671. "interpolation" : "LINEAR",
  4672. "input" : 311,
  4673. "output" : 355
  4674. },
  4675. {
  4676. "interpolation" : "LINEAR",
  4677. "input" : 311,
  4678. "output" : 356
  4679. },
  4680. {
  4681. "interpolation" : "LINEAR",
  4682. "input" : 311,
  4683. "output" : 357
  4684. },
  4685. {
  4686. "interpolation" : "LINEAR",
  4687. "input" : 311,
  4688. "output" : 358
  4689. },
  4690. {
  4691. "interpolation" : "LINEAR",
  4692. "input" : 311,
  4693. "output" : 359
  4694. },
  4695. {
  4696. "interpolation" : "LINEAR",
  4697. "input" : 311,
  4698. "output" : 360
  4699. },
  4700. {
  4701. "interpolation" : "LINEAR",
  4702. "input" : 311,
  4703. "output" : 361
  4704. },
  4705. {
  4706. "interpolation" : "LINEAR",
  4707. "input" : 311,
  4708. "output" : 362
  4709. },
  4710. {
  4711. "interpolation" : "LINEAR",
  4712. "input" : 311,
  4713. "output" : 363
  4714. },
  4715. {
  4716. "interpolation" : "LINEAR",
  4717. "input" : 311,
  4718. "output" : 364
  4719. },
  4720. {
  4721. "interpolation" : "LINEAR",
  4722. "input" : 311,
  4723. "output" : 365
  4724. },
  4725. {
  4726. "interpolation" : "LINEAR",
  4727. "input" : 311,
  4728. "output" : 366
  4729. },
  4730. {
  4731. "interpolation" : "LINEAR",
  4732. "input" : 311,
  4733. "output" : 367
  4734. },
  4735. {
  4736. "interpolation" : "LINEAR",
  4737. "input" : 311,
  4738. "output" : 368
  4739. },
  4740. {
  4741. "interpolation" : "LINEAR",
  4742. "input" : 311,
  4743. "output" : 369
  4744. },
  4745. {
  4746. "interpolation" : "LINEAR",
  4747. "input" : 311,
  4748. "output" : 370
  4749. },
  4750. {
  4751. "interpolation" : "LINEAR",
  4752. "input" : 311,
  4753. "output" : 371
  4754. },
  4755. {
  4756. "interpolation" : "LINEAR",
  4757. "input" : 311,
  4758. "output" : 372
  4759. },
  4760. {
  4761. "interpolation" : "LINEAR",
  4762. "input" : 311,
  4763. "output" : 373
  4764. },
  4765. {
  4766. "interpolation" : "LINEAR",
  4767. "input" : 311,
  4768. "output" : 374
  4769. },
  4770. {
  4771. "interpolation" : "LINEAR",
  4772. "input" : 311,
  4773. "output" : 375
  4774. },
  4775. {
  4776. "interpolation" : "LINEAR",
  4777. "input" : 311,
  4778. "output" : 376
  4779. },
  4780. {
  4781. "interpolation" : "LINEAR",
  4782. "input" : 311,
  4783. "output" : 377
  4784. },
  4785. {
  4786. "interpolation" : "LINEAR",
  4787. "input" : 311,
  4788. "output" : 378
  4789. },
  4790. {
  4791. "interpolation" : "LINEAR",
  4792. "input" : 311,
  4793. "output" : 379
  4794. },
  4795. {
  4796. "interpolation" : "LINEAR",
  4797. "input" : 311,
  4798. "output" : 380
  4799. },
  4800. {
  4801. "interpolation" : "LINEAR",
  4802. "input" : 311,
  4803. "output" : 381
  4804. },
  4805. {
  4806. "interpolation" : "LINEAR",
  4807. "input" : 311,
  4808. "output" : 382
  4809. },
  4810. {
  4811. "interpolation" : "LINEAR",
  4812. "input" : 311,
  4813. "output" : 383
  4814. }
  4815. ]
  4816. }
  4817. ],
  4818. "materials" : [
  4819. {
  4820. "name" : "Brown",
  4821. "pbrMetallicRoughness" : {
  4822. "baseColorFactor" : [
  4823. 0.191,
  4824. 0.095,
  4825. 0.051,
  4826. 1.0
  4827. ],
  4828. "metallicFactor" : 0.0
  4829. }
  4830. },
  4831. {
  4832. "name" : "White",
  4833. "pbrMetallicRoughness" : {
  4834. "baseColorFactor" : [
  4835. 0.8,
  4836. 0.8,
  4837. 0.8,
  4838. 1.0
  4839. ],
  4840. "metallicFactor" : 0.0
  4841. }
  4842. },
  4843. {
  4844. "name" : "Grey",
  4845. "pbrMetallicRoughness" : {
  4846. "baseColorFactor" : [
  4847. 0.091,
  4848. 0.091,
  4849. 0.091,
  4850. 1.0
  4851. ],
  4852. "metallicFactor" : 0.0
  4853. }
  4854. }
  4855. ],
  4856. "meshes" : [
  4857. {
  4858. "name" : "Cylinder",
  4859. "primitives" : [
  4860. {
  4861. "attributes" : {
  4862. "POSITION" : 0,
  4863. "JOINTS_0" : 1,
  4864. "NORMAL" : 4,
  4865. "COLOR_0" : 3,
  4866. "WEIGHTS_0" : 2
  4867. },
  4868. "material" : 0,
  4869. "indices" : 5
  4870. },
  4871. {
  4872. "attributes" : {
  4873. "POSITION" : 6,
  4874. "JOINTS_0" : 7,
  4875. "NORMAL" : 10,
  4876. "COLOR_0" : 9,
  4877. "WEIGHTS_0" : 8
  4878. },
  4879. "material" : 1,
  4880. "indices" : 11
  4881. },
  4882. {
  4883. "attributes" : {
  4884. "POSITION" : 12,
  4885. "JOINTS_0" : 13,
  4886. "NORMAL" : 16,
  4887. "COLOR_0" : 15,
  4888. "WEIGHTS_0" : 14
  4889. },
  4890. "material" : 2,
  4891. "indices" : 17
  4892. }
  4893. ]
  4894. }
  4895. ],
  4896. "skins" : [
  4897. {
  4898. "name" : "Armature",
  4899. "inverseBindMatrices" : 18,
  4900. "joints" : [
  4901. 23,
  4902. 0,
  4903. 19,
  4904. 3,
  4905. 2,
  4906. 1,
  4907. 6,
  4908. 5,
  4909. 4,
  4910. 9,
  4911. 8,
  4912. 7,
  4913. 12,
  4914. 11,
  4915. 10,
  4916. 13,
  4917. 16,
  4918. 15,
  4919. 14,
  4920. 18,
  4921. 17,
  4922. 20,
  4923. 21,
  4924. 22
  4925. ]
  4926. }
  4927. ],
  4928. "accessors" : [
  4929. {
  4930. "bufferView" : 0,
  4931. "componentType" : 5126,
  4932. "max" : [
  4933. 0.7880550026893616,
  4934. 5.745481967926025,
  4935. 2.340198040008545
  4936. ],
  4937. "type" : "VEC3",
  4938. "min" : [
  4939. -0.7880550026893616,
  4940. 1.1393593549728394,
  4941. -2.0258562564849854
  4942. ],
  4943. "count" : 750
  4944. },
  4945. {
  4946. "bufferView" : 1,
  4947. "componentType" : 5123,
  4948. "type" : "VEC4",
  4949. "count" : 750
  4950. },
  4951. {
  4952. "bufferView" : 2,
  4953. "componentType" : 5126,
  4954. "type" : "VEC4",
  4955. "count" : 750
  4956. },
  4957. {
  4958. "bufferView" : 3,
  4959. "componentType" : 5126,
  4960. "type" : "VEC4",
  4961. "count" : 750
  4962. },
  4963. {
  4964. "bufferView" : 4,
  4965. "componentType" : 5126,
  4966. "type" : "VEC3",
  4967. "count" : 750
  4968. },
  4969. {
  4970. "bufferView" : 5,
  4971. "componentType" : 5123,
  4972. "type" : "SCALAR",
  4973. "count" : 1098
  4974. },
  4975. {
  4976. "bufferView" : 6,
  4977. "componentType" : 5126,
  4978. "max" : [
  4979. 0.7134069800376892,
  4980. 5.603108882904053,
  4981. 2.836730480194092
  4982. ],
  4983. "type" : "VEC3",
  4984. "min" : [
  4985. -0.7134069800376892,
  4986. 0.12890814244747162,
  4987. -1.582935094833374
  4988. ],
  4989. "count" : 348
  4990. },
  4991. {
  4992. "bufferView" : 7,
  4993. "componentType" : 5123,
  4994. "type" : "VEC4",
  4995. "count" : 348
  4996. },
  4997. {
  4998. "bufferView" : 8,
  4999. "componentType" : 5126,
  5000. "type" : "VEC4",
  5001. "count" : 348
  5002. },
  5003. {
  5004. "bufferView" : 9,
  5005. "componentType" : 5126,
  5006. "type" : "VEC4",
  5007. "count" : 348
  5008. },
  5009. {
  5010. "bufferView" : 10,
  5011. "componentType" : 5126,
  5012. "type" : "VEC3",
  5013. "count" : 348
  5014. },
  5015. {
  5016. "bufferView" : 11,
  5017. "componentType" : 5123,
  5018. "type" : "SCALAR",
  5019. "count" : 504
  5020. },
  5021. {
  5022. "bufferView" : 12,
  5023. "componentType" : 5126,
  5024. "max" : [
  5025. 0.7134601473808289,
  5026. 5.840008735656738,
  5027. 2.8862268924713135
  5028. ],
  5029. "type" : "VEC3",
  5030. "min" : [
  5031. -0.7134601473808289,
  5032. -0.013018578290939331,
  5033. -1.4362930059432983
  5034. ],
  5035. "count" : 268
  5036. },
  5037. {
  5038. "bufferView" : 13,
  5039. "componentType" : 5123,
  5040. "type" : "VEC4",
  5041. "count" : 268
  5042. },
  5043. {
  5044. "bufferView" : 14,
  5045. "componentType" : 5126,
  5046. "type" : "VEC4",
  5047. "count" : 268
  5048. },
  5049. {
  5050. "bufferView" : 15,
  5051. "componentType" : 5126,
  5052. "type" : "VEC4",
  5053. "count" : 268
  5054. },
  5055. {
  5056. "bufferView" : 16,
  5057. "componentType" : 5126,
  5058. "type" : "VEC3",
  5059. "count" : 268
  5060. },
  5061. {
  5062. "bufferView" : 17,
  5063. "componentType" : 5123,
  5064. "type" : "SCALAR",
  5065. "count" : 384
  5066. },
  5067. {
  5068. "bufferView" : 18,
  5069. "componentType" : 5126,
  5070. "type" : "MAT4",
  5071. "count" : 24
  5072. },
  5073. {
  5074. "bufferView" : 19,
  5075. "componentType" : 5126,
  5076. "max" : [
  5077. 1.125
  5078. ],
  5079. "type" : "SCALAR",
  5080. "min" : [
  5081. 0
  5082. ],
  5083. "count" : 28
  5084. },
  5085. {
  5086. "bufferView" : 20,
  5087. "componentType" : 5126,
  5088. "type" : "VEC3",
  5089. "count" : 28
  5090. },
  5091. {
  5092. "bufferView" : 21,
  5093. "componentType" : 5126,
  5094. "type" : "VEC4",
  5095. "count" : 28
  5096. },
  5097. {
  5098. "bufferView" : 22,
  5099. "componentType" : 5126,
  5100. "type" : "VEC3",
  5101. "count" : 28
  5102. },
  5103. {
  5104. "bufferView" : 23,
  5105. "componentType" : 5126,
  5106. "type" : "VEC3",
  5107. "count" : 28
  5108. },
  5109. {
  5110. "bufferView" : 24,
  5111. "componentType" : 5126,
  5112. "type" : "VEC4",
  5113. "count" : 28
  5114. },
  5115. {
  5116. "bufferView" : 25,
  5117. "componentType" : 5126,
  5118. "type" : "VEC3",
  5119. "count" : 28
  5120. },
  5121. {
  5122. "bufferView" : 26,
  5123. "componentType" : 5126,
  5124. "type" : "VEC3",
  5125. "count" : 28
  5126. },
  5127. {
  5128. "bufferView" : 27,
  5129. "componentType" : 5126,
  5130. "type" : "VEC4",
  5131. "count" : 28
  5132. },
  5133. {
  5134. "bufferView" : 28,
  5135. "componentType" : 5126,
  5136. "type" : "VEC3",
  5137. "count" : 28
  5138. },
  5139. {
  5140. "bufferView" : 29,
  5141. "componentType" : 5126,
  5142. "type" : "VEC3",
  5143. "count" : 28
  5144. },
  5145. {
  5146. "bufferView" : 30,
  5147. "componentType" : 5126,
  5148. "type" : "VEC4",
  5149. "count" : 28
  5150. },
  5151. {
  5152. "bufferView" : 31,
  5153. "componentType" : 5126,
  5154. "type" : "VEC3",
  5155. "count" : 28
  5156. },
  5157. {
  5158. "bufferView" : 32,
  5159. "componentType" : 5126,
  5160. "type" : "VEC3",
  5161. "count" : 28
  5162. },
  5163. {
  5164. "bufferView" : 33,
  5165. "componentType" : 5126,
  5166. "type" : "VEC4",
  5167. "count" : 28
  5168. },
  5169. {
  5170. "bufferView" : 34,
  5171. "componentType" : 5126,
  5172. "type" : "VEC3",
  5173. "count" : 28
  5174. },
  5175. {
  5176. "bufferView" : 35,
  5177. "componentType" : 5126,
  5178. "type" : "VEC3",
  5179. "count" : 28
  5180. },
  5181. {
  5182. "bufferView" : 36,
  5183. "componentType" : 5126,
  5184. "type" : "VEC4",
  5185. "count" : 28
  5186. },
  5187. {
  5188. "bufferView" : 37,
  5189. "componentType" : 5126,
  5190. "type" : "VEC3",
  5191. "count" : 28
  5192. },
  5193. {
  5194. "bufferView" : 38,
  5195. "componentType" : 5126,
  5196. "type" : "VEC3",
  5197. "count" : 28
  5198. },
  5199. {
  5200. "bufferView" : 39,
  5201. "componentType" : 5126,
  5202. "type" : "VEC4",
  5203. "count" : 28
  5204. },
  5205. {
  5206. "bufferView" : 40,
  5207. "componentType" : 5126,
  5208. "type" : "VEC3",
  5209. "count" : 28
  5210. },
  5211. {
  5212. "bufferView" : 41,
  5213. "componentType" : 5126,
  5214. "type" : "VEC3",
  5215. "count" : 28
  5216. },
  5217. {
  5218. "bufferView" : 42,
  5219. "componentType" : 5126,
  5220. "type" : "VEC4",
  5221. "count" : 28
  5222. },
  5223. {
  5224. "bufferView" : 43,
  5225. "componentType" : 5126,
  5226. "type" : "VEC3",
  5227. "count" : 28
  5228. },
  5229. {
  5230. "bufferView" : 44,
  5231. "componentType" : 5126,
  5232. "type" : "VEC3",
  5233. "count" : 28
  5234. },
  5235. {
  5236. "bufferView" : 45,
  5237. "componentType" : 5126,
  5238. "type" : "VEC4",
  5239. "count" : 28
  5240. },
  5241. {
  5242. "bufferView" : 46,
  5243. "componentType" : 5126,
  5244. "type" : "VEC3",
  5245. "count" : 28
  5246. },
  5247. {
  5248. "bufferView" : 47,
  5249. "componentType" : 5126,
  5250. "type" : "VEC3",
  5251. "count" : 28
  5252. },
  5253. {
  5254. "bufferView" : 48,
  5255. "componentType" : 5126,
  5256. "type" : "VEC4",
  5257. "count" : 28
  5258. },
  5259. {
  5260. "bufferView" : 49,
  5261. "componentType" : 5126,
  5262. "type" : "VEC3",
  5263. "count" : 28
  5264. },
  5265. {
  5266. "bufferView" : 50,
  5267. "componentType" : 5126,
  5268. "type" : "VEC3",
  5269. "count" : 28
  5270. },
  5271. {
  5272. "bufferView" : 51,
  5273. "componentType" : 5126,
  5274. "type" : "VEC4",
  5275. "count" : 28
  5276. },
  5277. {
  5278. "bufferView" : 52,
  5279. "componentType" : 5126,
  5280. "type" : "VEC3",
  5281. "count" : 28
  5282. },
  5283. {
  5284. "bufferView" : 53,
  5285. "componentType" : 5126,
  5286. "type" : "VEC3",
  5287. "count" : 28
  5288. },
  5289. {
  5290. "bufferView" : 54,
  5291. "componentType" : 5126,
  5292. "type" : "VEC4",
  5293. "count" : 28
  5294. },
  5295. {
  5296. "bufferView" : 55,
  5297. "componentType" : 5126,
  5298. "type" : "VEC3",
  5299. "count" : 28
  5300. },
  5301. {
  5302. "bufferView" : 56,
  5303. "componentType" : 5126,
  5304. "type" : "VEC3",
  5305. "count" : 28
  5306. },
  5307. {
  5308. "bufferView" : 57,
  5309. "componentType" : 5126,
  5310. "type" : "VEC4",
  5311. "count" : 28
  5312. },
  5313. {
  5314. "bufferView" : 58,
  5315. "componentType" : 5126,
  5316. "type" : "VEC3",
  5317. "count" : 28
  5318. },
  5319. {
  5320. "bufferView" : 59,
  5321. "componentType" : 5126,
  5322. "type" : "VEC3",
  5323. "count" : 28
  5324. },
  5325. {
  5326. "bufferView" : 60,
  5327. "componentType" : 5126,
  5328. "type" : "VEC4",
  5329. "count" : 28
  5330. },
  5331. {
  5332. "bufferView" : 61,
  5333. "componentType" : 5126,
  5334. "type" : "VEC3",
  5335. "count" : 28
  5336. },
  5337. {
  5338. "bufferView" : 62,
  5339. "componentType" : 5126,
  5340. "type" : "VEC3",
  5341. "count" : 28
  5342. },
  5343. {
  5344. "bufferView" : 63,
  5345. "componentType" : 5126,
  5346. "type" : "VEC4",
  5347. "count" : 28
  5348. },
  5349. {
  5350. "bufferView" : 64,
  5351. "componentType" : 5126,
  5352. "type" : "VEC3",
  5353. "count" : 28
  5354. },
  5355. {
  5356. "bufferView" : 65,
  5357. "componentType" : 5126,
  5358. "type" : "VEC3",
  5359. "count" : 28
  5360. },
  5361. {
  5362. "bufferView" : 66,
  5363. "componentType" : 5126,
  5364. "type" : "VEC4",
  5365. "count" : 28
  5366. },
  5367. {
  5368. "bufferView" : 67,
  5369. "componentType" : 5126,
  5370. "type" : "VEC3",
  5371. "count" : 28
  5372. },
  5373. {
  5374. "bufferView" : 68,
  5375. "componentType" : 5126,
  5376. "type" : "VEC3",
  5377. "count" : 28
  5378. },
  5379. {
  5380. "bufferView" : 69,
  5381. "componentType" : 5126,
  5382. "type" : "VEC4",
  5383. "count" : 28
  5384. },
  5385. {
  5386. "bufferView" : 70,
  5387. "componentType" : 5126,
  5388. "type" : "VEC3",
  5389. "count" : 28
  5390. },
  5391. {
  5392. "bufferView" : 71,
  5393. "componentType" : 5126,
  5394. "type" : "VEC3",
  5395. "count" : 28
  5396. },
  5397. {
  5398. "bufferView" : 72,
  5399. "componentType" : 5126,
  5400. "type" : "VEC4",
  5401. "count" : 28
  5402. },
  5403. {
  5404. "bufferView" : 73,
  5405. "componentType" : 5126,
  5406. "type" : "VEC3",
  5407. "count" : 28
  5408. },
  5409. {
  5410. "bufferView" : 74,
  5411. "componentType" : 5126,
  5412. "type" : "VEC3",
  5413. "count" : 28
  5414. },
  5415. {
  5416. "bufferView" : 75,
  5417. "componentType" : 5126,
  5418. "type" : "VEC4",
  5419. "count" : 28
  5420. },
  5421. {
  5422. "bufferView" : 76,
  5423. "componentType" : 5126,
  5424. "type" : "VEC3",
  5425. "count" : 28
  5426. },
  5427. {
  5428. "bufferView" : 77,
  5429. "componentType" : 5126,
  5430. "type" : "VEC3",
  5431. "count" : 28
  5432. },
  5433. {
  5434. "bufferView" : 78,
  5435. "componentType" : 5126,
  5436. "type" : "VEC4",
  5437. "count" : 28
  5438. },
  5439. {
  5440. "bufferView" : 79,
  5441. "componentType" : 5126,
  5442. "type" : "VEC3",
  5443. "count" : 28
  5444. },
  5445. {
  5446. "bufferView" : 80,
  5447. "componentType" : 5126,
  5448. "type" : "VEC3",
  5449. "count" : 28
  5450. },
  5451. {
  5452. "bufferView" : 81,
  5453. "componentType" : 5126,
  5454. "type" : "VEC4",
  5455. "count" : 28
  5456. },
  5457. {
  5458. "bufferView" : 82,
  5459. "componentType" : 5126,
  5460. "type" : "VEC3",
  5461. "count" : 28
  5462. },
  5463. {
  5464. "bufferView" : 83,
  5465. "componentType" : 5126,
  5466. "type" : "VEC3",
  5467. "count" : 28
  5468. },
  5469. {
  5470. "bufferView" : 84,
  5471. "componentType" : 5126,
  5472. "type" : "VEC4",
  5473. "count" : 28
  5474. },
  5475. {
  5476. "bufferView" : 85,
  5477. "componentType" : 5126,
  5478. "type" : "VEC3",
  5479. "count" : 28
  5480. },
  5481. {
  5482. "bufferView" : 86,
  5483. "componentType" : 5126,
  5484. "type" : "VEC3",
  5485. "count" : 28
  5486. },
  5487. {
  5488. "bufferView" : 87,
  5489. "componentType" : 5126,
  5490. "type" : "VEC4",
  5491. "count" : 28
  5492. },
  5493. {
  5494. "bufferView" : 88,
  5495. "componentType" : 5126,
  5496. "type" : "VEC3",
  5497. "count" : 28
  5498. },
  5499. {
  5500. "bufferView" : 89,
  5501. "componentType" : 5126,
  5502. "type" : "VEC3",
  5503. "count" : 28
  5504. },
  5505. {
  5506. "bufferView" : 90,
  5507. "componentType" : 5126,
  5508. "type" : "VEC4",
  5509. "count" : 28
  5510. },
  5511. {
  5512. "bufferView" : 91,
  5513. "componentType" : 5126,
  5514. "type" : "VEC3",
  5515. "count" : 28
  5516. },
  5517. {
  5518. "bufferView" : 92,
  5519. "componentType" : 5126,
  5520. "max" : [
  5521. 6.25
  5522. ],
  5523. "type" : "SCALAR",
  5524. "min" : [
  5525. 0
  5526. ],
  5527. "count" : 151
  5528. },
  5529. {
  5530. "bufferView" : 93,
  5531. "componentType" : 5126,
  5532. "type" : "VEC3",
  5533. "count" : 151
  5534. },
  5535. {
  5536. "bufferView" : 94,
  5537. "componentType" : 5126,
  5538. "type" : "VEC4",
  5539. "count" : 151
  5540. },
  5541. {
  5542. "bufferView" : 95,
  5543. "componentType" : 5126,
  5544. "type" : "VEC3",
  5545. "count" : 151
  5546. },
  5547. {
  5548. "bufferView" : 96,
  5549. "componentType" : 5126,
  5550. "type" : "VEC3",
  5551. "count" : 151
  5552. },
  5553. {
  5554. "bufferView" : 97,
  5555. "componentType" : 5126,
  5556. "type" : "VEC4",
  5557. "count" : 151
  5558. },
  5559. {
  5560. "bufferView" : 98,
  5561. "componentType" : 5126,
  5562. "type" : "VEC3",
  5563. "count" : 151
  5564. },
  5565. {
  5566. "bufferView" : 99,
  5567. "componentType" : 5126,
  5568. "type" : "VEC3",
  5569. "count" : 151
  5570. },
  5571. {
  5572. "bufferView" : 100,
  5573. "componentType" : 5126,
  5574. "type" : "VEC4",
  5575. "count" : 151
  5576. },
  5577. {
  5578. "bufferView" : 101,
  5579. "componentType" : 5126,
  5580. "type" : "VEC3",
  5581. "count" : 151
  5582. },
  5583. {
  5584. "bufferView" : 102,
  5585. "componentType" : 5126,
  5586. "type" : "VEC3",
  5587. "count" : 151
  5588. },
  5589. {
  5590. "bufferView" : 103,
  5591. "componentType" : 5126,
  5592. "type" : "VEC4",
  5593. "count" : 151
  5594. },
  5595. {
  5596. "bufferView" : 104,
  5597. "componentType" : 5126,
  5598. "type" : "VEC3",
  5599. "count" : 151
  5600. },
  5601. {
  5602. "bufferView" : 105,
  5603. "componentType" : 5126,
  5604. "type" : "VEC3",
  5605. "count" : 151
  5606. },
  5607. {
  5608. "bufferView" : 106,
  5609. "componentType" : 5126,
  5610. "type" : "VEC4",
  5611. "count" : 151
  5612. },
  5613. {
  5614. "bufferView" : 107,
  5615. "componentType" : 5126,
  5616. "type" : "VEC3",
  5617. "count" : 151
  5618. },
  5619. {
  5620. "bufferView" : 108,
  5621. "componentType" : 5126,
  5622. "type" : "VEC3",
  5623. "count" : 151
  5624. },
  5625. {
  5626. "bufferView" : 109,
  5627. "componentType" : 5126,
  5628. "type" : "VEC4",
  5629. "count" : 151
  5630. },
  5631. {
  5632. "bufferView" : 110,
  5633. "componentType" : 5126,
  5634. "type" : "VEC3",
  5635. "count" : 151
  5636. },
  5637. {
  5638. "bufferView" : 111,
  5639. "componentType" : 5126,
  5640. "type" : "VEC3",
  5641. "count" : 151
  5642. },
  5643. {
  5644. "bufferView" : 112,
  5645. "componentType" : 5126,
  5646. "type" : "VEC4",
  5647. "count" : 151
  5648. },
  5649. {
  5650. "bufferView" : 113,
  5651. "componentType" : 5126,
  5652. "type" : "VEC3",
  5653. "count" : 151
  5654. },
  5655. {
  5656. "bufferView" : 114,
  5657. "componentType" : 5126,
  5658. "type" : "VEC3",
  5659. "count" : 151
  5660. },
  5661. {
  5662. "bufferView" : 115,
  5663. "componentType" : 5126,
  5664. "type" : "VEC4",
  5665. "count" : 151
  5666. },
  5667. {
  5668. "bufferView" : 116,
  5669. "componentType" : 5126,
  5670. "type" : "VEC3",
  5671. "count" : 151
  5672. },
  5673. {
  5674. "bufferView" : 117,
  5675. "componentType" : 5126,
  5676. "type" : "VEC3",
  5677. "count" : 151
  5678. },
  5679. {
  5680. "bufferView" : 118,
  5681. "componentType" : 5126,
  5682. "type" : "VEC4",
  5683. "count" : 151
  5684. },
  5685. {
  5686. "bufferView" : 119,
  5687. "componentType" : 5126,
  5688. "type" : "VEC3",
  5689. "count" : 151
  5690. },
  5691. {
  5692. "bufferView" : 120,
  5693. "componentType" : 5126,
  5694. "type" : "VEC3",
  5695. "count" : 151
  5696. },
  5697. {
  5698. "bufferView" : 121,
  5699. "componentType" : 5126,
  5700. "type" : "VEC4",
  5701. "count" : 151
  5702. },
  5703. {
  5704. "bufferView" : 122,
  5705. "componentType" : 5126,
  5706. "type" : "VEC3",
  5707. "count" : 151
  5708. },
  5709. {
  5710. "bufferView" : 123,
  5711. "componentType" : 5126,
  5712. "type" : "VEC3",
  5713. "count" : 151
  5714. },
  5715. {
  5716. "bufferView" : 124,
  5717. "componentType" : 5126,
  5718. "type" : "VEC4",
  5719. "count" : 151
  5720. },
  5721. {
  5722. "bufferView" : 125,
  5723. "componentType" : 5126,
  5724. "type" : "VEC3",
  5725. "count" : 151
  5726. },
  5727. {
  5728. "bufferView" : 126,
  5729. "componentType" : 5126,
  5730. "type" : "VEC3",
  5731. "count" : 151
  5732. },
  5733. {
  5734. "bufferView" : 127,
  5735. "componentType" : 5126,
  5736. "type" : "VEC4",
  5737. "count" : 151
  5738. },
  5739. {
  5740. "bufferView" : 128,
  5741. "componentType" : 5126,
  5742. "type" : "VEC3",
  5743. "count" : 151
  5744. },
  5745. {
  5746. "bufferView" : 129,
  5747. "componentType" : 5126,
  5748. "type" : "VEC3",
  5749. "count" : 151
  5750. },
  5751. {
  5752. "bufferView" : 130,
  5753. "componentType" : 5126,
  5754. "type" : "VEC4",
  5755. "count" : 151
  5756. },
  5757. {
  5758. "bufferView" : 131,
  5759. "componentType" : 5126,
  5760. "type" : "VEC3",
  5761. "count" : 151
  5762. },
  5763. {
  5764. "bufferView" : 132,
  5765. "componentType" : 5126,
  5766. "type" : "VEC3",
  5767. "count" : 151
  5768. },
  5769. {
  5770. "bufferView" : 133,
  5771. "componentType" : 5126,
  5772. "type" : "VEC4",
  5773. "count" : 151
  5774. },
  5775. {
  5776. "bufferView" : 134,
  5777. "componentType" : 5126,
  5778. "type" : "VEC3",
  5779. "count" : 151
  5780. },
  5781. {
  5782. "bufferView" : 135,
  5783. "componentType" : 5126,
  5784. "type" : "VEC3",
  5785. "count" : 151
  5786. },
  5787. {
  5788. "bufferView" : 136,
  5789. "componentType" : 5126,
  5790. "type" : "VEC4",
  5791. "count" : 151
  5792. },
  5793. {
  5794. "bufferView" : 137,
  5795. "componentType" : 5126,
  5796. "type" : "VEC3",
  5797. "count" : 151
  5798. },
  5799. {
  5800. "bufferView" : 138,
  5801. "componentType" : 5126,
  5802. "type" : "VEC3",
  5803. "count" : 151
  5804. },
  5805. {
  5806. "bufferView" : 139,
  5807. "componentType" : 5126,
  5808. "type" : "VEC4",
  5809. "count" : 151
  5810. },
  5811. {
  5812. "bufferView" : 140,
  5813. "componentType" : 5126,
  5814. "type" : "VEC3",
  5815. "count" : 151
  5816. },
  5817. {
  5818. "bufferView" : 141,
  5819. "componentType" : 5126,
  5820. "type" : "VEC3",
  5821. "count" : 151
  5822. },
  5823. {
  5824. "bufferView" : 142,
  5825. "componentType" : 5126,
  5826. "type" : "VEC4",
  5827. "count" : 151
  5828. },
  5829. {
  5830. "bufferView" : 143,
  5831. "componentType" : 5126,
  5832. "type" : "VEC3",
  5833. "count" : 151
  5834. },
  5835. {
  5836. "bufferView" : 144,
  5837. "componentType" : 5126,
  5838. "type" : "VEC3",
  5839. "count" : 151
  5840. },
  5841. {
  5842. "bufferView" : 145,
  5843. "componentType" : 5126,
  5844. "type" : "VEC4",
  5845. "count" : 151
  5846. },
  5847. {
  5848. "bufferView" : 146,
  5849. "componentType" : 5126,
  5850. "type" : "VEC3",
  5851. "count" : 151
  5852. },
  5853. {
  5854. "bufferView" : 147,
  5855. "componentType" : 5126,
  5856. "type" : "VEC3",
  5857. "count" : 151
  5858. },
  5859. {
  5860. "bufferView" : 148,
  5861. "componentType" : 5126,
  5862. "type" : "VEC4",
  5863. "count" : 151
  5864. },
  5865. {
  5866. "bufferView" : 149,
  5867. "componentType" : 5126,
  5868. "type" : "VEC3",
  5869. "count" : 151
  5870. },
  5871. {
  5872. "bufferView" : 150,
  5873. "componentType" : 5126,
  5874. "type" : "VEC3",
  5875. "count" : 151
  5876. },
  5877. {
  5878. "bufferView" : 151,
  5879. "componentType" : 5126,
  5880. "type" : "VEC4",
  5881. "count" : 151
  5882. },
  5883. {
  5884. "bufferView" : 152,
  5885. "componentType" : 5126,
  5886. "type" : "VEC3",
  5887. "count" : 151
  5888. },
  5889. {
  5890. "bufferView" : 153,
  5891. "componentType" : 5126,
  5892. "type" : "VEC3",
  5893. "count" : 151
  5894. },
  5895. {
  5896. "bufferView" : 154,
  5897. "componentType" : 5126,
  5898. "type" : "VEC4",
  5899. "count" : 151
  5900. },
  5901. {
  5902. "bufferView" : 155,
  5903. "componentType" : 5126,
  5904. "type" : "VEC3",
  5905. "count" : 151
  5906. },
  5907. {
  5908. "bufferView" : 156,
  5909. "componentType" : 5126,
  5910. "type" : "VEC3",
  5911. "count" : 151
  5912. },
  5913. {
  5914. "bufferView" : 157,
  5915. "componentType" : 5126,
  5916. "type" : "VEC4",
  5917. "count" : 151
  5918. },
  5919. {
  5920. "bufferView" : 158,
  5921. "componentType" : 5126,
  5922. "type" : "VEC3",
  5923. "count" : 151
  5924. },
  5925. {
  5926. "bufferView" : 159,
  5927. "componentType" : 5126,
  5928. "type" : "VEC3",
  5929. "count" : 151
  5930. },
  5931. {
  5932. "bufferView" : 160,
  5933. "componentType" : 5126,
  5934. "type" : "VEC4",
  5935. "count" : 151
  5936. },
  5937. {
  5938. "bufferView" : 161,
  5939. "componentType" : 5126,
  5940. "type" : "VEC3",
  5941. "count" : 151
  5942. },
  5943. {
  5944. "bufferView" : 162,
  5945. "componentType" : 5126,
  5946. "type" : "VEC3",
  5947. "count" : 151
  5948. },
  5949. {
  5950. "bufferView" : 163,
  5951. "componentType" : 5126,
  5952. "type" : "VEC4",
  5953. "count" : 151
  5954. },
  5955. {
  5956. "bufferView" : 164,
  5957. "componentType" : 5126,
  5958. "type" : "VEC3",
  5959. "count" : 151
  5960. },
  5961. {
  5962. "bufferView" : 165,
  5963. "componentType" : 5126,
  5964. "max" : [
  5965. 2.6666666666666665
  5966. ],
  5967. "type" : "SCALAR",
  5968. "min" : [
  5969. 0
  5970. ],
  5971. "count" : 65
  5972. },
  5973. {
  5974. "bufferView" : 166,
  5975. "componentType" : 5126,
  5976. "type" : "VEC3",
  5977. "count" : 65
  5978. },
  5979. {
  5980. "bufferView" : 167,
  5981. "componentType" : 5126,
  5982. "type" : "VEC4",
  5983. "count" : 65
  5984. },
  5985. {
  5986. "bufferView" : 168,
  5987. "componentType" : 5126,
  5988. "type" : "VEC3",
  5989. "count" : 65
  5990. },
  5991. {
  5992. "bufferView" : 169,
  5993. "componentType" : 5126,
  5994. "type" : "VEC3",
  5995. "count" : 65
  5996. },
  5997. {
  5998. "bufferView" : 170,
  5999. "componentType" : 5126,
  6000. "type" : "VEC4",
  6001. "count" : 65
  6002. },
  6003. {
  6004. "bufferView" : 171,
  6005. "componentType" : 5126,
  6006. "type" : "VEC3",
  6007. "count" : 65
  6008. },
  6009. {
  6010. "bufferView" : 172,
  6011. "componentType" : 5126,
  6012. "type" : "VEC3",
  6013. "count" : 65
  6014. },
  6015. {
  6016. "bufferView" : 173,
  6017. "componentType" : 5126,
  6018. "type" : "VEC4",
  6019. "count" : 65
  6020. },
  6021. {
  6022. "bufferView" : 174,
  6023. "componentType" : 5126,
  6024. "type" : "VEC3",
  6025. "count" : 65
  6026. },
  6027. {
  6028. "bufferView" : 175,
  6029. "componentType" : 5126,
  6030. "type" : "VEC3",
  6031. "count" : 65
  6032. },
  6033. {
  6034. "bufferView" : 176,
  6035. "componentType" : 5126,
  6036. "type" : "VEC4",
  6037. "count" : 65
  6038. },
  6039. {
  6040. "bufferView" : 177,
  6041. "componentType" : 5126,
  6042. "type" : "VEC3",
  6043. "count" : 65
  6044. },
  6045. {
  6046. "bufferView" : 178,
  6047. "componentType" : 5126,
  6048. "type" : "VEC3",
  6049. "count" : 65
  6050. },
  6051. {
  6052. "bufferView" : 179,
  6053. "componentType" : 5126,
  6054. "type" : "VEC4",
  6055. "count" : 65
  6056. },
  6057. {
  6058. "bufferView" : 180,
  6059. "componentType" : 5126,
  6060. "type" : "VEC3",
  6061. "count" : 65
  6062. },
  6063. {
  6064. "bufferView" : 181,
  6065. "componentType" : 5126,
  6066. "type" : "VEC3",
  6067. "count" : 65
  6068. },
  6069. {
  6070. "bufferView" : 182,
  6071. "componentType" : 5126,
  6072. "type" : "VEC4",
  6073. "count" : 65
  6074. },
  6075. {
  6076. "bufferView" : 183,
  6077. "componentType" : 5126,
  6078. "type" : "VEC3",
  6079. "count" : 65
  6080. },
  6081. {
  6082. "bufferView" : 184,
  6083. "componentType" : 5126,
  6084. "type" : "VEC3",
  6085. "count" : 65
  6086. },
  6087. {
  6088. "bufferView" : 185,
  6089. "componentType" : 5126,
  6090. "type" : "VEC4",
  6091. "count" : 65
  6092. },
  6093. {
  6094. "bufferView" : 186,
  6095. "componentType" : 5126,
  6096. "type" : "VEC3",
  6097. "count" : 65
  6098. },
  6099. {
  6100. "bufferView" : 187,
  6101. "componentType" : 5126,
  6102. "type" : "VEC3",
  6103. "count" : 65
  6104. },
  6105. {
  6106. "bufferView" : 188,
  6107. "componentType" : 5126,
  6108. "type" : "VEC4",
  6109. "count" : 65
  6110. },
  6111. {
  6112. "bufferView" : 189,
  6113. "componentType" : 5126,
  6114. "type" : "VEC3",
  6115. "count" : 65
  6116. },
  6117. {
  6118. "bufferView" : 190,
  6119. "componentType" : 5126,
  6120. "type" : "VEC3",
  6121. "count" : 65
  6122. },
  6123. {
  6124. "bufferView" : 191,
  6125. "componentType" : 5126,
  6126. "type" : "VEC4",
  6127. "count" : 65
  6128. },
  6129. {
  6130. "bufferView" : 192,
  6131. "componentType" : 5126,
  6132. "type" : "VEC3",
  6133. "count" : 65
  6134. },
  6135. {
  6136. "bufferView" : 193,
  6137. "componentType" : 5126,
  6138. "type" : "VEC3",
  6139. "count" : 65
  6140. },
  6141. {
  6142. "bufferView" : 194,
  6143. "componentType" : 5126,
  6144. "type" : "VEC4",
  6145. "count" : 65
  6146. },
  6147. {
  6148. "bufferView" : 195,
  6149. "componentType" : 5126,
  6150. "type" : "VEC3",
  6151. "count" : 65
  6152. },
  6153. {
  6154. "bufferView" : 196,
  6155. "componentType" : 5126,
  6156. "type" : "VEC3",
  6157. "count" : 65
  6158. },
  6159. {
  6160. "bufferView" : 197,
  6161. "componentType" : 5126,
  6162. "type" : "VEC4",
  6163. "count" : 65
  6164. },
  6165. {
  6166. "bufferView" : 198,
  6167. "componentType" : 5126,
  6168. "type" : "VEC3",
  6169. "count" : 65
  6170. },
  6171. {
  6172. "bufferView" : 199,
  6173. "componentType" : 5126,
  6174. "type" : "VEC3",
  6175. "count" : 65
  6176. },
  6177. {
  6178. "bufferView" : 200,
  6179. "componentType" : 5126,
  6180. "type" : "VEC4",
  6181. "count" : 65
  6182. },
  6183. {
  6184. "bufferView" : 201,
  6185. "componentType" : 5126,
  6186. "type" : "VEC3",
  6187. "count" : 65
  6188. },
  6189. {
  6190. "bufferView" : 202,
  6191. "componentType" : 5126,
  6192. "type" : "VEC3",
  6193. "count" : 65
  6194. },
  6195. {
  6196. "bufferView" : 203,
  6197. "componentType" : 5126,
  6198. "type" : "VEC4",
  6199. "count" : 65
  6200. },
  6201. {
  6202. "bufferView" : 204,
  6203. "componentType" : 5126,
  6204. "type" : "VEC3",
  6205. "count" : 65
  6206. },
  6207. {
  6208. "bufferView" : 205,
  6209. "componentType" : 5126,
  6210. "type" : "VEC3",
  6211. "count" : 65
  6212. },
  6213. {
  6214. "bufferView" : 206,
  6215. "componentType" : 5126,
  6216. "type" : "VEC4",
  6217. "count" : 65
  6218. },
  6219. {
  6220. "bufferView" : 207,
  6221. "componentType" : 5126,
  6222. "type" : "VEC3",
  6223. "count" : 65
  6224. },
  6225. {
  6226. "bufferView" : 208,
  6227. "componentType" : 5126,
  6228. "type" : "VEC3",
  6229. "count" : 65
  6230. },
  6231. {
  6232. "bufferView" : 209,
  6233. "componentType" : 5126,
  6234. "type" : "VEC4",
  6235. "count" : 65
  6236. },
  6237. {
  6238. "bufferView" : 210,
  6239. "componentType" : 5126,
  6240. "type" : "VEC3",
  6241. "count" : 65
  6242. },
  6243. {
  6244. "bufferView" : 211,
  6245. "componentType" : 5126,
  6246. "type" : "VEC3",
  6247. "count" : 65
  6248. },
  6249. {
  6250. "bufferView" : 212,
  6251. "componentType" : 5126,
  6252. "type" : "VEC4",
  6253. "count" : 65
  6254. },
  6255. {
  6256. "bufferView" : 213,
  6257. "componentType" : 5126,
  6258. "type" : "VEC3",
  6259. "count" : 65
  6260. },
  6261. {
  6262. "bufferView" : 214,
  6263. "componentType" : 5126,
  6264. "type" : "VEC3",
  6265. "count" : 65
  6266. },
  6267. {
  6268. "bufferView" : 215,
  6269. "componentType" : 5126,
  6270. "type" : "VEC4",
  6271. "count" : 65
  6272. },
  6273. {
  6274. "bufferView" : 216,
  6275. "componentType" : 5126,
  6276. "type" : "VEC3",
  6277. "count" : 65
  6278. },
  6279. {
  6280. "bufferView" : 217,
  6281. "componentType" : 5126,
  6282. "type" : "VEC3",
  6283. "count" : 65
  6284. },
  6285. {
  6286. "bufferView" : 218,
  6287. "componentType" : 5126,
  6288. "type" : "VEC4",
  6289. "count" : 65
  6290. },
  6291. {
  6292. "bufferView" : 219,
  6293. "componentType" : 5126,
  6294. "type" : "VEC3",
  6295. "count" : 65
  6296. },
  6297. {
  6298. "bufferView" : 220,
  6299. "componentType" : 5126,
  6300. "type" : "VEC3",
  6301. "count" : 65
  6302. },
  6303. {
  6304. "bufferView" : 221,
  6305. "componentType" : 5126,
  6306. "type" : "VEC4",
  6307. "count" : 65
  6308. },
  6309. {
  6310. "bufferView" : 222,
  6311. "componentType" : 5126,
  6312. "type" : "VEC3",
  6313. "count" : 65
  6314. },
  6315. {
  6316. "bufferView" : 223,
  6317. "componentType" : 5126,
  6318. "type" : "VEC3",
  6319. "count" : 65
  6320. },
  6321. {
  6322. "bufferView" : 224,
  6323. "componentType" : 5126,
  6324. "type" : "VEC4",
  6325. "count" : 65
  6326. },
  6327. {
  6328. "bufferView" : 225,
  6329. "componentType" : 5126,
  6330. "type" : "VEC3",
  6331. "count" : 65
  6332. },
  6333. {
  6334. "bufferView" : 226,
  6335. "componentType" : 5126,
  6336. "type" : "VEC3",
  6337. "count" : 65
  6338. },
  6339. {
  6340. "bufferView" : 227,
  6341. "componentType" : 5126,
  6342. "type" : "VEC4",
  6343. "count" : 65
  6344. },
  6345. {
  6346. "bufferView" : 228,
  6347. "componentType" : 5126,
  6348. "type" : "VEC3",
  6349. "count" : 65
  6350. },
  6351. {
  6352. "bufferView" : 229,
  6353. "componentType" : 5126,
  6354. "type" : "VEC3",
  6355. "count" : 65
  6356. },
  6357. {
  6358. "bufferView" : 230,
  6359. "componentType" : 5126,
  6360. "type" : "VEC4",
  6361. "count" : 65
  6362. },
  6363. {
  6364. "bufferView" : 231,
  6365. "componentType" : 5126,
  6366. "type" : "VEC3",
  6367. "count" : 65
  6368. },
  6369. {
  6370. "bufferView" : 232,
  6371. "componentType" : 5126,
  6372. "type" : "VEC3",
  6373. "count" : 65
  6374. },
  6375. {
  6376. "bufferView" : 233,
  6377. "componentType" : 5126,
  6378. "type" : "VEC4",
  6379. "count" : 65
  6380. },
  6381. {
  6382. "bufferView" : 234,
  6383. "componentType" : 5126,
  6384. "type" : "VEC3",
  6385. "count" : 65
  6386. },
  6387. {
  6388. "bufferView" : 235,
  6389. "componentType" : 5126,
  6390. "type" : "VEC3",
  6391. "count" : 65
  6392. },
  6393. {
  6394. "bufferView" : 236,
  6395. "componentType" : 5126,
  6396. "type" : "VEC4",
  6397. "count" : 65
  6398. },
  6399. {
  6400. "bufferView" : 237,
  6401. "componentType" : 5126,
  6402. "type" : "VEC3",
  6403. "count" : 65
  6404. },
  6405. {
  6406. "bufferView" : 238,
  6407. "componentType" : 5126,
  6408. "max" : [
  6409. 1.0833333333333333
  6410. ],
  6411. "type" : "SCALAR",
  6412. "min" : [
  6413. 0
  6414. ],
  6415. "count" : 27
  6416. },
  6417. {
  6418. "bufferView" : 239,
  6419. "componentType" : 5126,
  6420. "type" : "VEC3",
  6421. "count" : 27
  6422. },
  6423. {
  6424. "bufferView" : 240,
  6425. "componentType" : 5126,
  6426. "type" : "VEC4",
  6427. "count" : 27
  6428. },
  6429. {
  6430. "bufferView" : 241,
  6431. "componentType" : 5126,
  6432. "type" : "VEC3",
  6433. "count" : 27
  6434. },
  6435. {
  6436. "bufferView" : 242,
  6437. "componentType" : 5126,
  6438. "type" : "VEC3",
  6439. "count" : 27
  6440. },
  6441. {
  6442. "bufferView" : 243,
  6443. "componentType" : 5126,
  6444. "type" : "VEC4",
  6445. "count" : 27
  6446. },
  6447. {
  6448. "bufferView" : 244,
  6449. "componentType" : 5126,
  6450. "type" : "VEC3",
  6451. "count" : 27
  6452. },
  6453. {
  6454. "bufferView" : 245,
  6455. "componentType" : 5126,
  6456. "type" : "VEC3",
  6457. "count" : 27
  6458. },
  6459. {
  6460. "bufferView" : 246,
  6461. "componentType" : 5126,
  6462. "type" : "VEC4",
  6463. "count" : 27
  6464. },
  6465. {
  6466. "bufferView" : 247,
  6467. "componentType" : 5126,
  6468. "type" : "VEC3",
  6469. "count" : 27
  6470. },
  6471. {
  6472. "bufferView" : 248,
  6473. "componentType" : 5126,
  6474. "type" : "VEC3",
  6475. "count" : 27
  6476. },
  6477. {
  6478. "bufferView" : 249,
  6479. "componentType" : 5126,
  6480. "type" : "VEC4",
  6481. "count" : 27
  6482. },
  6483. {
  6484. "bufferView" : 250,
  6485. "componentType" : 5126,
  6486. "type" : "VEC3",
  6487. "count" : 27
  6488. },
  6489. {
  6490. "bufferView" : 251,
  6491. "componentType" : 5126,
  6492. "type" : "VEC3",
  6493. "count" : 27
  6494. },
  6495. {
  6496. "bufferView" : 252,
  6497. "componentType" : 5126,
  6498. "type" : "VEC4",
  6499. "count" : 27
  6500. },
  6501. {
  6502. "bufferView" : 253,
  6503. "componentType" : 5126,
  6504. "type" : "VEC3",
  6505. "count" : 27
  6506. },
  6507. {
  6508. "bufferView" : 254,
  6509. "componentType" : 5126,
  6510. "type" : "VEC3",
  6511. "count" : 27
  6512. },
  6513. {
  6514. "bufferView" : 255,
  6515. "componentType" : 5126,
  6516. "type" : "VEC4",
  6517. "count" : 27
  6518. },
  6519. {
  6520. "bufferView" : 256,
  6521. "componentType" : 5126,
  6522. "type" : "VEC3",
  6523. "count" : 27
  6524. },
  6525. {
  6526. "bufferView" : 257,
  6527. "componentType" : 5126,
  6528. "type" : "VEC3",
  6529. "count" : 27
  6530. },
  6531. {
  6532. "bufferView" : 258,
  6533. "componentType" : 5126,
  6534. "type" : "VEC4",
  6535. "count" : 27
  6536. },
  6537. {
  6538. "bufferView" : 259,
  6539. "componentType" : 5126,
  6540. "type" : "VEC3",
  6541. "count" : 27
  6542. },
  6543. {
  6544. "bufferView" : 260,
  6545. "componentType" : 5126,
  6546. "type" : "VEC3",
  6547. "count" : 27
  6548. },
  6549. {
  6550. "bufferView" : 261,
  6551. "componentType" : 5126,
  6552. "type" : "VEC4",
  6553. "count" : 27
  6554. },
  6555. {
  6556. "bufferView" : 262,
  6557. "componentType" : 5126,
  6558. "type" : "VEC3",
  6559. "count" : 27
  6560. },
  6561. {
  6562. "bufferView" : 263,
  6563. "componentType" : 5126,
  6564. "type" : "VEC3",
  6565. "count" : 27
  6566. },
  6567. {
  6568. "bufferView" : 264,
  6569. "componentType" : 5126,
  6570. "type" : "VEC4",
  6571. "count" : 27
  6572. },
  6573. {
  6574. "bufferView" : 265,
  6575. "componentType" : 5126,
  6576. "type" : "VEC3",
  6577. "count" : 27
  6578. },
  6579. {
  6580. "bufferView" : 266,
  6581. "componentType" : 5126,
  6582. "type" : "VEC3",
  6583. "count" : 27
  6584. },
  6585. {
  6586. "bufferView" : 267,
  6587. "componentType" : 5126,
  6588. "type" : "VEC4",
  6589. "count" : 27
  6590. },
  6591. {
  6592. "bufferView" : 268,
  6593. "componentType" : 5126,
  6594. "type" : "VEC3",
  6595. "count" : 27
  6596. },
  6597. {
  6598. "bufferView" : 269,
  6599. "componentType" : 5126,
  6600. "type" : "VEC3",
  6601. "count" : 27
  6602. },
  6603. {
  6604. "bufferView" : 270,
  6605. "componentType" : 5126,
  6606. "type" : "VEC4",
  6607. "count" : 27
  6608. },
  6609. {
  6610. "bufferView" : 271,
  6611. "componentType" : 5126,
  6612. "type" : "VEC3",
  6613. "count" : 27
  6614. },
  6615. {
  6616. "bufferView" : 272,
  6617. "componentType" : 5126,
  6618. "type" : "VEC3",
  6619. "count" : 27
  6620. },
  6621. {
  6622. "bufferView" : 273,
  6623. "componentType" : 5126,
  6624. "type" : "VEC4",
  6625. "count" : 27
  6626. },
  6627. {
  6628. "bufferView" : 274,
  6629. "componentType" : 5126,
  6630. "type" : "VEC3",
  6631. "count" : 27
  6632. },
  6633. {
  6634. "bufferView" : 275,
  6635. "componentType" : 5126,
  6636. "type" : "VEC3",
  6637. "count" : 27
  6638. },
  6639. {
  6640. "bufferView" : 276,
  6641. "componentType" : 5126,
  6642. "type" : "VEC4",
  6643. "count" : 27
  6644. },
  6645. {
  6646. "bufferView" : 277,
  6647. "componentType" : 5126,
  6648. "type" : "VEC3",
  6649. "count" : 27
  6650. },
  6651. {
  6652. "bufferView" : 278,
  6653. "componentType" : 5126,
  6654. "type" : "VEC3",
  6655. "count" : 27
  6656. },
  6657. {
  6658. "bufferView" : 279,
  6659. "componentType" : 5126,
  6660. "type" : "VEC4",
  6661. "count" : 27
  6662. },
  6663. {
  6664. "bufferView" : 280,
  6665. "componentType" : 5126,
  6666. "type" : "VEC3",
  6667. "count" : 27
  6668. },
  6669. {
  6670. "bufferView" : 281,
  6671. "componentType" : 5126,
  6672. "type" : "VEC3",
  6673. "count" : 27
  6674. },
  6675. {
  6676. "bufferView" : 282,
  6677. "componentType" : 5126,
  6678. "type" : "VEC4",
  6679. "count" : 27
  6680. },
  6681. {
  6682. "bufferView" : 283,
  6683. "componentType" : 5126,
  6684. "type" : "VEC3",
  6685. "count" : 27
  6686. },
  6687. {
  6688. "bufferView" : 284,
  6689. "componentType" : 5126,
  6690. "type" : "VEC3",
  6691. "count" : 27
  6692. },
  6693. {
  6694. "bufferView" : 285,
  6695. "componentType" : 5126,
  6696. "type" : "VEC4",
  6697. "count" : 27
  6698. },
  6699. {
  6700. "bufferView" : 286,
  6701. "componentType" : 5126,
  6702. "type" : "VEC3",
  6703. "count" : 27
  6704. },
  6705. {
  6706. "bufferView" : 287,
  6707. "componentType" : 5126,
  6708. "type" : "VEC3",
  6709. "count" : 27
  6710. },
  6711. {
  6712. "bufferView" : 288,
  6713. "componentType" : 5126,
  6714. "type" : "VEC4",
  6715. "count" : 27
  6716. },
  6717. {
  6718. "bufferView" : 289,
  6719. "componentType" : 5126,
  6720. "type" : "VEC3",
  6721. "count" : 27
  6722. },
  6723. {
  6724. "bufferView" : 290,
  6725. "componentType" : 5126,
  6726. "type" : "VEC3",
  6727. "count" : 27
  6728. },
  6729. {
  6730. "bufferView" : 291,
  6731. "componentType" : 5126,
  6732. "type" : "VEC4",
  6733. "count" : 27
  6734. },
  6735. {
  6736. "bufferView" : 292,
  6737. "componentType" : 5126,
  6738. "type" : "VEC3",
  6739. "count" : 27
  6740. },
  6741. {
  6742. "bufferView" : 293,
  6743. "componentType" : 5126,
  6744. "type" : "VEC3",
  6745. "count" : 27
  6746. },
  6747. {
  6748. "bufferView" : 294,
  6749. "componentType" : 5126,
  6750. "type" : "VEC4",
  6751. "count" : 27
  6752. },
  6753. {
  6754. "bufferView" : 295,
  6755. "componentType" : 5126,
  6756. "type" : "VEC3",
  6757. "count" : 27
  6758. },
  6759. {
  6760. "bufferView" : 296,
  6761. "componentType" : 5126,
  6762. "type" : "VEC3",
  6763. "count" : 27
  6764. },
  6765. {
  6766. "bufferView" : 297,
  6767. "componentType" : 5126,
  6768. "type" : "VEC4",
  6769. "count" : 27
  6770. },
  6771. {
  6772. "bufferView" : 298,
  6773. "componentType" : 5126,
  6774. "type" : "VEC3",
  6775. "count" : 27
  6776. },
  6777. {
  6778. "bufferView" : 299,
  6779. "componentType" : 5126,
  6780. "type" : "VEC3",
  6781. "count" : 27
  6782. },
  6783. {
  6784. "bufferView" : 300,
  6785. "componentType" : 5126,
  6786. "type" : "VEC4",
  6787. "count" : 27
  6788. },
  6789. {
  6790. "bufferView" : 301,
  6791. "componentType" : 5126,
  6792. "type" : "VEC3",
  6793. "count" : 27
  6794. },
  6795. {
  6796. "bufferView" : 302,
  6797. "componentType" : 5126,
  6798. "type" : "VEC3",
  6799. "count" : 27
  6800. },
  6801. {
  6802. "bufferView" : 303,
  6803. "componentType" : 5126,
  6804. "type" : "VEC4",
  6805. "count" : 27
  6806. },
  6807. {
  6808. "bufferView" : 304,
  6809. "componentType" : 5126,
  6810. "type" : "VEC3",
  6811. "count" : 27
  6812. },
  6813. {
  6814. "bufferView" : 305,
  6815. "componentType" : 5126,
  6816. "type" : "VEC3",
  6817. "count" : 27
  6818. },
  6819. {
  6820. "bufferView" : 306,
  6821. "componentType" : 5126,
  6822. "type" : "VEC4",
  6823. "count" : 27
  6824. },
  6825. {
  6826. "bufferView" : 307,
  6827. "componentType" : 5126,
  6828. "type" : "VEC3",
  6829. "count" : 27
  6830. },
  6831. {
  6832. "bufferView" : 308,
  6833. "componentType" : 5126,
  6834. "type" : "VEC3",
  6835. "count" : 27
  6836. },
  6837. {
  6838. "bufferView" : 309,
  6839. "componentType" : 5126,
  6840. "type" : "VEC4",
  6841. "count" : 27
  6842. },
  6843. {
  6844. "bufferView" : 310,
  6845. "componentType" : 5126,
  6846. "type" : "VEC3",
  6847. "count" : 27
  6848. },
  6849. {
  6850. "bufferView" : 311,
  6851. "componentType" : 5126,
  6852. "max" : [
  6853. 2
  6854. ],
  6855. "type" : "SCALAR",
  6856. "min" : [
  6857. 0
  6858. ],
  6859. "count" : 49
  6860. },
  6861. {
  6862. "bufferView" : 312,
  6863. "componentType" : 5126,
  6864. "type" : "VEC3",
  6865. "count" : 49
  6866. },
  6867. {
  6868. "bufferView" : 313,
  6869. "componentType" : 5126,
  6870. "type" : "VEC4",
  6871. "count" : 49
  6872. },
  6873. {
  6874. "bufferView" : 314,
  6875. "componentType" : 5126,
  6876. "type" : "VEC3",
  6877. "count" : 49
  6878. },
  6879. {
  6880. "bufferView" : 315,
  6881. "componentType" : 5126,
  6882. "type" : "VEC3",
  6883. "count" : 49
  6884. },
  6885. {
  6886. "bufferView" : 316,
  6887. "componentType" : 5126,
  6888. "type" : "VEC4",
  6889. "count" : 49
  6890. },
  6891. {
  6892. "bufferView" : 317,
  6893. "componentType" : 5126,
  6894. "type" : "VEC3",
  6895. "count" : 49
  6896. },
  6897. {
  6898. "bufferView" : 318,
  6899. "componentType" : 5126,
  6900. "type" : "VEC3",
  6901. "count" : 49
  6902. },
  6903. {
  6904. "bufferView" : 319,
  6905. "componentType" : 5126,
  6906. "type" : "VEC4",
  6907. "count" : 49
  6908. },
  6909. {
  6910. "bufferView" : 320,
  6911. "componentType" : 5126,
  6912. "type" : "VEC3",
  6913. "count" : 49
  6914. },
  6915. {
  6916. "bufferView" : 321,
  6917. "componentType" : 5126,
  6918. "type" : "VEC3",
  6919. "count" : 49
  6920. },
  6921. {
  6922. "bufferView" : 322,
  6923. "componentType" : 5126,
  6924. "type" : "VEC4",
  6925. "count" : 49
  6926. },
  6927. {
  6928. "bufferView" : 323,
  6929. "componentType" : 5126,
  6930. "type" : "VEC3",
  6931. "count" : 49
  6932. },
  6933. {
  6934. "bufferView" : 324,
  6935. "componentType" : 5126,
  6936. "type" : "VEC3",
  6937. "count" : 49
  6938. },
  6939. {
  6940. "bufferView" : 325,
  6941. "componentType" : 5126,
  6942. "type" : "VEC4",
  6943. "count" : 49
  6944. },
  6945. {
  6946. "bufferView" : 326,
  6947. "componentType" : 5126,
  6948. "type" : "VEC3",
  6949. "count" : 49
  6950. },
  6951. {
  6952. "bufferView" : 327,
  6953. "componentType" : 5126,
  6954. "type" : "VEC3",
  6955. "count" : 49
  6956. },
  6957. {
  6958. "bufferView" : 328,
  6959. "componentType" : 5126,
  6960. "type" : "VEC4",
  6961. "count" : 49
  6962. },
  6963. {
  6964. "bufferView" : 329,
  6965. "componentType" : 5126,
  6966. "type" : "VEC3",
  6967. "count" : 49
  6968. },
  6969. {
  6970. "bufferView" : 330,
  6971. "componentType" : 5126,
  6972. "type" : "VEC3",
  6973. "count" : 49
  6974. },
  6975. {
  6976. "bufferView" : 331,
  6977. "componentType" : 5126,
  6978. "type" : "VEC4",
  6979. "count" : 49
  6980. },
  6981. {
  6982. "bufferView" : 332,
  6983. "componentType" : 5126,
  6984. "type" : "VEC3",
  6985. "count" : 49
  6986. },
  6987. {
  6988. "bufferView" : 333,
  6989. "componentType" : 5126,
  6990. "type" : "VEC3",
  6991. "count" : 49
  6992. },
  6993. {
  6994. "bufferView" : 334,
  6995. "componentType" : 5126,
  6996. "type" : "VEC4",
  6997. "count" : 49
  6998. },
  6999. {
  7000. "bufferView" : 335,
  7001. "componentType" : 5126,
  7002. "type" : "VEC3",
  7003. "count" : 49
  7004. },
  7005. {
  7006. "bufferView" : 336,
  7007. "componentType" : 5126,
  7008. "type" : "VEC3",
  7009. "count" : 49
  7010. },
  7011. {
  7012. "bufferView" : 337,
  7013. "componentType" : 5126,
  7014. "type" : "VEC4",
  7015. "count" : 49
  7016. },
  7017. {
  7018. "bufferView" : 338,
  7019. "componentType" : 5126,
  7020. "type" : "VEC3",
  7021. "count" : 49
  7022. },
  7023. {
  7024. "bufferView" : 339,
  7025. "componentType" : 5126,
  7026. "type" : "VEC3",
  7027. "count" : 49
  7028. },
  7029. {
  7030. "bufferView" : 340,
  7031. "componentType" : 5126,
  7032. "type" : "VEC4",
  7033. "count" : 49
  7034. },
  7035. {
  7036. "bufferView" : 341,
  7037. "componentType" : 5126,
  7038. "type" : "VEC3",
  7039. "count" : 49
  7040. },
  7041. {
  7042. "bufferView" : 342,
  7043. "componentType" : 5126,
  7044. "type" : "VEC3",
  7045. "count" : 49
  7046. },
  7047. {
  7048. "bufferView" : 343,
  7049. "componentType" : 5126,
  7050. "type" : "VEC4",
  7051. "count" : 49
  7052. },
  7053. {
  7054. "bufferView" : 344,
  7055. "componentType" : 5126,
  7056. "type" : "VEC3",
  7057. "count" : 49
  7058. },
  7059. {
  7060. "bufferView" : 345,
  7061. "componentType" : 5126,
  7062. "type" : "VEC3",
  7063. "count" : 49
  7064. },
  7065. {
  7066. "bufferView" : 346,
  7067. "componentType" : 5126,
  7068. "type" : "VEC4",
  7069. "count" : 49
  7070. },
  7071. {
  7072. "bufferView" : 347,
  7073. "componentType" : 5126,
  7074. "type" : "VEC3",
  7075. "count" : 49
  7076. },
  7077. {
  7078. "bufferView" : 348,
  7079. "componentType" : 5126,
  7080. "type" : "VEC3",
  7081. "count" : 49
  7082. },
  7083. {
  7084. "bufferView" : 349,
  7085. "componentType" : 5126,
  7086. "type" : "VEC4",
  7087. "count" : 49
  7088. },
  7089. {
  7090. "bufferView" : 350,
  7091. "componentType" : 5126,
  7092. "type" : "VEC3",
  7093. "count" : 49
  7094. },
  7095. {
  7096. "bufferView" : 351,
  7097. "componentType" : 5126,
  7098. "type" : "VEC3",
  7099. "count" : 49
  7100. },
  7101. {
  7102. "bufferView" : 352,
  7103. "componentType" : 5126,
  7104. "type" : "VEC4",
  7105. "count" : 49
  7106. },
  7107. {
  7108. "bufferView" : 353,
  7109. "componentType" : 5126,
  7110. "type" : "VEC3",
  7111. "count" : 49
  7112. },
  7113. {
  7114. "bufferView" : 354,
  7115. "componentType" : 5126,
  7116. "type" : "VEC3",
  7117. "count" : 49
  7118. },
  7119. {
  7120. "bufferView" : 355,
  7121. "componentType" : 5126,
  7122. "type" : "VEC4",
  7123. "count" : 49
  7124. },
  7125. {
  7126. "bufferView" : 356,
  7127. "componentType" : 5126,
  7128. "type" : "VEC3",
  7129. "count" : 49
  7130. },
  7131. {
  7132. "bufferView" : 357,
  7133. "componentType" : 5126,
  7134. "type" : "VEC3",
  7135. "count" : 49
  7136. },
  7137. {
  7138. "bufferView" : 358,
  7139. "componentType" : 5126,
  7140. "type" : "VEC4",
  7141. "count" : 49
  7142. },
  7143. {
  7144. "bufferView" : 359,
  7145. "componentType" : 5126,
  7146. "type" : "VEC3",
  7147. "count" : 49
  7148. },
  7149. {
  7150. "bufferView" : 360,
  7151. "componentType" : 5126,
  7152. "type" : "VEC3",
  7153. "count" : 49
  7154. },
  7155. {
  7156. "bufferView" : 361,
  7157. "componentType" : 5126,
  7158. "type" : "VEC4",
  7159. "count" : 49
  7160. },
  7161. {
  7162. "bufferView" : 362,
  7163. "componentType" : 5126,
  7164. "type" : "VEC3",
  7165. "count" : 49
  7166. },
  7167. {
  7168. "bufferView" : 363,
  7169. "componentType" : 5126,
  7170. "type" : "VEC3",
  7171. "count" : 49
  7172. },
  7173. {
  7174. "bufferView" : 364,
  7175. "componentType" : 5126,
  7176. "type" : "VEC4",
  7177. "count" : 49
  7178. },
  7179. {
  7180. "bufferView" : 365,
  7181. "componentType" : 5126,
  7182. "type" : "VEC3",
  7183. "count" : 49
  7184. },
  7185. {
  7186. "bufferView" : 366,
  7187. "componentType" : 5126,
  7188. "type" : "VEC3",
  7189. "count" : 49
  7190. },
  7191. {
  7192. "bufferView" : 367,
  7193. "componentType" : 5126,
  7194. "type" : "VEC4",
  7195. "count" : 49
  7196. },
  7197. {
  7198. "bufferView" : 368,
  7199. "componentType" : 5126,
  7200. "type" : "VEC3",
  7201. "count" : 49
  7202. },
  7203. {
  7204. "bufferView" : 369,
  7205. "componentType" : 5126,
  7206. "type" : "VEC3",
  7207. "count" : 49
  7208. },
  7209. {
  7210. "bufferView" : 370,
  7211. "componentType" : 5126,
  7212. "type" : "VEC4",
  7213. "count" : 49
  7214. },
  7215. {
  7216. "bufferView" : 371,
  7217. "componentType" : 5126,
  7218. "type" : "VEC3",
  7219. "count" : 49
  7220. },
  7221. {
  7222. "bufferView" : 372,
  7223. "componentType" : 5126,
  7224. "type" : "VEC3",
  7225. "count" : 49
  7226. },
  7227. {
  7228. "bufferView" : 373,
  7229. "componentType" : 5126,
  7230. "type" : "VEC4",
  7231. "count" : 49
  7232. },
  7233. {
  7234. "bufferView" : 374,
  7235. "componentType" : 5126,
  7236. "type" : "VEC3",
  7237. "count" : 49
  7238. },
  7239. {
  7240. "bufferView" : 375,
  7241. "componentType" : 5126,
  7242. "type" : "VEC3",
  7243. "count" : 49
  7244. },
  7245. {
  7246. "bufferView" : 376,
  7247. "componentType" : 5126,
  7248. "type" : "VEC4",
  7249. "count" : 49
  7250. },
  7251. {
  7252. "bufferView" : 377,
  7253. "componentType" : 5126,
  7254. "type" : "VEC3",
  7255. "count" : 49
  7256. },
  7257. {
  7258. "bufferView" : 378,
  7259. "componentType" : 5126,
  7260. "type" : "VEC3",
  7261. "count" : 49
  7262. },
  7263. {
  7264. "bufferView" : 379,
  7265. "componentType" : 5126,
  7266. "type" : "VEC4",
  7267. "count" : 49
  7268. },
  7269. {
  7270. "bufferView" : 380,
  7271. "componentType" : 5126,
  7272. "type" : "VEC3",
  7273. "count" : 49
  7274. },
  7275. {
  7276. "bufferView" : 381,
  7277. "componentType" : 5126,
  7278. "type" : "VEC3",
  7279. "count" : 49
  7280. },
  7281. {
  7282. "bufferView" : 382,
  7283. "componentType" : 5126,
  7284. "type" : "VEC4",
  7285. "count" : 49
  7286. },
  7287. {
  7288. "bufferView" : 383,
  7289. "componentType" : 5126,
  7290. "type" : "VEC3",
  7291. "count" : 49
  7292. }
  7293. ],
  7294. "bufferViews" : [
  7295. {
  7296. "buffer" : 0,
  7297. "byteOffset" : 0,
  7298. "byteLength" : 9000
  7299. },
  7300. {
  7301. "buffer" : 0,
  7302. "byteOffset" : 9000,
  7303. "byteLength" : 6000
  7304. },
  7305. {
  7306. "buffer" : 0,
  7307. "byteOffset" : 15000,
  7308. "byteLength" : 12000
  7309. },
  7310. {
  7311. "buffer" : 0,
  7312. "byteOffset" : 27000,
  7313. "byteLength" : 12000
  7314. },
  7315. {
  7316. "buffer" : 0,
  7317. "byteOffset" : 39000,
  7318. "byteLength" : 9000
  7319. },
  7320. {
  7321. "buffer" : 0,
  7322. "byteOffset" : 48000,
  7323. "byteLength" : 2196
  7324. },
  7325. {
  7326. "buffer" : 0,
  7327. "byteOffset" : 50196,
  7328. "byteLength" : 4176
  7329. },
  7330. {
  7331. "buffer" : 0,
  7332. "byteOffset" : 54372,
  7333. "byteLength" : 2784
  7334. },
  7335. {
  7336. "buffer" : 0,
  7337. "byteOffset" : 57156,
  7338. "byteLength" : 5568
  7339. },
  7340. {
  7341. "buffer" : 0,
  7342. "byteOffset" : 62724,
  7343. "byteLength" : 5568
  7344. },
  7345. {
  7346. "buffer" : 0,
  7347. "byteOffset" : 68292,
  7348. "byteLength" : 4176
  7349. },
  7350. {
  7351. "buffer" : 0,
  7352. "byteOffset" : 72468,
  7353. "byteLength" : 1008
  7354. },
  7355. {
  7356. "buffer" : 0,
  7357. "byteOffset" : 73476,
  7358. "byteLength" : 3216
  7359. },
  7360. {
  7361. "buffer" : 0,
  7362. "byteOffset" : 76692,
  7363. "byteLength" : 2144
  7364. },
  7365. {
  7366. "buffer" : 0,
  7367. "byteOffset" : 78836,
  7368. "byteLength" : 4288
  7369. },
  7370. {
  7371. "buffer" : 0,
  7372. "byteOffset" : 83124,
  7373. "byteLength" : 4288
  7374. },
  7375. {
  7376. "buffer" : 0,
  7377. "byteOffset" : 87412,
  7378. "byteLength" : 3216
  7379. },
  7380. {
  7381. "buffer" : 0,
  7382. "byteOffset" : 90628,
  7383. "byteLength" : 768
  7384. },
  7385. {
  7386. "buffer" : 0,
  7387. "byteOffset" : 91396,
  7388. "byteLength" : 1536
  7389. },
  7390. {
  7391. "buffer" : 0,
  7392. "byteOffset" : 92932,
  7393. "byteLength" : 112
  7394. },
  7395. {
  7396. "buffer" : 0,
  7397. "byteOffset" : 93044,
  7398. "byteLength" : 336
  7399. },
  7400. {
  7401. "buffer" : 0,
  7402. "byteOffset" : 93380,
  7403. "byteLength" : 448
  7404. },
  7405. {
  7406. "buffer" : 0,
  7407. "byteOffset" : 93828,
  7408. "byteLength" : 336
  7409. },
  7410. {
  7411. "buffer" : 0,
  7412. "byteOffset" : 94164,
  7413. "byteLength" : 336
  7414. },
  7415. {
  7416. "buffer" : 0,
  7417. "byteOffset" : 94500,
  7418. "byteLength" : 448
  7419. },
  7420. {
  7421. "buffer" : 0,
  7422. "byteOffset" : 94948,
  7423. "byteLength" : 336
  7424. },
  7425. {
  7426. "buffer" : 0,
  7427. "byteOffset" : 95284,
  7428. "byteLength" : 336
  7429. },
  7430. {
  7431. "buffer" : 0,
  7432. "byteOffset" : 95620,
  7433. "byteLength" : 448
  7434. },
  7435. {
  7436. "buffer" : 0,
  7437. "byteOffset" : 96068,
  7438. "byteLength" : 336
  7439. },
  7440. {
  7441. "buffer" : 0,
  7442. "byteOffset" : 96404,
  7443. "byteLength" : 336
  7444. },
  7445. {
  7446. "buffer" : 0,
  7447. "byteOffset" : 96740,
  7448. "byteLength" : 448
  7449. },
  7450. {
  7451. "buffer" : 0,
  7452. "byteOffset" : 97188,
  7453. "byteLength" : 336
  7454. },
  7455. {
  7456. "buffer" : 0,
  7457. "byteOffset" : 97524,
  7458. "byteLength" : 336
  7459. },
  7460. {
  7461. "buffer" : 0,
  7462. "byteOffset" : 97860,
  7463. "byteLength" : 448
  7464. },
  7465. {
  7466. "buffer" : 0,
  7467. "byteOffset" : 98308,
  7468. "byteLength" : 336
  7469. },
  7470. {
  7471. "buffer" : 0,
  7472. "byteOffset" : 98644,
  7473. "byteLength" : 336
  7474. },
  7475. {
  7476. "buffer" : 0,
  7477. "byteOffset" : 98980,
  7478. "byteLength" : 448
  7479. },
  7480. {
  7481. "buffer" : 0,
  7482. "byteOffset" : 99428,
  7483. "byteLength" : 336
  7484. },
  7485. {
  7486. "buffer" : 0,
  7487. "byteOffset" : 99764,
  7488. "byteLength" : 336
  7489. },
  7490. {
  7491. "buffer" : 0,
  7492. "byteOffset" : 100100,
  7493. "byteLength" : 448
  7494. },
  7495. {
  7496. "buffer" : 0,
  7497. "byteOffset" : 100548,
  7498. "byteLength" : 336
  7499. },
  7500. {
  7501. "buffer" : 0,
  7502. "byteOffset" : 100884,
  7503. "byteLength" : 336
  7504. },
  7505. {
  7506. "buffer" : 0,
  7507. "byteOffset" : 101220,
  7508. "byteLength" : 448
  7509. },
  7510. {
  7511. "buffer" : 0,
  7512. "byteOffset" : 101668,
  7513. "byteLength" : 336
  7514. },
  7515. {
  7516. "buffer" : 0,
  7517. "byteOffset" : 102004,
  7518. "byteLength" : 336
  7519. },
  7520. {
  7521. "buffer" : 0,
  7522. "byteOffset" : 102340,
  7523. "byteLength" : 448
  7524. },
  7525. {
  7526. "buffer" : 0,
  7527. "byteOffset" : 102788,
  7528. "byteLength" : 336
  7529. },
  7530. {
  7531. "buffer" : 0,
  7532. "byteOffset" : 103124,
  7533. "byteLength" : 336
  7534. },
  7535. {
  7536. "buffer" : 0,
  7537. "byteOffset" : 103460,
  7538. "byteLength" : 448
  7539. },
  7540. {
  7541. "buffer" : 0,
  7542. "byteOffset" : 103908,
  7543. "byteLength" : 336
  7544. },
  7545. {
  7546. "buffer" : 0,
  7547. "byteOffset" : 104244,
  7548. "byteLength" : 336
  7549. },
  7550. {
  7551. "buffer" : 0,
  7552. "byteOffset" : 104580,
  7553. "byteLength" : 448
  7554. },
  7555. {
  7556. "buffer" : 0,
  7557. "byteOffset" : 105028,
  7558. "byteLength" : 336
  7559. },
  7560. {
  7561. "buffer" : 0,
  7562. "byteOffset" : 105364,
  7563. "byteLength" : 336
  7564. },
  7565. {
  7566. "buffer" : 0,
  7567. "byteOffset" : 105700,
  7568. "byteLength" : 448
  7569. },
  7570. {
  7571. "buffer" : 0,
  7572. "byteOffset" : 106148,
  7573. "byteLength" : 336
  7574. },
  7575. {
  7576. "buffer" : 0,
  7577. "byteOffset" : 106484,
  7578. "byteLength" : 336
  7579. },
  7580. {
  7581. "buffer" : 0,
  7582. "byteOffset" : 106820,
  7583. "byteLength" : 448
  7584. },
  7585. {
  7586. "buffer" : 0,
  7587. "byteOffset" : 107268,
  7588. "byteLength" : 336
  7589. },
  7590. {
  7591. "buffer" : 0,
  7592. "byteOffset" : 107604,
  7593. "byteLength" : 336
  7594. },
  7595. {
  7596. "buffer" : 0,
  7597. "byteOffset" : 107940,
  7598. "byteLength" : 448
  7599. },
  7600. {
  7601. "buffer" : 0,
  7602. "byteOffset" : 108388,
  7603. "byteLength" : 336
  7604. },
  7605. {
  7606. "buffer" : 0,
  7607. "byteOffset" : 108724,
  7608. "byteLength" : 336
  7609. },
  7610. {
  7611. "buffer" : 0,
  7612. "byteOffset" : 109060,
  7613. "byteLength" : 448
  7614. },
  7615. {
  7616. "buffer" : 0,
  7617. "byteOffset" : 109508,
  7618. "byteLength" : 336
  7619. },
  7620. {
  7621. "buffer" : 0,
  7622. "byteOffset" : 109844,
  7623. "byteLength" : 336
  7624. },
  7625. {
  7626. "buffer" : 0,
  7627. "byteOffset" : 110180,
  7628. "byteLength" : 448
  7629. },
  7630. {
  7631. "buffer" : 0,
  7632. "byteOffset" : 110628,
  7633. "byteLength" : 336
  7634. },
  7635. {
  7636. "buffer" : 0,
  7637. "byteOffset" : 110964,
  7638. "byteLength" : 336
  7639. },
  7640. {
  7641. "buffer" : 0,
  7642. "byteOffset" : 111300,
  7643. "byteLength" : 448
  7644. },
  7645. {
  7646. "buffer" : 0,
  7647. "byteOffset" : 111748,
  7648. "byteLength" : 336
  7649. },
  7650. {
  7651. "buffer" : 0,
  7652. "byteOffset" : 112084,
  7653. "byteLength" : 336
  7654. },
  7655. {
  7656. "buffer" : 0,
  7657. "byteOffset" : 112420,
  7658. "byteLength" : 448
  7659. },
  7660. {
  7661. "buffer" : 0,
  7662. "byteOffset" : 112868,
  7663. "byteLength" : 336
  7664. },
  7665. {
  7666. "buffer" : 0,
  7667. "byteOffset" : 113204,
  7668. "byteLength" : 336
  7669. },
  7670. {
  7671. "buffer" : 0,
  7672. "byteOffset" : 113540,
  7673. "byteLength" : 448
  7674. },
  7675. {
  7676. "buffer" : 0,
  7677. "byteOffset" : 113988,
  7678. "byteLength" : 336
  7679. },
  7680. {
  7681. "buffer" : 0,
  7682. "byteOffset" : 114324,
  7683. "byteLength" : 336
  7684. },
  7685. {
  7686. "buffer" : 0,
  7687. "byteOffset" : 114660,
  7688. "byteLength" : 448
  7689. },
  7690. {
  7691. "buffer" : 0,
  7692. "byteOffset" : 115108,
  7693. "byteLength" : 336
  7694. },
  7695. {
  7696. "buffer" : 0,
  7697. "byteOffset" : 115444,
  7698. "byteLength" : 336
  7699. },
  7700. {
  7701. "buffer" : 0,
  7702. "byteOffset" : 115780,
  7703. "byteLength" : 448
  7704. },
  7705. {
  7706. "buffer" : 0,
  7707. "byteOffset" : 116228,
  7708. "byteLength" : 336
  7709. },
  7710. {
  7711. "buffer" : 0,
  7712. "byteOffset" : 116564,
  7713. "byteLength" : 336
  7714. },
  7715. {
  7716. "buffer" : 0,
  7717. "byteOffset" : 116900,
  7718. "byteLength" : 448
  7719. },
  7720. {
  7721. "buffer" : 0,
  7722. "byteOffset" : 117348,
  7723. "byteLength" : 336
  7724. },
  7725. {
  7726. "buffer" : 0,
  7727. "byteOffset" : 117684,
  7728. "byteLength" : 336
  7729. },
  7730. {
  7731. "buffer" : 0,
  7732. "byteOffset" : 118020,
  7733. "byteLength" : 448
  7734. },
  7735. {
  7736. "buffer" : 0,
  7737. "byteOffset" : 118468,
  7738. "byteLength" : 336
  7739. },
  7740. {
  7741. "buffer" : 0,
  7742. "byteOffset" : 118804,
  7743. "byteLength" : 336
  7744. },
  7745. {
  7746. "buffer" : 0,
  7747. "byteOffset" : 119140,
  7748. "byteLength" : 448
  7749. },
  7750. {
  7751. "buffer" : 0,
  7752. "byteOffset" : 119588,
  7753. "byteLength" : 336
  7754. },
  7755. {
  7756. "buffer" : 0,
  7757. "byteOffset" : 119924,
  7758. "byteLength" : 604
  7759. },
  7760. {
  7761. "buffer" : 0,
  7762. "byteOffset" : 120528,
  7763. "byteLength" : 1812
  7764. },
  7765. {
  7766. "buffer" : 0,
  7767. "byteOffset" : 122340,
  7768. "byteLength" : 2416
  7769. },
  7770. {
  7771. "buffer" : 0,
  7772. "byteOffset" : 124756,
  7773. "byteLength" : 1812
  7774. },
  7775. {
  7776. "buffer" : 0,
  7777. "byteOffset" : 126568,
  7778. "byteLength" : 1812
  7779. },
  7780. {
  7781. "buffer" : 0,
  7782. "byteOffset" : 128380,
  7783. "byteLength" : 2416
  7784. },
  7785. {
  7786. "buffer" : 0,
  7787. "byteOffset" : 130796,
  7788. "byteLength" : 1812
  7789. },
  7790. {
  7791. "buffer" : 0,
  7792. "byteOffset" : 132608,
  7793. "byteLength" : 1812
  7794. },
  7795. {
  7796. "buffer" : 0,
  7797. "byteOffset" : 134420,
  7798. "byteLength" : 2416
  7799. },
  7800. {
  7801. "buffer" : 0,
  7802. "byteOffset" : 136836,
  7803. "byteLength" : 1812
  7804. },
  7805. {
  7806. "buffer" : 0,
  7807. "byteOffset" : 138648,
  7808. "byteLength" : 1812
  7809. },
  7810. {
  7811. "buffer" : 0,
  7812. "byteOffset" : 140460,
  7813. "byteLength" : 2416
  7814. },
  7815. {
  7816. "buffer" : 0,
  7817. "byteOffset" : 142876,
  7818. "byteLength" : 1812
  7819. },
  7820. {
  7821. "buffer" : 0,
  7822. "byteOffset" : 144688,
  7823. "byteLength" : 1812
  7824. },
  7825. {
  7826. "buffer" : 0,
  7827. "byteOffset" : 146500,
  7828. "byteLength" : 2416
  7829. },
  7830. {
  7831. "buffer" : 0,
  7832. "byteOffset" : 148916,
  7833. "byteLength" : 1812
  7834. },
  7835. {
  7836. "buffer" : 0,
  7837. "byteOffset" : 150728,
  7838. "byteLength" : 1812
  7839. },
  7840. {
  7841. "buffer" : 0,
  7842. "byteOffset" : 152540,
  7843. "byteLength" : 2416
  7844. },
  7845. {
  7846. "buffer" : 0,
  7847. "byteOffset" : 154956,
  7848. "byteLength" : 1812
  7849. },
  7850. {
  7851. "buffer" : 0,
  7852. "byteOffset" : 156768,
  7853. "byteLength" : 1812
  7854. },
  7855. {
  7856. "buffer" : 0,
  7857. "byteOffset" : 158580,
  7858. "byteLength" : 2416
  7859. },
  7860. {
  7861. "buffer" : 0,
  7862. "byteOffset" : 160996,
  7863. "byteLength" : 1812
  7864. },
  7865. {
  7866. "buffer" : 0,
  7867. "byteOffset" : 162808,
  7868. "byteLength" : 1812
  7869. },
  7870. {
  7871. "buffer" : 0,
  7872. "byteOffset" : 164620,
  7873. "byteLength" : 2416
  7874. },
  7875. {
  7876. "buffer" : 0,
  7877. "byteOffset" : 167036,
  7878. "byteLength" : 1812
  7879. },
  7880. {
  7881. "buffer" : 0,
  7882. "byteOffset" : 168848,
  7883. "byteLength" : 1812
  7884. },
  7885. {
  7886. "buffer" : 0,
  7887. "byteOffset" : 170660,
  7888. "byteLength" : 2416
  7889. },
  7890. {
  7891. "buffer" : 0,
  7892. "byteOffset" : 173076,
  7893. "byteLength" : 1812
  7894. },
  7895. {
  7896. "buffer" : 0,
  7897. "byteOffset" : 174888,
  7898. "byteLength" : 1812
  7899. },
  7900. {
  7901. "buffer" : 0,
  7902. "byteOffset" : 176700,
  7903. "byteLength" : 2416
  7904. },
  7905. {
  7906. "buffer" : 0,
  7907. "byteOffset" : 179116,
  7908. "byteLength" : 1812
  7909. },
  7910. {
  7911. "buffer" : 0,
  7912. "byteOffset" : 180928,
  7913. "byteLength" : 1812
  7914. },
  7915. {
  7916. "buffer" : 0,
  7917. "byteOffset" : 182740,
  7918. "byteLength" : 2416
  7919. },
  7920. {
  7921. "buffer" : 0,
  7922. "byteOffset" : 185156,
  7923. "byteLength" : 1812
  7924. },
  7925. {
  7926. "buffer" : 0,
  7927. "byteOffset" : 186968,
  7928. "byteLength" : 1812
  7929. },
  7930. {
  7931. "buffer" : 0,
  7932. "byteOffset" : 188780,
  7933. "byteLength" : 2416
  7934. },
  7935. {
  7936. "buffer" : 0,
  7937. "byteOffset" : 191196,
  7938. "byteLength" : 1812
  7939. },
  7940. {
  7941. "buffer" : 0,
  7942. "byteOffset" : 193008,
  7943. "byteLength" : 1812
  7944. },
  7945. {
  7946. "buffer" : 0,
  7947. "byteOffset" : 194820,
  7948. "byteLength" : 2416
  7949. },
  7950. {
  7951. "buffer" : 0,
  7952. "byteOffset" : 197236,
  7953. "byteLength" : 1812
  7954. },
  7955. {
  7956. "buffer" : 0,
  7957. "byteOffset" : 199048,
  7958. "byteLength" : 1812
  7959. },
  7960. {
  7961. "buffer" : 0,
  7962. "byteOffset" : 200860,
  7963. "byteLength" : 2416
  7964. },
  7965. {
  7966. "buffer" : 0,
  7967. "byteOffset" : 203276,
  7968. "byteLength" : 1812
  7969. },
  7970. {
  7971. "buffer" : 0,
  7972. "byteOffset" : 205088,
  7973. "byteLength" : 1812
  7974. },
  7975. {
  7976. "buffer" : 0,
  7977. "byteOffset" : 206900,
  7978. "byteLength" : 2416
  7979. },
  7980. {
  7981. "buffer" : 0,
  7982. "byteOffset" : 209316,
  7983. "byteLength" : 1812
  7984. },
  7985. {
  7986. "buffer" : 0,
  7987. "byteOffset" : 211128,
  7988. "byteLength" : 1812
  7989. },
  7990. {
  7991. "buffer" : 0,
  7992. "byteOffset" : 212940,
  7993. "byteLength" : 2416
  7994. },
  7995. {
  7996. "buffer" : 0,
  7997. "byteOffset" : 215356,
  7998. "byteLength" : 1812
  7999. },
  8000. {
  8001. "buffer" : 0,
  8002. "byteOffset" : 217168,
  8003. "byteLength" : 1812
  8004. },
  8005. {
  8006. "buffer" : 0,
  8007. "byteOffset" : 218980,
  8008. "byteLength" : 2416
  8009. },
  8010. {
  8011. "buffer" : 0,
  8012. "byteOffset" : 221396,
  8013. "byteLength" : 1812
  8014. },
  8015. {
  8016. "buffer" : 0,
  8017. "byteOffset" : 223208,
  8018. "byteLength" : 1812
  8019. },
  8020. {
  8021. "buffer" : 0,
  8022. "byteOffset" : 225020,
  8023. "byteLength" : 2416
  8024. },
  8025. {
  8026. "buffer" : 0,
  8027. "byteOffset" : 227436,
  8028. "byteLength" : 1812
  8029. },
  8030. {
  8031. "buffer" : 0,
  8032. "byteOffset" : 229248,
  8033. "byteLength" : 1812
  8034. },
  8035. {
  8036. "buffer" : 0,
  8037. "byteOffset" : 231060,
  8038. "byteLength" : 2416
  8039. },
  8040. {
  8041. "buffer" : 0,
  8042. "byteOffset" : 233476,
  8043. "byteLength" : 1812
  8044. },
  8045. {
  8046. "buffer" : 0,
  8047. "byteOffset" : 235288,
  8048. "byteLength" : 1812
  8049. },
  8050. {
  8051. "buffer" : 0,
  8052. "byteOffset" : 237100,
  8053. "byteLength" : 2416
  8054. },
  8055. {
  8056. "buffer" : 0,
  8057. "byteOffset" : 239516,
  8058. "byteLength" : 1812
  8059. },
  8060. {
  8061. "buffer" : 0,
  8062. "byteOffset" : 241328,
  8063. "byteLength" : 1812
  8064. },
  8065. {
  8066. "buffer" : 0,
  8067. "byteOffset" : 243140,
  8068. "byteLength" : 2416
  8069. },
  8070. {
  8071. "buffer" : 0,
  8072. "byteOffset" : 245556,
  8073. "byteLength" : 1812
  8074. },
  8075. {
  8076. "buffer" : 0,
  8077. "byteOffset" : 247368,
  8078. "byteLength" : 1812
  8079. },
  8080. {
  8081. "buffer" : 0,
  8082. "byteOffset" : 249180,
  8083. "byteLength" : 2416
  8084. },
  8085. {
  8086. "buffer" : 0,
  8087. "byteOffset" : 251596,
  8088. "byteLength" : 1812
  8089. },
  8090. {
  8091. "buffer" : 0,
  8092. "byteOffset" : 253408,
  8093. "byteLength" : 1812
  8094. },
  8095. {
  8096. "buffer" : 0,
  8097. "byteOffset" : 255220,
  8098. "byteLength" : 2416
  8099. },
  8100. {
  8101. "buffer" : 0,
  8102. "byteOffset" : 257636,
  8103. "byteLength" : 1812
  8104. },
  8105. {
  8106. "buffer" : 0,
  8107. "byteOffset" : 259448,
  8108. "byteLength" : 1812
  8109. },
  8110. {
  8111. "buffer" : 0,
  8112. "byteOffset" : 261260,
  8113. "byteLength" : 2416
  8114. },
  8115. {
  8116. "buffer" : 0,
  8117. "byteOffset" : 263676,
  8118. "byteLength" : 1812
  8119. },
  8120. {
  8121. "buffer" : 0,
  8122. "byteOffset" : 265488,
  8123. "byteLength" : 260
  8124. },
  8125. {
  8126. "buffer" : 0,
  8127. "byteOffset" : 265748,
  8128. "byteLength" : 780
  8129. },
  8130. {
  8131. "buffer" : 0,
  8132. "byteOffset" : 266528,
  8133. "byteLength" : 1040
  8134. },
  8135. {
  8136. "buffer" : 0,
  8137. "byteOffset" : 267568,
  8138. "byteLength" : 780
  8139. },
  8140. {
  8141. "buffer" : 0,
  8142. "byteOffset" : 268348,
  8143. "byteLength" : 780
  8144. },
  8145. {
  8146. "buffer" : 0,
  8147. "byteOffset" : 269128,
  8148. "byteLength" : 1040
  8149. },
  8150. {
  8151. "buffer" : 0,
  8152. "byteOffset" : 270168,
  8153. "byteLength" : 780
  8154. },
  8155. {
  8156. "buffer" : 0,
  8157. "byteOffset" : 270948,
  8158. "byteLength" : 780
  8159. },
  8160. {
  8161. "buffer" : 0,
  8162. "byteOffset" : 271728,
  8163. "byteLength" : 1040
  8164. },
  8165. {
  8166. "buffer" : 0,
  8167. "byteOffset" : 272768,
  8168. "byteLength" : 780
  8169. },
  8170. {
  8171. "buffer" : 0,
  8172. "byteOffset" : 273548,
  8173. "byteLength" : 780
  8174. },
  8175. {
  8176. "buffer" : 0,
  8177. "byteOffset" : 274328,
  8178. "byteLength" : 1040
  8179. },
  8180. {
  8181. "buffer" : 0,
  8182. "byteOffset" : 275368,
  8183. "byteLength" : 780
  8184. },
  8185. {
  8186. "buffer" : 0,
  8187. "byteOffset" : 276148,
  8188. "byteLength" : 780
  8189. },
  8190. {
  8191. "buffer" : 0,
  8192. "byteOffset" : 276928,
  8193. "byteLength" : 1040
  8194. },
  8195. {
  8196. "buffer" : 0,
  8197. "byteOffset" : 277968,
  8198. "byteLength" : 780
  8199. },
  8200. {
  8201. "buffer" : 0,
  8202. "byteOffset" : 278748,
  8203. "byteLength" : 780
  8204. },
  8205. {
  8206. "buffer" : 0,
  8207. "byteOffset" : 279528,
  8208. "byteLength" : 1040
  8209. },
  8210. {
  8211. "buffer" : 0,
  8212. "byteOffset" : 280568,
  8213. "byteLength" : 780
  8214. },
  8215. {
  8216. "buffer" : 0,
  8217. "byteOffset" : 281348,
  8218. "byteLength" : 780
  8219. },
  8220. {
  8221. "buffer" : 0,
  8222. "byteOffset" : 282128,
  8223. "byteLength" : 1040
  8224. },
  8225. {
  8226. "buffer" : 0,
  8227. "byteOffset" : 283168,
  8228. "byteLength" : 780
  8229. },
  8230. {
  8231. "buffer" : 0,
  8232. "byteOffset" : 283948,
  8233. "byteLength" : 780
  8234. },
  8235. {
  8236. "buffer" : 0,
  8237. "byteOffset" : 284728,
  8238. "byteLength" : 1040
  8239. },
  8240. {
  8241. "buffer" : 0,
  8242. "byteOffset" : 285768,
  8243. "byteLength" : 780
  8244. },
  8245. {
  8246. "buffer" : 0,
  8247. "byteOffset" : 286548,
  8248. "byteLength" : 780
  8249. },
  8250. {
  8251. "buffer" : 0,
  8252. "byteOffset" : 287328,
  8253. "byteLength" : 1040
  8254. },
  8255. {
  8256. "buffer" : 0,
  8257. "byteOffset" : 288368,
  8258. "byteLength" : 780
  8259. },
  8260. {
  8261. "buffer" : 0,
  8262. "byteOffset" : 289148,
  8263. "byteLength" : 780
  8264. },
  8265. {
  8266. "buffer" : 0,
  8267. "byteOffset" : 289928,
  8268. "byteLength" : 1040
  8269. },
  8270. {
  8271. "buffer" : 0,
  8272. "byteOffset" : 290968,
  8273. "byteLength" : 780
  8274. },
  8275. {
  8276. "buffer" : 0,
  8277. "byteOffset" : 291748,
  8278. "byteLength" : 780
  8279. },
  8280. {
  8281. "buffer" : 0,
  8282. "byteOffset" : 292528,
  8283. "byteLength" : 1040
  8284. },
  8285. {
  8286. "buffer" : 0,
  8287. "byteOffset" : 293568,
  8288. "byteLength" : 780
  8289. },
  8290. {
  8291. "buffer" : 0,
  8292. "byteOffset" : 294348,
  8293. "byteLength" : 780
  8294. },
  8295. {
  8296. "buffer" : 0,
  8297. "byteOffset" : 295128,
  8298. "byteLength" : 1040
  8299. },
  8300. {
  8301. "buffer" : 0,
  8302. "byteOffset" : 296168,
  8303. "byteLength" : 780
  8304. },
  8305. {
  8306. "buffer" : 0,
  8307. "byteOffset" : 296948,
  8308. "byteLength" : 780
  8309. },
  8310. {
  8311. "buffer" : 0,
  8312. "byteOffset" : 297728,
  8313. "byteLength" : 1040
  8314. },
  8315. {
  8316. "buffer" : 0,
  8317. "byteOffset" : 298768,
  8318. "byteLength" : 780
  8319. },
  8320. {
  8321. "buffer" : 0,
  8322. "byteOffset" : 299548,
  8323. "byteLength" : 780
  8324. },
  8325. {
  8326. "buffer" : 0,
  8327. "byteOffset" : 300328,
  8328. "byteLength" : 1040
  8329. },
  8330. {
  8331. "buffer" : 0,
  8332. "byteOffset" : 301368,
  8333. "byteLength" : 780
  8334. },
  8335. {
  8336. "buffer" : 0,
  8337. "byteOffset" : 302148,
  8338. "byteLength" : 780
  8339. },
  8340. {
  8341. "buffer" : 0,
  8342. "byteOffset" : 302928,
  8343. "byteLength" : 1040
  8344. },
  8345. {
  8346. "buffer" : 0,
  8347. "byteOffset" : 303968,
  8348. "byteLength" : 780
  8349. },
  8350. {
  8351. "buffer" : 0,
  8352. "byteOffset" : 304748,
  8353. "byteLength" : 780
  8354. },
  8355. {
  8356. "buffer" : 0,
  8357. "byteOffset" : 305528,
  8358. "byteLength" : 1040
  8359. },
  8360. {
  8361. "buffer" : 0,
  8362. "byteOffset" : 306568,
  8363. "byteLength" : 780
  8364. },
  8365. {
  8366. "buffer" : 0,
  8367. "byteOffset" : 307348,
  8368. "byteLength" : 780
  8369. },
  8370. {
  8371. "buffer" : 0,
  8372. "byteOffset" : 308128,
  8373. "byteLength" : 1040
  8374. },
  8375. {
  8376. "buffer" : 0,
  8377. "byteOffset" : 309168,
  8378. "byteLength" : 780
  8379. },
  8380. {
  8381. "buffer" : 0,
  8382. "byteOffset" : 309948,
  8383. "byteLength" : 780
  8384. },
  8385. {
  8386. "buffer" : 0,
  8387. "byteOffset" : 310728,
  8388. "byteLength" : 1040
  8389. },
  8390. {
  8391. "buffer" : 0,
  8392. "byteOffset" : 311768,
  8393. "byteLength" : 780
  8394. },
  8395. {
  8396. "buffer" : 0,
  8397. "byteOffset" : 312548,
  8398. "byteLength" : 780
  8399. },
  8400. {
  8401. "buffer" : 0,
  8402. "byteOffset" : 313328,
  8403. "byteLength" : 1040
  8404. },
  8405. {
  8406. "buffer" : 0,
  8407. "byteOffset" : 314368,
  8408. "byteLength" : 780
  8409. },
  8410. {
  8411. "buffer" : 0,
  8412. "byteOffset" : 315148,
  8413. "byteLength" : 780
  8414. },
  8415. {
  8416. "buffer" : 0,
  8417. "byteOffset" : 315928,
  8418. "byteLength" : 1040
  8419. },
  8420. {
  8421. "buffer" : 0,
  8422. "byteOffset" : 316968,
  8423. "byteLength" : 780
  8424. },
  8425. {
  8426. "buffer" : 0,
  8427. "byteOffset" : 317748,
  8428. "byteLength" : 780
  8429. },
  8430. {
  8431. "buffer" : 0,
  8432. "byteOffset" : 318528,
  8433. "byteLength" : 1040
  8434. },
  8435. {
  8436. "buffer" : 0,
  8437. "byteOffset" : 319568,
  8438. "byteLength" : 780
  8439. },
  8440. {
  8441. "buffer" : 0,
  8442. "byteOffset" : 320348,
  8443. "byteLength" : 780
  8444. },
  8445. {
  8446. "buffer" : 0,
  8447. "byteOffset" : 321128,
  8448. "byteLength" : 1040
  8449. },
  8450. {
  8451. "buffer" : 0,
  8452. "byteOffset" : 322168,
  8453. "byteLength" : 780
  8454. },
  8455. {
  8456. "buffer" : 0,
  8457. "byteOffset" : 322948,
  8458. "byteLength" : 780
  8459. },
  8460. {
  8461. "buffer" : 0,
  8462. "byteOffset" : 323728,
  8463. "byteLength" : 1040
  8464. },
  8465. {
  8466. "buffer" : 0,
  8467. "byteOffset" : 324768,
  8468. "byteLength" : 780
  8469. },
  8470. {
  8471. "buffer" : 0,
  8472. "byteOffset" : 325548,
  8473. "byteLength" : 780
  8474. },
  8475. {
  8476. "buffer" : 0,
  8477. "byteOffset" : 326328,
  8478. "byteLength" : 1040
  8479. },
  8480. {
  8481. "buffer" : 0,
  8482. "byteOffset" : 327368,
  8483. "byteLength" : 780
  8484. },
  8485. {
  8486. "buffer" : 0,
  8487. "byteOffset" : 328148,
  8488. "byteLength" : 108
  8489. },
  8490. {
  8491. "buffer" : 0,
  8492. "byteOffset" : 328256,
  8493. "byteLength" : 324
  8494. },
  8495. {
  8496. "buffer" : 0,
  8497. "byteOffset" : 328580,
  8498. "byteLength" : 432
  8499. },
  8500. {
  8501. "buffer" : 0,
  8502. "byteOffset" : 329012,
  8503. "byteLength" : 324
  8504. },
  8505. {
  8506. "buffer" : 0,
  8507. "byteOffset" : 329336,
  8508. "byteLength" : 324
  8509. },
  8510. {
  8511. "buffer" : 0,
  8512. "byteOffset" : 329660,
  8513. "byteLength" : 432
  8514. },
  8515. {
  8516. "buffer" : 0,
  8517. "byteOffset" : 330092,
  8518. "byteLength" : 324
  8519. },
  8520. {
  8521. "buffer" : 0,
  8522. "byteOffset" : 330416,
  8523. "byteLength" : 324
  8524. },
  8525. {
  8526. "buffer" : 0,
  8527. "byteOffset" : 330740,
  8528. "byteLength" : 432
  8529. },
  8530. {
  8531. "buffer" : 0,
  8532. "byteOffset" : 331172,
  8533. "byteLength" : 324
  8534. },
  8535. {
  8536. "buffer" : 0,
  8537. "byteOffset" : 331496,
  8538. "byteLength" : 324
  8539. },
  8540. {
  8541. "buffer" : 0,
  8542. "byteOffset" : 331820,
  8543. "byteLength" : 432
  8544. },
  8545. {
  8546. "buffer" : 0,
  8547. "byteOffset" : 332252,
  8548. "byteLength" : 324
  8549. },
  8550. {
  8551. "buffer" : 0,
  8552. "byteOffset" : 332576,
  8553. "byteLength" : 324
  8554. },
  8555. {
  8556. "buffer" : 0,
  8557. "byteOffset" : 332900,
  8558. "byteLength" : 432
  8559. },
  8560. {
  8561. "buffer" : 0,
  8562. "byteOffset" : 333332,
  8563. "byteLength" : 324
  8564. },
  8565. {
  8566. "buffer" : 0,
  8567. "byteOffset" : 333656,
  8568. "byteLength" : 324
  8569. },
  8570. {
  8571. "buffer" : 0,
  8572. "byteOffset" : 333980,
  8573. "byteLength" : 432
  8574. },
  8575. {
  8576. "buffer" : 0,
  8577. "byteOffset" : 334412,
  8578. "byteLength" : 324
  8579. },
  8580. {
  8581. "buffer" : 0,
  8582. "byteOffset" : 334736,
  8583. "byteLength" : 324
  8584. },
  8585. {
  8586. "buffer" : 0,
  8587. "byteOffset" : 335060,
  8588. "byteLength" : 432
  8589. },
  8590. {
  8591. "buffer" : 0,
  8592. "byteOffset" : 335492,
  8593. "byteLength" : 324
  8594. },
  8595. {
  8596. "buffer" : 0,
  8597. "byteOffset" : 335816,
  8598. "byteLength" : 324
  8599. },
  8600. {
  8601. "buffer" : 0,
  8602. "byteOffset" : 336140,
  8603. "byteLength" : 432
  8604. },
  8605. {
  8606. "buffer" : 0,
  8607. "byteOffset" : 336572,
  8608. "byteLength" : 324
  8609. },
  8610. {
  8611. "buffer" : 0,
  8612. "byteOffset" : 336896,
  8613. "byteLength" : 324
  8614. },
  8615. {
  8616. "buffer" : 0,
  8617. "byteOffset" : 337220,
  8618. "byteLength" : 432
  8619. },
  8620. {
  8621. "buffer" : 0,
  8622. "byteOffset" : 337652,
  8623. "byteLength" : 324
  8624. },
  8625. {
  8626. "buffer" : 0,
  8627. "byteOffset" : 337976,
  8628. "byteLength" : 324
  8629. },
  8630. {
  8631. "buffer" : 0,
  8632. "byteOffset" : 338300,
  8633. "byteLength" : 432
  8634. },
  8635. {
  8636. "buffer" : 0,
  8637. "byteOffset" : 338732,
  8638. "byteLength" : 324
  8639. },
  8640. {
  8641. "buffer" : 0,
  8642. "byteOffset" : 339056,
  8643. "byteLength" : 324
  8644. },
  8645. {
  8646. "buffer" : 0,
  8647. "byteOffset" : 339380,
  8648. "byteLength" : 432
  8649. },
  8650. {
  8651. "buffer" : 0,
  8652. "byteOffset" : 339812,
  8653. "byteLength" : 324
  8654. },
  8655. {
  8656. "buffer" : 0,
  8657. "byteOffset" : 340136,
  8658. "byteLength" : 324
  8659. },
  8660. {
  8661. "buffer" : 0,
  8662. "byteOffset" : 340460,
  8663. "byteLength" : 432
  8664. },
  8665. {
  8666. "buffer" : 0,
  8667. "byteOffset" : 340892,
  8668. "byteLength" : 324
  8669. },
  8670. {
  8671. "buffer" : 0,
  8672. "byteOffset" : 341216,
  8673. "byteLength" : 324
  8674. },
  8675. {
  8676. "buffer" : 0,
  8677. "byteOffset" : 341540,
  8678. "byteLength" : 432
  8679. },
  8680. {
  8681. "buffer" : 0,
  8682. "byteOffset" : 341972,
  8683. "byteLength" : 324
  8684. },
  8685. {
  8686. "buffer" : 0,
  8687. "byteOffset" : 342296,
  8688. "byteLength" : 324
  8689. },
  8690. {
  8691. "buffer" : 0,
  8692. "byteOffset" : 342620,
  8693. "byteLength" : 432
  8694. },
  8695. {
  8696. "buffer" : 0,
  8697. "byteOffset" : 343052,
  8698. "byteLength" : 324
  8699. },
  8700. {
  8701. "buffer" : 0,
  8702. "byteOffset" : 343376,
  8703. "byteLength" : 324
  8704. },
  8705. {
  8706. "buffer" : 0,
  8707. "byteOffset" : 343700,
  8708. "byteLength" : 432
  8709. },
  8710. {
  8711. "buffer" : 0,
  8712. "byteOffset" : 344132,
  8713. "byteLength" : 324
  8714. },
  8715. {
  8716. "buffer" : 0,
  8717. "byteOffset" : 344456,
  8718. "byteLength" : 324
  8719. },
  8720. {
  8721. "buffer" : 0,
  8722. "byteOffset" : 344780,
  8723. "byteLength" : 432
  8724. },
  8725. {
  8726. "buffer" : 0,
  8727. "byteOffset" : 345212,
  8728. "byteLength" : 324
  8729. },
  8730. {
  8731. "buffer" : 0,
  8732. "byteOffset" : 345536,
  8733. "byteLength" : 324
  8734. },
  8735. {
  8736. "buffer" : 0,
  8737. "byteOffset" : 345860,
  8738. "byteLength" : 432
  8739. },
  8740. {
  8741. "buffer" : 0,
  8742. "byteOffset" : 346292,
  8743. "byteLength" : 324
  8744. },
  8745. {
  8746. "buffer" : 0,
  8747. "byteOffset" : 346616,
  8748. "byteLength" : 324
  8749. },
  8750. {
  8751. "buffer" : 0,
  8752. "byteOffset" : 346940,
  8753. "byteLength" : 432
  8754. },
  8755. {
  8756. "buffer" : 0,
  8757. "byteOffset" : 347372,
  8758. "byteLength" : 324
  8759. },
  8760. {
  8761. "buffer" : 0,
  8762. "byteOffset" : 347696,
  8763. "byteLength" : 324
  8764. },
  8765. {
  8766. "buffer" : 0,
  8767. "byteOffset" : 348020,
  8768. "byteLength" : 432
  8769. },
  8770. {
  8771. "buffer" : 0,
  8772. "byteOffset" : 348452,
  8773. "byteLength" : 324
  8774. },
  8775. {
  8776. "buffer" : 0,
  8777. "byteOffset" : 348776,
  8778. "byteLength" : 324
  8779. },
  8780. {
  8781. "buffer" : 0,
  8782. "byteOffset" : 349100,
  8783. "byteLength" : 432
  8784. },
  8785. {
  8786. "buffer" : 0,
  8787. "byteOffset" : 349532,
  8788. "byteLength" : 324
  8789. },
  8790. {
  8791. "buffer" : 0,
  8792. "byteOffset" : 349856,
  8793. "byteLength" : 324
  8794. },
  8795. {
  8796. "buffer" : 0,
  8797. "byteOffset" : 350180,
  8798. "byteLength" : 432
  8799. },
  8800. {
  8801. "buffer" : 0,
  8802. "byteOffset" : 350612,
  8803. "byteLength" : 324
  8804. },
  8805. {
  8806. "buffer" : 0,
  8807. "byteOffset" : 350936,
  8808. "byteLength" : 324
  8809. },
  8810. {
  8811. "buffer" : 0,
  8812. "byteOffset" : 351260,
  8813. "byteLength" : 432
  8814. },
  8815. {
  8816. "buffer" : 0,
  8817. "byteOffset" : 351692,
  8818. "byteLength" : 324
  8819. },
  8820. {
  8821. "buffer" : 0,
  8822. "byteOffset" : 352016,
  8823. "byteLength" : 324
  8824. },
  8825. {
  8826. "buffer" : 0,
  8827. "byteOffset" : 352340,
  8828. "byteLength" : 432
  8829. },
  8830. {
  8831. "buffer" : 0,
  8832. "byteOffset" : 352772,
  8833. "byteLength" : 324
  8834. },
  8835. {
  8836. "buffer" : 0,
  8837. "byteOffset" : 353096,
  8838. "byteLength" : 324
  8839. },
  8840. {
  8841. "buffer" : 0,
  8842. "byteOffset" : 353420,
  8843. "byteLength" : 432
  8844. },
  8845. {
  8846. "buffer" : 0,
  8847. "byteOffset" : 353852,
  8848. "byteLength" : 324
  8849. },
  8850. {
  8851. "buffer" : 0,
  8852. "byteOffset" : 354176,
  8853. "byteLength" : 196
  8854. },
  8855. {
  8856. "buffer" : 0,
  8857. "byteOffset" : 354372,
  8858. "byteLength" : 588
  8859. },
  8860. {
  8861. "buffer" : 0,
  8862. "byteOffset" : 354960,
  8863. "byteLength" : 784
  8864. },
  8865. {
  8866. "buffer" : 0,
  8867. "byteOffset" : 355744,
  8868. "byteLength" : 588
  8869. },
  8870. {
  8871. "buffer" : 0,
  8872. "byteOffset" : 356332,
  8873. "byteLength" : 588
  8874. },
  8875. {
  8876. "buffer" : 0,
  8877. "byteOffset" : 356920,
  8878. "byteLength" : 784
  8879. },
  8880. {
  8881. "buffer" : 0,
  8882. "byteOffset" : 357704,
  8883. "byteLength" : 588
  8884. },
  8885. {
  8886. "buffer" : 0,
  8887. "byteOffset" : 358292,
  8888. "byteLength" : 588
  8889. },
  8890. {
  8891. "buffer" : 0,
  8892. "byteOffset" : 358880,
  8893. "byteLength" : 784
  8894. },
  8895. {
  8896. "buffer" : 0,
  8897. "byteOffset" : 359664,
  8898. "byteLength" : 588
  8899. },
  8900. {
  8901. "buffer" : 0,
  8902. "byteOffset" : 360252,
  8903. "byteLength" : 588
  8904. },
  8905. {
  8906. "buffer" : 0,
  8907. "byteOffset" : 360840,
  8908. "byteLength" : 784
  8909. },
  8910. {
  8911. "buffer" : 0,
  8912. "byteOffset" : 361624,
  8913. "byteLength" : 588
  8914. },
  8915. {
  8916. "buffer" : 0,
  8917. "byteOffset" : 362212,
  8918. "byteLength" : 588
  8919. },
  8920. {
  8921. "buffer" : 0,
  8922. "byteOffset" : 362800,
  8923. "byteLength" : 784
  8924. },
  8925. {
  8926. "buffer" : 0,
  8927. "byteOffset" : 363584,
  8928. "byteLength" : 588
  8929. },
  8930. {
  8931. "buffer" : 0,
  8932. "byteOffset" : 364172,
  8933. "byteLength" : 588
  8934. },
  8935. {
  8936. "buffer" : 0,
  8937. "byteOffset" : 364760,
  8938. "byteLength" : 784
  8939. },
  8940. {
  8941. "buffer" : 0,
  8942. "byteOffset" : 365544,
  8943. "byteLength" : 588
  8944. },
  8945. {
  8946. "buffer" : 0,
  8947. "byteOffset" : 366132,
  8948. "byteLength" : 588
  8949. },
  8950. {
  8951. "buffer" : 0,
  8952. "byteOffset" : 366720,
  8953. "byteLength" : 784
  8954. },
  8955. {
  8956. "buffer" : 0,
  8957. "byteOffset" : 367504,
  8958. "byteLength" : 588
  8959. },
  8960. {
  8961. "buffer" : 0,
  8962. "byteOffset" : 368092,
  8963. "byteLength" : 588
  8964. },
  8965. {
  8966. "buffer" : 0,
  8967. "byteOffset" : 368680,
  8968. "byteLength" : 784
  8969. },
  8970. {
  8971. "buffer" : 0,
  8972. "byteOffset" : 369464,
  8973. "byteLength" : 588
  8974. },
  8975. {
  8976. "buffer" : 0,
  8977. "byteOffset" : 370052,
  8978. "byteLength" : 588
  8979. },
  8980. {
  8981. "buffer" : 0,
  8982. "byteOffset" : 370640,
  8983. "byteLength" : 784
  8984. },
  8985. {
  8986. "buffer" : 0,
  8987. "byteOffset" : 371424,
  8988. "byteLength" : 588
  8989. },
  8990. {
  8991. "buffer" : 0,
  8992. "byteOffset" : 372012,
  8993. "byteLength" : 588
  8994. },
  8995. {
  8996. "buffer" : 0,
  8997. "byteOffset" : 372600,
  8998. "byteLength" : 784
  8999. },
  9000. {
  9001. "buffer" : 0,
  9002. "byteOffset" : 373384,
  9003. "byteLength" : 588
  9004. },
  9005. {
  9006. "buffer" : 0,
  9007. "byteOffset" : 373972,
  9008. "byteLength" : 588
  9009. },
  9010. {
  9011. "buffer" : 0,
  9012. "byteOffset" : 374560,
  9013. "byteLength" : 784
  9014. },
  9015. {
  9016. "buffer" : 0,
  9017. "byteOffset" : 375344,
  9018. "byteLength" : 588
  9019. },
  9020. {
  9021. "buffer" : 0,
  9022. "byteOffset" : 375932,
  9023. "byteLength" : 588
  9024. },
  9025. {
  9026. "buffer" : 0,
  9027. "byteOffset" : 376520,
  9028. "byteLength" : 784
  9029. },
  9030. {
  9031. "buffer" : 0,
  9032. "byteOffset" : 377304,
  9033. "byteLength" : 588
  9034. },
  9035. {
  9036. "buffer" : 0,
  9037. "byteOffset" : 377892,
  9038. "byteLength" : 588
  9039. },
  9040. {
  9041. "buffer" : 0,
  9042. "byteOffset" : 378480,
  9043. "byteLength" : 784
  9044. },
  9045. {
  9046. "buffer" : 0,
  9047. "byteOffset" : 379264,
  9048. "byteLength" : 588
  9049. },
  9050. {
  9051. "buffer" : 0,
  9052. "byteOffset" : 379852,
  9053. "byteLength" : 588
  9054. },
  9055. {
  9056. "buffer" : 0,
  9057. "byteOffset" : 380440,
  9058. "byteLength" : 784
  9059. },
  9060. {
  9061. "buffer" : 0,
  9062. "byteOffset" : 381224,
  9063. "byteLength" : 588
  9064. },
  9065. {
  9066. "buffer" : 0,
  9067. "byteOffset" : 381812,
  9068. "byteLength" : 588
  9069. },
  9070. {
  9071. "buffer" : 0,
  9072. "byteOffset" : 382400,
  9073. "byteLength" : 784
  9074. },
  9075. {
  9076. "buffer" : 0,
  9077. "byteOffset" : 383184,
  9078. "byteLength" : 588
  9079. },
  9080. {
  9081. "buffer" : 0,
  9082. "byteOffset" : 383772,
  9083. "byteLength" : 588
  9084. },
  9085. {
  9086. "buffer" : 0,
  9087. "byteOffset" : 384360,
  9088. "byteLength" : 784
  9089. },
  9090. {
  9091. "buffer" : 0,
  9092. "byteOffset" : 385144,
  9093. "byteLength" : 588
  9094. },
  9095. {
  9096. "buffer" : 0,
  9097. "byteOffset" : 385732,
  9098. "byteLength" : 588
  9099. },
  9100. {
  9101. "buffer" : 0,
  9102. "byteOffset" : 386320,
  9103. "byteLength" : 784
  9104. },
  9105. {
  9106. "buffer" : 0,
  9107. "byteOffset" : 387104,
  9108. "byteLength" : 588
  9109. },
  9110. {
  9111. "buffer" : 0,
  9112. "byteOffset" : 387692,
  9113. "byteLength" : 588
  9114. },
  9115. {
  9116. "buffer" : 0,
  9117. "byteOffset" : 388280,
  9118. "byteLength" : 784
  9119. },
  9120. {
  9121. "buffer" : 0,
  9122. "byteOffset" : 389064,
  9123. "byteLength" : 588
  9124. },
  9125. {
  9126. "buffer" : 0,
  9127. "byteOffset" : 389652,
  9128. "byteLength" : 588
  9129. },
  9130. {
  9131. "buffer" : 0,
  9132. "byteOffset" : 390240,
  9133. "byteLength" : 784
  9134. },
  9135. {
  9136. "buffer" : 0,
  9137. "byteOffset" : 391024,
  9138. "byteLength" : 588
  9139. },
  9140. {
  9141. "buffer" : 0,
  9142. "byteOffset" : 391612,
  9143. "byteLength" : 588
  9144. },
  9145. {
  9146. "buffer" : 0,
  9147. "byteOffset" : 392200,
  9148. "byteLength" : 784
  9149. },
  9150. {
  9151. "buffer" : 0,
  9152. "byteOffset" : 392984,
  9153. "byteLength" : 588
  9154. },
  9155. {
  9156. "buffer" : 0,
  9157. "byteOffset" : 393572,
  9158. "byteLength" : 588
  9159. },
  9160. {
  9161. "buffer" : 0,
  9162. "byteOffset" : 394160,
  9163. "byteLength" : 784
  9164. },
  9165. {
  9166. "buffer" : 0,
  9167. "byteOffset" : 394944,
  9168. "byteLength" : 588
  9169. },
  9170. {
  9171. "buffer" : 0,
  9172. "byteOffset" : 395532,
  9173. "byteLength" : 588
  9174. },
  9175. {
  9176. "buffer" : 0,
  9177. "byteOffset" : 396120,
  9178. "byteLength" : 784
  9179. },
  9180. {
  9181. "buffer" : 0,
  9182. "byteOffset" : 396904,
  9183. "byteLength" : 588
  9184. },
  9185. {
  9186. "buffer" : 0,
  9187. "byteOffset" : 397492,
  9188. "byteLength" : 588
  9189. },
  9190. {
  9191. "buffer" : 0,
  9192. "byteOffset" : 398080,
  9193. "byteLength" : 784
  9194. },
  9195. {
  9196. "buffer" : 0,
  9197. "byteOffset" : 398864,
  9198. "byteLength" : 588
  9199. },
  9200. {
  9201. "buffer" : 0,
  9202. "byteOffset" : 399452,
  9203. "byteLength" : 588
  9204. },
  9205. {
  9206. "buffer" : 0,
  9207. "byteOffset" : 400040,
  9208. "byteLength" : 784
  9209. },
  9210. {
  9211. "buffer" : 0,
  9212. "byteOffset" : 400824,
  9213. "byteLength" : 588
  9214. }
  9215. ],
  9216. "buffers" : [
  9217. {
  9218. "uri" : "Llama.bin",
  9219. "byteLength" : 401412
  9220. }
  9221. ]
  9222. }