Zebra.gltf 276 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580
  1. {
  2. "asset" : {
  3. "version" : "2.0"
  4. },
  5. "scene" : 0,
  6. "scenes" : [
  7. {
  8. "name" : "Scene",
  9. "nodes" : [
  10. 29
  11. ]
  12. }
  13. ],
  14. "nodes" : [
  15. {
  16. "rotation" : [
  17. 0.7071068286895752,
  18. -6.209645562194055e-07,
  19. -6.209645562194055e-07,
  20. 0.7071068286895752
  21. ],
  22. "translation" : [
  23. -0.9117709994316101,
  24. 0.10000348091125488,
  25. 1.927022933959961
  26. ],
  27. "name" : "FrontFoot.R"
  28. },
  29. {
  30. "rotation" : [
  31. 0.13236451148986816,
  32. -0.01881563849747181,
  33. 0.002513117855414748,
  34. 0.9910193085670471
  35. ],
  36. "translation" : [
  37. -9.313225746154785e-09,
  38. 1.4804556369781494,
  39. 1.9371509552001953e-07
  40. ],
  41. "scale" : [
  42. 1,
  43. 0.9999999403953552,
  44. 1
  45. ],
  46. "name" : "FrontLowLeg.R"
  47. },
  48. {
  49. "rotation" : [
  50. 0.7056754231452942,
  51. -0.7034597396850586,
  52. -0.04496995732188225,
  53. 0.07172393053770065
  54. ],
  55. "translation" : [
  56. 1.1551126988251781e-07,
  57. 0.6025583148002625,
  58. 2.2481287942355266e-08
  59. ],
  60. "children" : [
  61. 1
  62. ],
  63. "scale" : [
  64. 1,
  65. 0.9999998211860657,
  66. 1
  67. ],
  68. "name" : "FrontUpLeg.R"
  69. },
  70. {
  71. "rotation" : [
  72. -2.0873243045116396e-07,
  73. -7.105362698212048e-08,
  74. 0.7071068286895752,
  75. 0.7071068286895752
  76. ],
  77. "translation" : [
  78. -0.3246806859970093,
  79. 0.8379976749420166,
  80. 1.8730939626693726
  81. ],
  82. "children" : [
  83. 2
  84. ],
  85. "name" : "FrontLeg.R"
  86. },
  87. {
  88. "rotation" : [
  89. -0.35936403274536133,
  90. 0.018058467656373978,
  91. 0.0069555481895804405,
  92. 0.9329968094825745
  93. ],
  94. "translation" : [
  95. 3.725290298461914e-09,
  96. 1.0874388217926025,
  97. 1.7881393432617188e-07
  98. ],
  99. "scale" : [
  100. 1,
  101. 1.0000001192092896,
  102. 1.0000001192092896
  103. ],
  104. "name" : "BackLowLeg.R"
  105. },
  106. {
  107. "rotation" : [
  108. -0.6769958138465881,
  109. 0.6685892343521118,
  110. -0.20414824783802032,
  111. 0.23019292950630188
  112. ],
  113. "translation" : [
  114. 1.8913526389496838e-07,
  115. 0.46958300471305847,
  116. -2.5646085077823955e-07
  117. ],
  118. "children" : [
  119. 4
  120. ],
  121. "scale" : [
  122. 1,
  123. 1.0000001192092896,
  124. 0.9999999403953552
  125. ],
  126. "name" : "BackUpLeg.R"
  127. },
  128. {
  129. "rotation" : [
  130. -4.278546157365781e-07,
  131. -2.9017579095125257e-07,
  132. 0.7071068286895752,
  133. 0.7071068286895752
  134. ],
  135. "translation" : [
  136. -0.3246806859970093,
  137. 0.8379976749420166,
  138. -2.1785271167755127
  139. ],
  140. "children" : [
  141. 5
  142. ],
  143. "scale" : [
  144. 0.9999999403953552,
  145. 0.9999999403953552,
  146. 1
  147. ],
  148. "name" : "BackLeg.R"
  149. },
  150. {
  151. "rotation" : [
  152. 0.1322072446346283,
  153. 0.051827322691679,
  154. -0.006922245025634766,
  155. 0.9898421168327332
  156. ],
  157. "translation" : [
  158. 5.029141902923584e-08,
  159. 1.4804565906524658,
  160. -1.4901161193847656e-08
  161. ],
  162. "scale" : [
  163. 0.9999999403953552,
  164. 0.9999998211860657,
  165. 0.9999999403953552
  166. ],
  167. "name" : "FrontLowLeg.L"
  168. },
  169. {
  170. "rotation" : [
  171. -0.02143113501369953,
  172. -0.09512420743703842,
  173. 0.7067819833755493,
  174. 0.7006792426109314
  175. ],
  176. "translation" : [
  177. -4.6016204180432396e-08,
  178. 0.6025584936141968,
  179. 2.6731640900834464e-08
  180. ],
  181. "children" : [
  182. 7
  183. ],
  184. "scale" : [
  185. 1,
  186. 0.9999999403953552,
  187. 1
  188. ],
  189. "name" : "FrontUpLeg.L"
  190. },
  191. {
  192. "rotation" : [
  193. 0.7071068286895752,
  194. 0.7071068286895752,
  195. -5.7813476672663455e-08,
  196. -2.2197249904820637e-07
  197. ],
  198. "translation" : [
  199. 0.2630481719970703,
  200. 0.8379976749420166,
  201. 1.8730939626693726
  202. ],
  203. "children" : [
  204. 8
  205. ],
  206. "name" : "FrontLeg.L"
  207. },
  208. {
  209. "rotation" : [
  210. -0.359415203332901,
  211. -0.008867672644555569,
  212. -0.0034156893379986286,
  213. 0.9331293702125549
  214. ],
  215. "translation" : [
  216. -4.6566128730773926e-08,
  217. 1.087438702583313,
  218. 1.9185245037078857e-07
  219. ],
  220. "name" : "BackLowLeg.L"
  221. },
  222. {
  223. "rotation" : [
  224. 0.21080642938613892,
  225. 0.22359642386436462,
  226. 0.6749521493911743,
  227. 0.6708240509033203
  228. ],
  229. "translation" : [
  230. 4.24971737800206e-08,
  231. 0.46958309412002563,
  232. 7.592490192109835e-09
  233. ],
  234. "children" : [
  235. 10
  236. ],
  237. "name" : "BackUpLeg.L"
  238. },
  239. {
  240. "rotation" : [
  241. 0.7071068286895752,
  242. 0.7071068286895752,
  243. -3.2747024647505896e-07,
  244. -3.905599328390963e-07
  245. ],
  246. "translation" : [
  247. 0.2630481719970703,
  248. 0.8379976749420166,
  249. -2.1785271167755127
  250. ],
  251. "children" : [
  252. 11
  253. ],
  254. "name" : "BackLeg.L"
  255. },
  256. {
  257. "rotation" : [
  258. 0.03904002159833908,
  259. 3.375344803657754e-08,
  260. 1.5100761530106865e-08,
  261. 0.9992376565933228
  262. ],
  263. "translation" : [
  264. -1.1237801800234593e-09,
  265. 0.6993294954299927,
  266. 2.3673731419648902e-08
  267. ],
  268. "scale" : [
  269. 1,
  270. 0.9999998807907104,
  271. 0.9999999403953552
  272. ],
  273. "name" : "Tail4"
  274. },
  275. {
  276. "rotation" : [
  277. -1.0919981363599618e-08,
  278. 0.9891947507858276,
  279. -0.14660780131816864,
  280. 3.1052451276991633e-07
  281. ],
  282. "translation" : [
  283. -1.2718714970105793e-10,
  284. 0.8778814673423767,
  285. -1.825659694532078e-07
  286. ],
  287. "children" : [
  288. 13
  289. ],
  290. "scale" : [
  291. 1,
  292. 0.9999998807907104,
  293. 1
  294. ],
  295. "name" : "Tail3"
  296. },
  297. {
  298. "rotation" : [
  299. -0.6165577173233032,
  300. 9.388718780201089e-08,
  301. -7.336056739859487e-08,
  302. 0.7873097062110901
  303. ],
  304. "translation" : [
  305. 1.457748366462397e-09,
  306. 0.8375221490859985,
  307. 1.0430805730266002e-07
  308. ],
  309. "children" : [
  310. 14
  311. ],
  312. "name" : "Tail2"
  313. },
  314. {
  315. "rotation" : [
  316. -0.9926701188087463,
  317. -2.888487671270923e-08,
  318. -2.3668015103339712e-07,
  319. 0.12085530161857605
  320. ],
  321. "translation" : [
  322. 0.011168533004820347,
  323. 0.044458627700805664,
  324. -1.1115176677703857
  325. ],
  326. "children" : [
  327. 15
  328. ],
  329. "scale" : [
  330. 1,
  331. 1,
  332. 1.0000048875808716
  333. ],
  334. "name" : "Tail1"
  335. },
  336. {
  337. "rotation" : [
  338. 0.6005213260650635,
  339. -0.03759600967168808,
  340. 0.04103247448801994,
  341. 0.7976697683334351
  342. ],
  343. "translation" : [
  344. -0.03228271007537842,
  345. 1.4074056148529053,
  346. -2.402277946472168
  347. ],
  348. "children" : [
  349. 16
  350. ],
  351. "name" : "Back"
  352. },
  353. {
  354. "rotation" : [
  355. -0.624537467956543,
  356. -0.19781436026096344,
  357. 0.16660769283771515,
  358. 0.7369289994239807
  359. ],
  360. "translation" : [
  361. -2.397428033873439e-09,
  362. 1.3573312759399414,
  363. 3.375392907400965e-07
  364. ],
  365. "scale" : [
  366. 1,
  367. 0.9999999403953552,
  368. 1
  369. ],
  370. "name" : "Head"
  371. },
  372. {
  373. "rotation" : [
  374. -0.08868467062711716,
  375. -0.022488867864012718,
  376. -0.017817648127675056,
  377. 0.9956464767456055
  378. ],
  379. "translation" : [
  380. 5.122274160385132e-09,
  381. 1.3137189149856567,
  382. 2.7124769985675812e-08
  383. ],
  384. "children" : [
  385. 18
  386. ],
  387. "scale" : [
  388. 0.9999999403953552,
  389. 1.0000001192092896,
  390. 0.9999999403953552
  391. ],
  392. "name" : "Neck"
  393. },
  394. {
  395. "rotation" : [
  396. -0.008421452715992928,
  397. -0.9597339034080505,
  398. -0.2794420123100281,
  399. 0.0274273119866848
  400. ],
  401. "translation" : [
  402. -0.0736546516418457,
  403. 1.8077161312103271,
  404. 1.8519929647445679
  405. ],
  406. "children" : [
  407. 19
  408. ],
  409. "scale" : [
  410. 1,
  411. 0.9999997615814209,
  412. 1.0000001192092896
  413. ],
  414. "name" : "Shoulders"
  415. },
  416. {
  417. "rotation" : [
  418. 0.05375247821211815,
  419. 0.0007617085939273238,
  420. -0.01352697517722845,
  421. 0.9984623789787292
  422. ],
  423. "translation" : [
  424. 2.1590436105611843e-09,
  425. 1.4671733379364014,
  426. 5.4603475518888445e-08
  427. ],
  428. "scale" : [
  429. 0.9999999403953552,
  430. 0.9999999403953552,
  431. 0.9999998807907104
  432. ],
  433. "name" : "Torso"
  434. },
  435. {
  436. "rotation" : [
  437. 3.485497700239648e-06,
  438. 0.694421112537384,
  439. 0.7195688486099243,
  440. 3.3636854368523927e-06
  441. ],
  442. "translation" : [
  443. -0.03228271007537842,
  444. 1.689819574356079,
  445. -1.4742006063461304
  446. ],
  447. "children" : [
  448. 21
  449. ],
  450. "name" : "Hips"
  451. },
  452. {
  453. "name" : "Body",
  454. "children" : [
  455. 3,
  456. 6,
  457. 9,
  458. 12,
  459. 17,
  460. 20,
  461. 22
  462. ],
  463. "translation" : [
  464. 0.005377650260925293,
  465. 2.3020823001861572,
  466. -0.01735416054725647
  467. ]
  468. },
  469. {
  470. "rotation" : [
  471. 0.7071068286895752,
  472. -6.209645562194055e-07,
  473. -6.209645562194055e-07,
  474. 0.7071068286895752
  475. ],
  476. "translation" : [
  477. -0.8358625173568726,
  478. 0.10000348091125488,
  479. -2.604720115661621
  480. ],
  481. "name" : "BackFoot.R"
  482. },
  483. {
  484. "rotation" : [
  485. 0.7071068286895752,
  486. -9.581393669577665e-07,
  487. -9.581393669577665e-07,
  488. 0.7071068286895752
  489. ],
  490. "translation" : [
  491. 0.8608940243721008,
  492. 0.10000348091125488,
  493. 1.927022933959961
  494. ],
  495. "name" : "FrontFoot.L"
  496. },
  497. {
  498. "rotation" : [
  499. 0.7071068286895752,
  500. -9.581393669577665e-07,
  501. -9.581393669577665e-07,
  502. 0.7071068286895752
  503. ],
  504. "translation" : [
  505. 0.7849856615066528,
  506. 0.10000348091125488,
  507. -2.604720115661621
  508. ],
  509. "name" : "BackFoot.L"
  510. },
  511. {
  512. "name" : "root",
  513. "children" : [
  514. 0,
  515. 23,
  516. 24,
  517. 25,
  518. 26
  519. ]
  520. },
  521. {
  522. "name" : "Zebra",
  523. "mesh" : 0,
  524. "skin" : 0
  525. },
  526. {
  527. "name" : "Armature",
  528. "children" : [
  529. 28,
  530. 27
  531. ]
  532. }
  533. ],
  534. "animations" : [
  535. {
  536. "name" : "Jump",
  537. "channels" : [
  538. {
  539. "target" : {
  540. "node" : 27,
  541. "path" : "translation"
  542. },
  543. "sampler" : 0
  544. },
  545. {
  546. "target" : {
  547. "node" : 27,
  548. "path" : "rotation"
  549. },
  550. "sampler" : 1
  551. },
  552. {
  553. "target" : {
  554. "node" : 27,
  555. "path" : "scale"
  556. },
  557. "sampler" : 2
  558. },
  559. {
  560. "target" : {
  561. "node" : 0,
  562. "path" : "translation"
  563. },
  564. "sampler" : 3
  565. },
  566. {
  567. "target" : {
  568. "node" : 0,
  569. "path" : "rotation"
  570. },
  571. "sampler" : 4
  572. },
  573. {
  574. "target" : {
  575. "node" : 0,
  576. "path" : "scale"
  577. },
  578. "sampler" : 5
  579. },
  580. {
  581. "target" : {
  582. "node" : 23,
  583. "path" : "translation"
  584. },
  585. "sampler" : 6
  586. },
  587. {
  588. "target" : {
  589. "node" : 23,
  590. "path" : "rotation"
  591. },
  592. "sampler" : 7
  593. },
  594. {
  595. "target" : {
  596. "node" : 23,
  597. "path" : "scale"
  598. },
  599. "sampler" : 8
  600. },
  601. {
  602. "target" : {
  603. "node" : 3,
  604. "path" : "translation"
  605. },
  606. "sampler" : 9
  607. },
  608. {
  609. "target" : {
  610. "node" : 3,
  611. "path" : "rotation"
  612. },
  613. "sampler" : 10
  614. },
  615. {
  616. "target" : {
  617. "node" : 3,
  618. "path" : "scale"
  619. },
  620. "sampler" : 11
  621. },
  622. {
  623. "target" : {
  624. "node" : 2,
  625. "path" : "translation"
  626. },
  627. "sampler" : 12
  628. },
  629. {
  630. "target" : {
  631. "node" : 2,
  632. "path" : "rotation"
  633. },
  634. "sampler" : 13
  635. },
  636. {
  637. "target" : {
  638. "node" : 2,
  639. "path" : "scale"
  640. },
  641. "sampler" : 14
  642. },
  643. {
  644. "target" : {
  645. "node" : 1,
  646. "path" : "translation"
  647. },
  648. "sampler" : 15
  649. },
  650. {
  651. "target" : {
  652. "node" : 1,
  653. "path" : "rotation"
  654. },
  655. "sampler" : 16
  656. },
  657. {
  658. "target" : {
  659. "node" : 1,
  660. "path" : "scale"
  661. },
  662. "sampler" : 17
  663. },
  664. {
  665. "target" : {
  666. "node" : 6,
  667. "path" : "translation"
  668. },
  669. "sampler" : 18
  670. },
  671. {
  672. "target" : {
  673. "node" : 6,
  674. "path" : "rotation"
  675. },
  676. "sampler" : 19
  677. },
  678. {
  679. "target" : {
  680. "node" : 6,
  681. "path" : "scale"
  682. },
  683. "sampler" : 20
  684. },
  685. {
  686. "target" : {
  687. "node" : 5,
  688. "path" : "translation"
  689. },
  690. "sampler" : 21
  691. },
  692. {
  693. "target" : {
  694. "node" : 5,
  695. "path" : "rotation"
  696. },
  697. "sampler" : 22
  698. },
  699. {
  700. "target" : {
  701. "node" : 5,
  702. "path" : "scale"
  703. },
  704. "sampler" : 23
  705. },
  706. {
  707. "target" : {
  708. "node" : 4,
  709. "path" : "translation"
  710. },
  711. "sampler" : 24
  712. },
  713. {
  714. "target" : {
  715. "node" : 4,
  716. "path" : "rotation"
  717. },
  718. "sampler" : 25
  719. },
  720. {
  721. "target" : {
  722. "node" : 4,
  723. "path" : "scale"
  724. },
  725. "sampler" : 26
  726. },
  727. {
  728. "target" : {
  729. "node" : 9,
  730. "path" : "translation"
  731. },
  732. "sampler" : 27
  733. },
  734. {
  735. "target" : {
  736. "node" : 9,
  737. "path" : "rotation"
  738. },
  739. "sampler" : 28
  740. },
  741. {
  742. "target" : {
  743. "node" : 9,
  744. "path" : "scale"
  745. },
  746. "sampler" : 29
  747. },
  748. {
  749. "target" : {
  750. "node" : 8,
  751. "path" : "translation"
  752. },
  753. "sampler" : 30
  754. },
  755. {
  756. "target" : {
  757. "node" : 8,
  758. "path" : "rotation"
  759. },
  760. "sampler" : 31
  761. },
  762. {
  763. "target" : {
  764. "node" : 8,
  765. "path" : "scale"
  766. },
  767. "sampler" : 32
  768. },
  769. {
  770. "target" : {
  771. "node" : 7,
  772. "path" : "translation"
  773. },
  774. "sampler" : 33
  775. },
  776. {
  777. "target" : {
  778. "node" : 7,
  779. "path" : "rotation"
  780. },
  781. "sampler" : 34
  782. },
  783. {
  784. "target" : {
  785. "node" : 7,
  786. "path" : "scale"
  787. },
  788. "sampler" : 35
  789. },
  790. {
  791. "target" : {
  792. "node" : 12,
  793. "path" : "translation"
  794. },
  795. "sampler" : 36
  796. },
  797. {
  798. "target" : {
  799. "node" : 12,
  800. "path" : "rotation"
  801. },
  802. "sampler" : 37
  803. },
  804. {
  805. "target" : {
  806. "node" : 12,
  807. "path" : "scale"
  808. },
  809. "sampler" : 38
  810. },
  811. {
  812. "target" : {
  813. "node" : 11,
  814. "path" : "translation"
  815. },
  816. "sampler" : 39
  817. },
  818. {
  819. "target" : {
  820. "node" : 11,
  821. "path" : "rotation"
  822. },
  823. "sampler" : 40
  824. },
  825. {
  826. "target" : {
  827. "node" : 11,
  828. "path" : "scale"
  829. },
  830. "sampler" : 41
  831. },
  832. {
  833. "target" : {
  834. "node" : 10,
  835. "path" : "translation"
  836. },
  837. "sampler" : 42
  838. },
  839. {
  840. "target" : {
  841. "node" : 10,
  842. "path" : "rotation"
  843. },
  844. "sampler" : 43
  845. },
  846. {
  847. "target" : {
  848. "node" : 10,
  849. "path" : "scale"
  850. },
  851. "sampler" : 44
  852. },
  853. {
  854. "target" : {
  855. "node" : 17,
  856. "path" : "translation"
  857. },
  858. "sampler" : 45
  859. },
  860. {
  861. "target" : {
  862. "node" : 17,
  863. "path" : "rotation"
  864. },
  865. "sampler" : 46
  866. },
  867. {
  868. "target" : {
  869. "node" : 17,
  870. "path" : "scale"
  871. },
  872. "sampler" : 47
  873. },
  874. {
  875. "target" : {
  876. "node" : 16,
  877. "path" : "translation"
  878. },
  879. "sampler" : 48
  880. },
  881. {
  882. "target" : {
  883. "node" : 16,
  884. "path" : "rotation"
  885. },
  886. "sampler" : 49
  887. },
  888. {
  889. "target" : {
  890. "node" : 16,
  891. "path" : "scale"
  892. },
  893. "sampler" : 50
  894. },
  895. {
  896. "target" : {
  897. "node" : 15,
  898. "path" : "translation"
  899. },
  900. "sampler" : 51
  901. },
  902. {
  903. "target" : {
  904. "node" : 15,
  905. "path" : "rotation"
  906. },
  907. "sampler" : 52
  908. },
  909. {
  910. "target" : {
  911. "node" : 15,
  912. "path" : "scale"
  913. },
  914. "sampler" : 53
  915. },
  916. {
  917. "target" : {
  918. "node" : 14,
  919. "path" : "translation"
  920. },
  921. "sampler" : 54
  922. },
  923. {
  924. "target" : {
  925. "node" : 14,
  926. "path" : "rotation"
  927. },
  928. "sampler" : 55
  929. },
  930. {
  931. "target" : {
  932. "node" : 14,
  933. "path" : "scale"
  934. },
  935. "sampler" : 56
  936. },
  937. {
  938. "target" : {
  939. "node" : 13,
  940. "path" : "translation"
  941. },
  942. "sampler" : 57
  943. },
  944. {
  945. "target" : {
  946. "node" : 13,
  947. "path" : "rotation"
  948. },
  949. "sampler" : 58
  950. },
  951. {
  952. "target" : {
  953. "node" : 13,
  954. "path" : "scale"
  955. },
  956. "sampler" : 59
  957. },
  958. {
  959. "target" : {
  960. "node" : 20,
  961. "path" : "translation"
  962. },
  963. "sampler" : 60
  964. },
  965. {
  966. "target" : {
  967. "node" : 20,
  968. "path" : "rotation"
  969. },
  970. "sampler" : 61
  971. },
  972. {
  973. "target" : {
  974. "node" : 20,
  975. "path" : "scale"
  976. },
  977. "sampler" : 62
  978. },
  979. {
  980. "target" : {
  981. "node" : 19,
  982. "path" : "translation"
  983. },
  984. "sampler" : 63
  985. },
  986. {
  987. "target" : {
  988. "node" : 19,
  989. "path" : "rotation"
  990. },
  991. "sampler" : 64
  992. },
  993. {
  994. "target" : {
  995. "node" : 19,
  996. "path" : "scale"
  997. },
  998. "sampler" : 65
  999. },
  1000. {
  1001. "target" : {
  1002. "node" : 18,
  1003. "path" : "translation"
  1004. },
  1005. "sampler" : 66
  1006. },
  1007. {
  1008. "target" : {
  1009. "node" : 18,
  1010. "path" : "rotation"
  1011. },
  1012. "sampler" : 67
  1013. },
  1014. {
  1015. "target" : {
  1016. "node" : 18,
  1017. "path" : "scale"
  1018. },
  1019. "sampler" : 68
  1020. },
  1021. {
  1022. "target" : {
  1023. "node" : 22,
  1024. "path" : "translation"
  1025. },
  1026. "sampler" : 69
  1027. },
  1028. {
  1029. "target" : {
  1030. "node" : 22,
  1031. "path" : "rotation"
  1032. },
  1033. "sampler" : 70
  1034. },
  1035. {
  1036. "target" : {
  1037. "node" : 22,
  1038. "path" : "scale"
  1039. },
  1040. "sampler" : 71
  1041. },
  1042. {
  1043. "target" : {
  1044. "node" : 21,
  1045. "path" : "translation"
  1046. },
  1047. "sampler" : 72
  1048. },
  1049. {
  1050. "target" : {
  1051. "node" : 21,
  1052. "path" : "rotation"
  1053. },
  1054. "sampler" : 73
  1055. },
  1056. {
  1057. "target" : {
  1058. "node" : 21,
  1059. "path" : "scale"
  1060. },
  1061. "sampler" : 74
  1062. },
  1063. {
  1064. "target" : {
  1065. "node" : 24,
  1066. "path" : "translation"
  1067. },
  1068. "sampler" : 75
  1069. },
  1070. {
  1071. "target" : {
  1072. "node" : 24,
  1073. "path" : "rotation"
  1074. },
  1075. "sampler" : 76
  1076. },
  1077. {
  1078. "target" : {
  1079. "node" : 24,
  1080. "path" : "scale"
  1081. },
  1082. "sampler" : 77
  1083. },
  1084. {
  1085. "target" : {
  1086. "node" : 25,
  1087. "path" : "translation"
  1088. },
  1089. "sampler" : 78
  1090. },
  1091. {
  1092. "target" : {
  1093. "node" : 25,
  1094. "path" : "rotation"
  1095. },
  1096. "sampler" : 79
  1097. },
  1098. {
  1099. "target" : {
  1100. "node" : 25,
  1101. "path" : "scale"
  1102. },
  1103. "sampler" : 80
  1104. },
  1105. {
  1106. "target" : {
  1107. "node" : 26,
  1108. "path" : "translation"
  1109. },
  1110. "sampler" : 81
  1111. },
  1112. {
  1113. "target" : {
  1114. "node" : 26,
  1115. "path" : "rotation"
  1116. },
  1117. "sampler" : 82
  1118. },
  1119. {
  1120. "target" : {
  1121. "node" : 26,
  1122. "path" : "scale"
  1123. },
  1124. "sampler" : 83
  1125. }
  1126. ],
  1127. "samplers" : [
  1128. {
  1129. "interpolation" : "LINEAR",
  1130. "input" : 13,
  1131. "output" : 14
  1132. },
  1133. {
  1134. "interpolation" : "LINEAR",
  1135. "input" : 13,
  1136. "output" : 15
  1137. },
  1138. {
  1139. "interpolation" : "LINEAR",
  1140. "input" : 13,
  1141. "output" : 16
  1142. },
  1143. {
  1144. "interpolation" : "LINEAR",
  1145. "input" : 13,
  1146. "output" : 17
  1147. },
  1148. {
  1149. "interpolation" : "LINEAR",
  1150. "input" : 13,
  1151. "output" : 18
  1152. },
  1153. {
  1154. "interpolation" : "LINEAR",
  1155. "input" : 13,
  1156. "output" : 19
  1157. },
  1158. {
  1159. "interpolation" : "LINEAR",
  1160. "input" : 13,
  1161. "output" : 20
  1162. },
  1163. {
  1164. "interpolation" : "LINEAR",
  1165. "input" : 13,
  1166. "output" : 21
  1167. },
  1168. {
  1169. "interpolation" : "LINEAR",
  1170. "input" : 13,
  1171. "output" : 22
  1172. },
  1173. {
  1174. "interpolation" : "LINEAR",
  1175. "input" : 13,
  1176. "output" : 23
  1177. },
  1178. {
  1179. "interpolation" : "LINEAR",
  1180. "input" : 13,
  1181. "output" : 24
  1182. },
  1183. {
  1184. "interpolation" : "LINEAR",
  1185. "input" : 13,
  1186. "output" : 25
  1187. },
  1188. {
  1189. "interpolation" : "LINEAR",
  1190. "input" : 13,
  1191. "output" : 26
  1192. },
  1193. {
  1194. "interpolation" : "LINEAR",
  1195. "input" : 13,
  1196. "output" : 27
  1197. },
  1198. {
  1199. "interpolation" : "LINEAR",
  1200. "input" : 13,
  1201. "output" : 28
  1202. },
  1203. {
  1204. "interpolation" : "LINEAR",
  1205. "input" : 13,
  1206. "output" : 29
  1207. },
  1208. {
  1209. "interpolation" : "LINEAR",
  1210. "input" : 13,
  1211. "output" : 30
  1212. },
  1213. {
  1214. "interpolation" : "LINEAR",
  1215. "input" : 13,
  1216. "output" : 31
  1217. },
  1218. {
  1219. "interpolation" : "LINEAR",
  1220. "input" : 13,
  1221. "output" : 32
  1222. },
  1223. {
  1224. "interpolation" : "LINEAR",
  1225. "input" : 13,
  1226. "output" : 33
  1227. },
  1228. {
  1229. "interpolation" : "LINEAR",
  1230. "input" : 13,
  1231. "output" : 34
  1232. },
  1233. {
  1234. "interpolation" : "LINEAR",
  1235. "input" : 13,
  1236. "output" : 35
  1237. },
  1238. {
  1239. "interpolation" : "LINEAR",
  1240. "input" : 13,
  1241. "output" : 36
  1242. },
  1243. {
  1244. "interpolation" : "LINEAR",
  1245. "input" : 13,
  1246. "output" : 37
  1247. },
  1248. {
  1249. "interpolation" : "LINEAR",
  1250. "input" : 13,
  1251. "output" : 38
  1252. },
  1253. {
  1254. "interpolation" : "LINEAR",
  1255. "input" : 13,
  1256. "output" : 39
  1257. },
  1258. {
  1259. "interpolation" : "LINEAR",
  1260. "input" : 13,
  1261. "output" : 40
  1262. },
  1263. {
  1264. "interpolation" : "LINEAR",
  1265. "input" : 13,
  1266. "output" : 41
  1267. },
  1268. {
  1269. "interpolation" : "LINEAR",
  1270. "input" : 13,
  1271. "output" : 42
  1272. },
  1273. {
  1274. "interpolation" : "LINEAR",
  1275. "input" : 13,
  1276. "output" : 43
  1277. },
  1278. {
  1279. "interpolation" : "LINEAR",
  1280. "input" : 13,
  1281. "output" : 44
  1282. },
  1283. {
  1284. "interpolation" : "LINEAR",
  1285. "input" : 13,
  1286. "output" : 45
  1287. },
  1288. {
  1289. "interpolation" : "LINEAR",
  1290. "input" : 13,
  1291. "output" : 46
  1292. },
  1293. {
  1294. "interpolation" : "LINEAR",
  1295. "input" : 13,
  1296. "output" : 47
  1297. },
  1298. {
  1299. "interpolation" : "LINEAR",
  1300. "input" : 13,
  1301. "output" : 48
  1302. },
  1303. {
  1304. "interpolation" : "LINEAR",
  1305. "input" : 13,
  1306. "output" : 49
  1307. },
  1308. {
  1309. "interpolation" : "LINEAR",
  1310. "input" : 13,
  1311. "output" : 50
  1312. },
  1313. {
  1314. "interpolation" : "LINEAR",
  1315. "input" : 13,
  1316. "output" : 51
  1317. },
  1318. {
  1319. "interpolation" : "LINEAR",
  1320. "input" : 13,
  1321. "output" : 52
  1322. },
  1323. {
  1324. "interpolation" : "LINEAR",
  1325. "input" : 13,
  1326. "output" : 53
  1327. },
  1328. {
  1329. "interpolation" : "LINEAR",
  1330. "input" : 13,
  1331. "output" : 54
  1332. },
  1333. {
  1334. "interpolation" : "LINEAR",
  1335. "input" : 13,
  1336. "output" : 55
  1337. },
  1338. {
  1339. "interpolation" : "LINEAR",
  1340. "input" : 13,
  1341. "output" : 56
  1342. },
  1343. {
  1344. "interpolation" : "LINEAR",
  1345. "input" : 13,
  1346. "output" : 57
  1347. },
  1348. {
  1349. "interpolation" : "LINEAR",
  1350. "input" : 13,
  1351. "output" : 58
  1352. },
  1353. {
  1354. "interpolation" : "LINEAR",
  1355. "input" : 13,
  1356. "output" : 59
  1357. },
  1358. {
  1359. "interpolation" : "LINEAR",
  1360. "input" : 13,
  1361. "output" : 60
  1362. },
  1363. {
  1364. "interpolation" : "LINEAR",
  1365. "input" : 13,
  1366. "output" : 61
  1367. },
  1368. {
  1369. "interpolation" : "LINEAR",
  1370. "input" : 13,
  1371. "output" : 62
  1372. },
  1373. {
  1374. "interpolation" : "LINEAR",
  1375. "input" : 13,
  1376. "output" : 63
  1377. },
  1378. {
  1379. "interpolation" : "LINEAR",
  1380. "input" : 13,
  1381. "output" : 64
  1382. },
  1383. {
  1384. "interpolation" : "LINEAR",
  1385. "input" : 13,
  1386. "output" : 65
  1387. },
  1388. {
  1389. "interpolation" : "LINEAR",
  1390. "input" : 13,
  1391. "output" : 66
  1392. },
  1393. {
  1394. "interpolation" : "LINEAR",
  1395. "input" : 13,
  1396. "output" : 67
  1397. },
  1398. {
  1399. "interpolation" : "LINEAR",
  1400. "input" : 13,
  1401. "output" : 68
  1402. },
  1403. {
  1404. "interpolation" : "LINEAR",
  1405. "input" : 13,
  1406. "output" : 69
  1407. },
  1408. {
  1409. "interpolation" : "LINEAR",
  1410. "input" : 13,
  1411. "output" : 70
  1412. },
  1413. {
  1414. "interpolation" : "LINEAR",
  1415. "input" : 13,
  1416. "output" : 71
  1417. },
  1418. {
  1419. "interpolation" : "LINEAR",
  1420. "input" : 13,
  1421. "output" : 72
  1422. },
  1423. {
  1424. "interpolation" : "LINEAR",
  1425. "input" : 13,
  1426. "output" : 73
  1427. },
  1428. {
  1429. "interpolation" : "LINEAR",
  1430. "input" : 13,
  1431. "output" : 74
  1432. },
  1433. {
  1434. "interpolation" : "LINEAR",
  1435. "input" : 13,
  1436. "output" : 75
  1437. },
  1438. {
  1439. "interpolation" : "LINEAR",
  1440. "input" : 13,
  1441. "output" : 76
  1442. },
  1443. {
  1444. "interpolation" : "LINEAR",
  1445. "input" : 13,
  1446. "output" : 77
  1447. },
  1448. {
  1449. "interpolation" : "LINEAR",
  1450. "input" : 13,
  1451. "output" : 78
  1452. },
  1453. {
  1454. "interpolation" : "LINEAR",
  1455. "input" : 13,
  1456. "output" : 79
  1457. },
  1458. {
  1459. "interpolation" : "LINEAR",
  1460. "input" : 13,
  1461. "output" : 80
  1462. },
  1463. {
  1464. "interpolation" : "LINEAR",
  1465. "input" : 13,
  1466. "output" : 81
  1467. },
  1468. {
  1469. "interpolation" : "LINEAR",
  1470. "input" : 13,
  1471. "output" : 82
  1472. },
  1473. {
  1474. "interpolation" : "LINEAR",
  1475. "input" : 13,
  1476. "output" : 83
  1477. },
  1478. {
  1479. "interpolation" : "LINEAR",
  1480. "input" : 13,
  1481. "output" : 84
  1482. },
  1483. {
  1484. "interpolation" : "LINEAR",
  1485. "input" : 13,
  1486. "output" : 85
  1487. },
  1488. {
  1489. "interpolation" : "LINEAR",
  1490. "input" : 13,
  1491. "output" : 86
  1492. },
  1493. {
  1494. "interpolation" : "LINEAR",
  1495. "input" : 13,
  1496. "output" : 87
  1497. },
  1498. {
  1499. "interpolation" : "LINEAR",
  1500. "input" : 13,
  1501. "output" : 88
  1502. },
  1503. {
  1504. "interpolation" : "LINEAR",
  1505. "input" : 13,
  1506. "output" : 89
  1507. },
  1508. {
  1509. "interpolation" : "LINEAR",
  1510. "input" : 13,
  1511. "output" : 90
  1512. },
  1513. {
  1514. "interpolation" : "LINEAR",
  1515. "input" : 13,
  1516. "output" : 91
  1517. },
  1518. {
  1519. "interpolation" : "LINEAR",
  1520. "input" : 13,
  1521. "output" : 92
  1522. },
  1523. {
  1524. "interpolation" : "LINEAR",
  1525. "input" : 13,
  1526. "output" : 93
  1527. },
  1528. {
  1529. "interpolation" : "LINEAR",
  1530. "input" : 13,
  1531. "output" : 94
  1532. },
  1533. {
  1534. "interpolation" : "LINEAR",
  1535. "input" : 13,
  1536. "output" : 95
  1537. },
  1538. {
  1539. "interpolation" : "LINEAR",
  1540. "input" : 13,
  1541. "output" : 96
  1542. },
  1543. {
  1544. "interpolation" : "LINEAR",
  1545. "input" : 13,
  1546. "output" : 97
  1547. }
  1548. ]
  1549. },
  1550. {
  1551. "name" : "Walk",
  1552. "channels" : [
  1553. {
  1554. "target" : {
  1555. "node" : 27,
  1556. "path" : "translation"
  1557. },
  1558. "sampler" : 0
  1559. },
  1560. {
  1561. "target" : {
  1562. "node" : 27,
  1563. "path" : "rotation"
  1564. },
  1565. "sampler" : 1
  1566. },
  1567. {
  1568. "target" : {
  1569. "node" : 27,
  1570. "path" : "scale"
  1571. },
  1572. "sampler" : 2
  1573. },
  1574. {
  1575. "target" : {
  1576. "node" : 0,
  1577. "path" : "translation"
  1578. },
  1579. "sampler" : 3
  1580. },
  1581. {
  1582. "target" : {
  1583. "node" : 0,
  1584. "path" : "rotation"
  1585. },
  1586. "sampler" : 4
  1587. },
  1588. {
  1589. "target" : {
  1590. "node" : 0,
  1591. "path" : "scale"
  1592. },
  1593. "sampler" : 5
  1594. },
  1595. {
  1596. "target" : {
  1597. "node" : 23,
  1598. "path" : "translation"
  1599. },
  1600. "sampler" : 6
  1601. },
  1602. {
  1603. "target" : {
  1604. "node" : 23,
  1605. "path" : "rotation"
  1606. },
  1607. "sampler" : 7
  1608. },
  1609. {
  1610. "target" : {
  1611. "node" : 23,
  1612. "path" : "scale"
  1613. },
  1614. "sampler" : 8
  1615. },
  1616. {
  1617. "target" : {
  1618. "node" : 3,
  1619. "path" : "translation"
  1620. },
  1621. "sampler" : 9
  1622. },
  1623. {
  1624. "target" : {
  1625. "node" : 3,
  1626. "path" : "rotation"
  1627. },
  1628. "sampler" : 10
  1629. },
  1630. {
  1631. "target" : {
  1632. "node" : 3,
  1633. "path" : "scale"
  1634. },
  1635. "sampler" : 11
  1636. },
  1637. {
  1638. "target" : {
  1639. "node" : 2,
  1640. "path" : "translation"
  1641. },
  1642. "sampler" : 12
  1643. },
  1644. {
  1645. "target" : {
  1646. "node" : 2,
  1647. "path" : "rotation"
  1648. },
  1649. "sampler" : 13
  1650. },
  1651. {
  1652. "target" : {
  1653. "node" : 2,
  1654. "path" : "scale"
  1655. },
  1656. "sampler" : 14
  1657. },
  1658. {
  1659. "target" : {
  1660. "node" : 1,
  1661. "path" : "translation"
  1662. },
  1663. "sampler" : 15
  1664. },
  1665. {
  1666. "target" : {
  1667. "node" : 1,
  1668. "path" : "rotation"
  1669. },
  1670. "sampler" : 16
  1671. },
  1672. {
  1673. "target" : {
  1674. "node" : 1,
  1675. "path" : "scale"
  1676. },
  1677. "sampler" : 17
  1678. },
  1679. {
  1680. "target" : {
  1681. "node" : 6,
  1682. "path" : "translation"
  1683. },
  1684. "sampler" : 18
  1685. },
  1686. {
  1687. "target" : {
  1688. "node" : 6,
  1689. "path" : "rotation"
  1690. },
  1691. "sampler" : 19
  1692. },
  1693. {
  1694. "target" : {
  1695. "node" : 6,
  1696. "path" : "scale"
  1697. },
  1698. "sampler" : 20
  1699. },
  1700. {
  1701. "target" : {
  1702. "node" : 5,
  1703. "path" : "translation"
  1704. },
  1705. "sampler" : 21
  1706. },
  1707. {
  1708. "target" : {
  1709. "node" : 5,
  1710. "path" : "rotation"
  1711. },
  1712. "sampler" : 22
  1713. },
  1714. {
  1715. "target" : {
  1716. "node" : 5,
  1717. "path" : "scale"
  1718. },
  1719. "sampler" : 23
  1720. },
  1721. {
  1722. "target" : {
  1723. "node" : 4,
  1724. "path" : "translation"
  1725. },
  1726. "sampler" : 24
  1727. },
  1728. {
  1729. "target" : {
  1730. "node" : 4,
  1731. "path" : "rotation"
  1732. },
  1733. "sampler" : 25
  1734. },
  1735. {
  1736. "target" : {
  1737. "node" : 4,
  1738. "path" : "scale"
  1739. },
  1740. "sampler" : 26
  1741. },
  1742. {
  1743. "target" : {
  1744. "node" : 9,
  1745. "path" : "translation"
  1746. },
  1747. "sampler" : 27
  1748. },
  1749. {
  1750. "target" : {
  1751. "node" : 9,
  1752. "path" : "rotation"
  1753. },
  1754. "sampler" : 28
  1755. },
  1756. {
  1757. "target" : {
  1758. "node" : 9,
  1759. "path" : "scale"
  1760. },
  1761. "sampler" : 29
  1762. },
  1763. {
  1764. "target" : {
  1765. "node" : 8,
  1766. "path" : "translation"
  1767. },
  1768. "sampler" : 30
  1769. },
  1770. {
  1771. "target" : {
  1772. "node" : 8,
  1773. "path" : "rotation"
  1774. },
  1775. "sampler" : 31
  1776. },
  1777. {
  1778. "target" : {
  1779. "node" : 8,
  1780. "path" : "scale"
  1781. },
  1782. "sampler" : 32
  1783. },
  1784. {
  1785. "target" : {
  1786. "node" : 7,
  1787. "path" : "translation"
  1788. },
  1789. "sampler" : 33
  1790. },
  1791. {
  1792. "target" : {
  1793. "node" : 7,
  1794. "path" : "rotation"
  1795. },
  1796. "sampler" : 34
  1797. },
  1798. {
  1799. "target" : {
  1800. "node" : 7,
  1801. "path" : "scale"
  1802. },
  1803. "sampler" : 35
  1804. },
  1805. {
  1806. "target" : {
  1807. "node" : 12,
  1808. "path" : "translation"
  1809. },
  1810. "sampler" : 36
  1811. },
  1812. {
  1813. "target" : {
  1814. "node" : 12,
  1815. "path" : "rotation"
  1816. },
  1817. "sampler" : 37
  1818. },
  1819. {
  1820. "target" : {
  1821. "node" : 12,
  1822. "path" : "scale"
  1823. },
  1824. "sampler" : 38
  1825. },
  1826. {
  1827. "target" : {
  1828. "node" : 11,
  1829. "path" : "translation"
  1830. },
  1831. "sampler" : 39
  1832. },
  1833. {
  1834. "target" : {
  1835. "node" : 11,
  1836. "path" : "rotation"
  1837. },
  1838. "sampler" : 40
  1839. },
  1840. {
  1841. "target" : {
  1842. "node" : 11,
  1843. "path" : "scale"
  1844. },
  1845. "sampler" : 41
  1846. },
  1847. {
  1848. "target" : {
  1849. "node" : 10,
  1850. "path" : "translation"
  1851. },
  1852. "sampler" : 42
  1853. },
  1854. {
  1855. "target" : {
  1856. "node" : 10,
  1857. "path" : "rotation"
  1858. },
  1859. "sampler" : 43
  1860. },
  1861. {
  1862. "target" : {
  1863. "node" : 10,
  1864. "path" : "scale"
  1865. },
  1866. "sampler" : 44
  1867. },
  1868. {
  1869. "target" : {
  1870. "node" : 17,
  1871. "path" : "translation"
  1872. },
  1873. "sampler" : 45
  1874. },
  1875. {
  1876. "target" : {
  1877. "node" : 17,
  1878. "path" : "rotation"
  1879. },
  1880. "sampler" : 46
  1881. },
  1882. {
  1883. "target" : {
  1884. "node" : 17,
  1885. "path" : "scale"
  1886. },
  1887. "sampler" : 47
  1888. },
  1889. {
  1890. "target" : {
  1891. "node" : 16,
  1892. "path" : "translation"
  1893. },
  1894. "sampler" : 48
  1895. },
  1896. {
  1897. "target" : {
  1898. "node" : 16,
  1899. "path" : "rotation"
  1900. },
  1901. "sampler" : 49
  1902. },
  1903. {
  1904. "target" : {
  1905. "node" : 16,
  1906. "path" : "scale"
  1907. },
  1908. "sampler" : 50
  1909. },
  1910. {
  1911. "target" : {
  1912. "node" : 15,
  1913. "path" : "translation"
  1914. },
  1915. "sampler" : 51
  1916. },
  1917. {
  1918. "target" : {
  1919. "node" : 15,
  1920. "path" : "rotation"
  1921. },
  1922. "sampler" : 52
  1923. },
  1924. {
  1925. "target" : {
  1926. "node" : 15,
  1927. "path" : "scale"
  1928. },
  1929. "sampler" : 53
  1930. },
  1931. {
  1932. "target" : {
  1933. "node" : 14,
  1934. "path" : "translation"
  1935. },
  1936. "sampler" : 54
  1937. },
  1938. {
  1939. "target" : {
  1940. "node" : 14,
  1941. "path" : "rotation"
  1942. },
  1943. "sampler" : 55
  1944. },
  1945. {
  1946. "target" : {
  1947. "node" : 14,
  1948. "path" : "scale"
  1949. },
  1950. "sampler" : 56
  1951. },
  1952. {
  1953. "target" : {
  1954. "node" : 13,
  1955. "path" : "translation"
  1956. },
  1957. "sampler" : 57
  1958. },
  1959. {
  1960. "target" : {
  1961. "node" : 13,
  1962. "path" : "rotation"
  1963. },
  1964. "sampler" : 58
  1965. },
  1966. {
  1967. "target" : {
  1968. "node" : 13,
  1969. "path" : "scale"
  1970. },
  1971. "sampler" : 59
  1972. },
  1973. {
  1974. "target" : {
  1975. "node" : 20,
  1976. "path" : "translation"
  1977. },
  1978. "sampler" : 60
  1979. },
  1980. {
  1981. "target" : {
  1982. "node" : 20,
  1983. "path" : "rotation"
  1984. },
  1985. "sampler" : 61
  1986. },
  1987. {
  1988. "target" : {
  1989. "node" : 20,
  1990. "path" : "scale"
  1991. },
  1992. "sampler" : 62
  1993. },
  1994. {
  1995. "target" : {
  1996. "node" : 19,
  1997. "path" : "translation"
  1998. },
  1999. "sampler" : 63
  2000. },
  2001. {
  2002. "target" : {
  2003. "node" : 19,
  2004. "path" : "rotation"
  2005. },
  2006. "sampler" : 64
  2007. },
  2008. {
  2009. "target" : {
  2010. "node" : 19,
  2011. "path" : "scale"
  2012. },
  2013. "sampler" : 65
  2014. },
  2015. {
  2016. "target" : {
  2017. "node" : 18,
  2018. "path" : "translation"
  2019. },
  2020. "sampler" : 66
  2021. },
  2022. {
  2023. "target" : {
  2024. "node" : 18,
  2025. "path" : "rotation"
  2026. },
  2027. "sampler" : 67
  2028. },
  2029. {
  2030. "target" : {
  2031. "node" : 18,
  2032. "path" : "scale"
  2033. },
  2034. "sampler" : 68
  2035. },
  2036. {
  2037. "target" : {
  2038. "node" : 22,
  2039. "path" : "translation"
  2040. },
  2041. "sampler" : 69
  2042. },
  2043. {
  2044. "target" : {
  2045. "node" : 22,
  2046. "path" : "rotation"
  2047. },
  2048. "sampler" : 70
  2049. },
  2050. {
  2051. "target" : {
  2052. "node" : 22,
  2053. "path" : "scale"
  2054. },
  2055. "sampler" : 71
  2056. },
  2057. {
  2058. "target" : {
  2059. "node" : 21,
  2060. "path" : "translation"
  2061. },
  2062. "sampler" : 72
  2063. },
  2064. {
  2065. "target" : {
  2066. "node" : 21,
  2067. "path" : "rotation"
  2068. },
  2069. "sampler" : 73
  2070. },
  2071. {
  2072. "target" : {
  2073. "node" : 21,
  2074. "path" : "scale"
  2075. },
  2076. "sampler" : 74
  2077. },
  2078. {
  2079. "target" : {
  2080. "node" : 24,
  2081. "path" : "translation"
  2082. },
  2083. "sampler" : 75
  2084. },
  2085. {
  2086. "target" : {
  2087. "node" : 24,
  2088. "path" : "rotation"
  2089. },
  2090. "sampler" : 76
  2091. },
  2092. {
  2093. "target" : {
  2094. "node" : 24,
  2095. "path" : "scale"
  2096. },
  2097. "sampler" : 77
  2098. },
  2099. {
  2100. "target" : {
  2101. "node" : 25,
  2102. "path" : "translation"
  2103. },
  2104. "sampler" : 78
  2105. },
  2106. {
  2107. "target" : {
  2108. "node" : 25,
  2109. "path" : "rotation"
  2110. },
  2111. "sampler" : 79
  2112. },
  2113. {
  2114. "target" : {
  2115. "node" : 25,
  2116. "path" : "scale"
  2117. },
  2118. "sampler" : 80
  2119. },
  2120. {
  2121. "target" : {
  2122. "node" : 26,
  2123. "path" : "translation"
  2124. },
  2125. "sampler" : 81
  2126. },
  2127. {
  2128. "target" : {
  2129. "node" : 26,
  2130. "path" : "rotation"
  2131. },
  2132. "sampler" : 82
  2133. },
  2134. {
  2135. "target" : {
  2136. "node" : 26,
  2137. "path" : "scale"
  2138. },
  2139. "sampler" : 83
  2140. }
  2141. ],
  2142. "samplers" : [
  2143. {
  2144. "interpolation" : "LINEAR",
  2145. "input" : 98,
  2146. "output" : 99
  2147. },
  2148. {
  2149. "interpolation" : "LINEAR",
  2150. "input" : 98,
  2151. "output" : 100
  2152. },
  2153. {
  2154. "interpolation" : "LINEAR",
  2155. "input" : 98,
  2156. "output" : 101
  2157. },
  2158. {
  2159. "interpolation" : "LINEAR",
  2160. "input" : 98,
  2161. "output" : 102
  2162. },
  2163. {
  2164. "interpolation" : "LINEAR",
  2165. "input" : 98,
  2166. "output" : 103
  2167. },
  2168. {
  2169. "interpolation" : "LINEAR",
  2170. "input" : 98,
  2171. "output" : 104
  2172. },
  2173. {
  2174. "interpolation" : "LINEAR",
  2175. "input" : 98,
  2176. "output" : 105
  2177. },
  2178. {
  2179. "interpolation" : "LINEAR",
  2180. "input" : 98,
  2181. "output" : 106
  2182. },
  2183. {
  2184. "interpolation" : "LINEAR",
  2185. "input" : 98,
  2186. "output" : 107
  2187. },
  2188. {
  2189. "interpolation" : "LINEAR",
  2190. "input" : 98,
  2191. "output" : 108
  2192. },
  2193. {
  2194. "interpolation" : "LINEAR",
  2195. "input" : 98,
  2196. "output" : 109
  2197. },
  2198. {
  2199. "interpolation" : "LINEAR",
  2200. "input" : 98,
  2201. "output" : 110
  2202. },
  2203. {
  2204. "interpolation" : "LINEAR",
  2205. "input" : 98,
  2206. "output" : 111
  2207. },
  2208. {
  2209. "interpolation" : "LINEAR",
  2210. "input" : 98,
  2211. "output" : 112
  2212. },
  2213. {
  2214. "interpolation" : "LINEAR",
  2215. "input" : 98,
  2216. "output" : 113
  2217. },
  2218. {
  2219. "interpolation" : "LINEAR",
  2220. "input" : 98,
  2221. "output" : 114
  2222. },
  2223. {
  2224. "interpolation" : "LINEAR",
  2225. "input" : 98,
  2226. "output" : 115
  2227. },
  2228. {
  2229. "interpolation" : "LINEAR",
  2230. "input" : 98,
  2231. "output" : 116
  2232. },
  2233. {
  2234. "interpolation" : "LINEAR",
  2235. "input" : 98,
  2236. "output" : 117
  2237. },
  2238. {
  2239. "interpolation" : "LINEAR",
  2240. "input" : 98,
  2241. "output" : 118
  2242. },
  2243. {
  2244. "interpolation" : "LINEAR",
  2245. "input" : 98,
  2246. "output" : 119
  2247. },
  2248. {
  2249. "interpolation" : "LINEAR",
  2250. "input" : 98,
  2251. "output" : 120
  2252. },
  2253. {
  2254. "interpolation" : "LINEAR",
  2255. "input" : 98,
  2256. "output" : 121
  2257. },
  2258. {
  2259. "interpolation" : "LINEAR",
  2260. "input" : 98,
  2261. "output" : 122
  2262. },
  2263. {
  2264. "interpolation" : "LINEAR",
  2265. "input" : 98,
  2266. "output" : 123
  2267. },
  2268. {
  2269. "interpolation" : "LINEAR",
  2270. "input" : 98,
  2271. "output" : 124
  2272. },
  2273. {
  2274. "interpolation" : "LINEAR",
  2275. "input" : 98,
  2276. "output" : 125
  2277. },
  2278. {
  2279. "interpolation" : "LINEAR",
  2280. "input" : 98,
  2281. "output" : 126
  2282. },
  2283. {
  2284. "interpolation" : "LINEAR",
  2285. "input" : 98,
  2286. "output" : 127
  2287. },
  2288. {
  2289. "interpolation" : "LINEAR",
  2290. "input" : 98,
  2291. "output" : 128
  2292. },
  2293. {
  2294. "interpolation" : "LINEAR",
  2295. "input" : 98,
  2296. "output" : 129
  2297. },
  2298. {
  2299. "interpolation" : "LINEAR",
  2300. "input" : 98,
  2301. "output" : 130
  2302. },
  2303. {
  2304. "interpolation" : "LINEAR",
  2305. "input" : 98,
  2306. "output" : 131
  2307. },
  2308. {
  2309. "interpolation" : "LINEAR",
  2310. "input" : 98,
  2311. "output" : 132
  2312. },
  2313. {
  2314. "interpolation" : "LINEAR",
  2315. "input" : 98,
  2316. "output" : 133
  2317. },
  2318. {
  2319. "interpolation" : "LINEAR",
  2320. "input" : 98,
  2321. "output" : 134
  2322. },
  2323. {
  2324. "interpolation" : "LINEAR",
  2325. "input" : 98,
  2326. "output" : 135
  2327. },
  2328. {
  2329. "interpolation" : "LINEAR",
  2330. "input" : 98,
  2331. "output" : 136
  2332. },
  2333. {
  2334. "interpolation" : "LINEAR",
  2335. "input" : 98,
  2336. "output" : 137
  2337. },
  2338. {
  2339. "interpolation" : "LINEAR",
  2340. "input" : 98,
  2341. "output" : 138
  2342. },
  2343. {
  2344. "interpolation" : "LINEAR",
  2345. "input" : 98,
  2346. "output" : 139
  2347. },
  2348. {
  2349. "interpolation" : "LINEAR",
  2350. "input" : 98,
  2351. "output" : 140
  2352. },
  2353. {
  2354. "interpolation" : "LINEAR",
  2355. "input" : 98,
  2356. "output" : 141
  2357. },
  2358. {
  2359. "interpolation" : "LINEAR",
  2360. "input" : 98,
  2361. "output" : 142
  2362. },
  2363. {
  2364. "interpolation" : "LINEAR",
  2365. "input" : 98,
  2366. "output" : 143
  2367. },
  2368. {
  2369. "interpolation" : "LINEAR",
  2370. "input" : 98,
  2371. "output" : 144
  2372. },
  2373. {
  2374. "interpolation" : "LINEAR",
  2375. "input" : 98,
  2376. "output" : 145
  2377. },
  2378. {
  2379. "interpolation" : "LINEAR",
  2380. "input" : 98,
  2381. "output" : 146
  2382. },
  2383. {
  2384. "interpolation" : "LINEAR",
  2385. "input" : 98,
  2386. "output" : 147
  2387. },
  2388. {
  2389. "interpolation" : "LINEAR",
  2390. "input" : 98,
  2391. "output" : 148
  2392. },
  2393. {
  2394. "interpolation" : "LINEAR",
  2395. "input" : 98,
  2396. "output" : 149
  2397. },
  2398. {
  2399. "interpolation" : "LINEAR",
  2400. "input" : 98,
  2401. "output" : 150
  2402. },
  2403. {
  2404. "interpolation" : "LINEAR",
  2405. "input" : 98,
  2406. "output" : 151
  2407. },
  2408. {
  2409. "interpolation" : "LINEAR",
  2410. "input" : 98,
  2411. "output" : 152
  2412. },
  2413. {
  2414. "interpolation" : "LINEAR",
  2415. "input" : 98,
  2416. "output" : 153
  2417. },
  2418. {
  2419. "interpolation" : "LINEAR",
  2420. "input" : 98,
  2421. "output" : 154
  2422. },
  2423. {
  2424. "interpolation" : "LINEAR",
  2425. "input" : 98,
  2426. "output" : 155
  2427. },
  2428. {
  2429. "interpolation" : "LINEAR",
  2430. "input" : 98,
  2431. "output" : 156
  2432. },
  2433. {
  2434. "interpolation" : "LINEAR",
  2435. "input" : 98,
  2436. "output" : 157
  2437. },
  2438. {
  2439. "interpolation" : "LINEAR",
  2440. "input" : 98,
  2441. "output" : 158
  2442. },
  2443. {
  2444. "interpolation" : "LINEAR",
  2445. "input" : 98,
  2446. "output" : 159
  2447. },
  2448. {
  2449. "interpolation" : "LINEAR",
  2450. "input" : 98,
  2451. "output" : 160
  2452. },
  2453. {
  2454. "interpolation" : "LINEAR",
  2455. "input" : 98,
  2456. "output" : 161
  2457. },
  2458. {
  2459. "interpolation" : "LINEAR",
  2460. "input" : 98,
  2461. "output" : 162
  2462. },
  2463. {
  2464. "interpolation" : "LINEAR",
  2465. "input" : 98,
  2466. "output" : 163
  2467. },
  2468. {
  2469. "interpolation" : "LINEAR",
  2470. "input" : 98,
  2471. "output" : 164
  2472. },
  2473. {
  2474. "interpolation" : "LINEAR",
  2475. "input" : 98,
  2476. "output" : 165
  2477. },
  2478. {
  2479. "interpolation" : "LINEAR",
  2480. "input" : 98,
  2481. "output" : 166
  2482. },
  2483. {
  2484. "interpolation" : "LINEAR",
  2485. "input" : 98,
  2486. "output" : 167
  2487. },
  2488. {
  2489. "interpolation" : "LINEAR",
  2490. "input" : 98,
  2491. "output" : 168
  2492. },
  2493. {
  2494. "interpolation" : "LINEAR",
  2495. "input" : 98,
  2496. "output" : 169
  2497. },
  2498. {
  2499. "interpolation" : "LINEAR",
  2500. "input" : 98,
  2501. "output" : 170
  2502. },
  2503. {
  2504. "interpolation" : "LINEAR",
  2505. "input" : 98,
  2506. "output" : 171
  2507. },
  2508. {
  2509. "interpolation" : "LINEAR",
  2510. "input" : 98,
  2511. "output" : 172
  2512. },
  2513. {
  2514. "interpolation" : "LINEAR",
  2515. "input" : 98,
  2516. "output" : 173
  2517. },
  2518. {
  2519. "interpolation" : "LINEAR",
  2520. "input" : 98,
  2521. "output" : 174
  2522. },
  2523. {
  2524. "interpolation" : "LINEAR",
  2525. "input" : 98,
  2526. "output" : 175
  2527. },
  2528. {
  2529. "interpolation" : "LINEAR",
  2530. "input" : 98,
  2531. "output" : 176
  2532. },
  2533. {
  2534. "interpolation" : "LINEAR",
  2535. "input" : 98,
  2536. "output" : 177
  2537. },
  2538. {
  2539. "interpolation" : "LINEAR",
  2540. "input" : 98,
  2541. "output" : 178
  2542. },
  2543. {
  2544. "interpolation" : "LINEAR",
  2545. "input" : 98,
  2546. "output" : 179
  2547. },
  2548. {
  2549. "interpolation" : "LINEAR",
  2550. "input" : 98,
  2551. "output" : 180
  2552. },
  2553. {
  2554. "interpolation" : "LINEAR",
  2555. "input" : 98,
  2556. "output" : 181
  2557. },
  2558. {
  2559. "interpolation" : "LINEAR",
  2560. "input" : 98,
  2561. "output" : 182
  2562. }
  2563. ]
  2564. },
  2565. {
  2566. "name" : "Death",
  2567. "channels" : [
  2568. {
  2569. "target" : {
  2570. "node" : 27,
  2571. "path" : "translation"
  2572. },
  2573. "sampler" : 0
  2574. },
  2575. {
  2576. "target" : {
  2577. "node" : 27,
  2578. "path" : "rotation"
  2579. },
  2580. "sampler" : 1
  2581. },
  2582. {
  2583. "target" : {
  2584. "node" : 27,
  2585. "path" : "scale"
  2586. },
  2587. "sampler" : 2
  2588. },
  2589. {
  2590. "target" : {
  2591. "node" : 0,
  2592. "path" : "translation"
  2593. },
  2594. "sampler" : 3
  2595. },
  2596. {
  2597. "target" : {
  2598. "node" : 0,
  2599. "path" : "rotation"
  2600. },
  2601. "sampler" : 4
  2602. },
  2603. {
  2604. "target" : {
  2605. "node" : 0,
  2606. "path" : "scale"
  2607. },
  2608. "sampler" : 5
  2609. },
  2610. {
  2611. "target" : {
  2612. "node" : 23,
  2613. "path" : "translation"
  2614. },
  2615. "sampler" : 6
  2616. },
  2617. {
  2618. "target" : {
  2619. "node" : 23,
  2620. "path" : "rotation"
  2621. },
  2622. "sampler" : 7
  2623. },
  2624. {
  2625. "target" : {
  2626. "node" : 23,
  2627. "path" : "scale"
  2628. },
  2629. "sampler" : 8
  2630. },
  2631. {
  2632. "target" : {
  2633. "node" : 3,
  2634. "path" : "translation"
  2635. },
  2636. "sampler" : 9
  2637. },
  2638. {
  2639. "target" : {
  2640. "node" : 3,
  2641. "path" : "rotation"
  2642. },
  2643. "sampler" : 10
  2644. },
  2645. {
  2646. "target" : {
  2647. "node" : 3,
  2648. "path" : "scale"
  2649. },
  2650. "sampler" : 11
  2651. },
  2652. {
  2653. "target" : {
  2654. "node" : 2,
  2655. "path" : "translation"
  2656. },
  2657. "sampler" : 12
  2658. },
  2659. {
  2660. "target" : {
  2661. "node" : 2,
  2662. "path" : "rotation"
  2663. },
  2664. "sampler" : 13
  2665. },
  2666. {
  2667. "target" : {
  2668. "node" : 2,
  2669. "path" : "scale"
  2670. },
  2671. "sampler" : 14
  2672. },
  2673. {
  2674. "target" : {
  2675. "node" : 1,
  2676. "path" : "translation"
  2677. },
  2678. "sampler" : 15
  2679. },
  2680. {
  2681. "target" : {
  2682. "node" : 1,
  2683. "path" : "rotation"
  2684. },
  2685. "sampler" : 16
  2686. },
  2687. {
  2688. "target" : {
  2689. "node" : 1,
  2690. "path" : "scale"
  2691. },
  2692. "sampler" : 17
  2693. },
  2694. {
  2695. "target" : {
  2696. "node" : 6,
  2697. "path" : "translation"
  2698. },
  2699. "sampler" : 18
  2700. },
  2701. {
  2702. "target" : {
  2703. "node" : 6,
  2704. "path" : "rotation"
  2705. },
  2706. "sampler" : 19
  2707. },
  2708. {
  2709. "target" : {
  2710. "node" : 6,
  2711. "path" : "scale"
  2712. },
  2713. "sampler" : 20
  2714. },
  2715. {
  2716. "target" : {
  2717. "node" : 5,
  2718. "path" : "translation"
  2719. },
  2720. "sampler" : 21
  2721. },
  2722. {
  2723. "target" : {
  2724. "node" : 5,
  2725. "path" : "rotation"
  2726. },
  2727. "sampler" : 22
  2728. },
  2729. {
  2730. "target" : {
  2731. "node" : 5,
  2732. "path" : "scale"
  2733. },
  2734. "sampler" : 23
  2735. },
  2736. {
  2737. "target" : {
  2738. "node" : 4,
  2739. "path" : "translation"
  2740. },
  2741. "sampler" : 24
  2742. },
  2743. {
  2744. "target" : {
  2745. "node" : 4,
  2746. "path" : "rotation"
  2747. },
  2748. "sampler" : 25
  2749. },
  2750. {
  2751. "target" : {
  2752. "node" : 4,
  2753. "path" : "scale"
  2754. },
  2755. "sampler" : 26
  2756. },
  2757. {
  2758. "target" : {
  2759. "node" : 9,
  2760. "path" : "translation"
  2761. },
  2762. "sampler" : 27
  2763. },
  2764. {
  2765. "target" : {
  2766. "node" : 9,
  2767. "path" : "rotation"
  2768. },
  2769. "sampler" : 28
  2770. },
  2771. {
  2772. "target" : {
  2773. "node" : 9,
  2774. "path" : "scale"
  2775. },
  2776. "sampler" : 29
  2777. },
  2778. {
  2779. "target" : {
  2780. "node" : 8,
  2781. "path" : "translation"
  2782. },
  2783. "sampler" : 30
  2784. },
  2785. {
  2786. "target" : {
  2787. "node" : 8,
  2788. "path" : "rotation"
  2789. },
  2790. "sampler" : 31
  2791. },
  2792. {
  2793. "target" : {
  2794. "node" : 8,
  2795. "path" : "scale"
  2796. },
  2797. "sampler" : 32
  2798. },
  2799. {
  2800. "target" : {
  2801. "node" : 7,
  2802. "path" : "translation"
  2803. },
  2804. "sampler" : 33
  2805. },
  2806. {
  2807. "target" : {
  2808. "node" : 7,
  2809. "path" : "rotation"
  2810. },
  2811. "sampler" : 34
  2812. },
  2813. {
  2814. "target" : {
  2815. "node" : 7,
  2816. "path" : "scale"
  2817. },
  2818. "sampler" : 35
  2819. },
  2820. {
  2821. "target" : {
  2822. "node" : 12,
  2823. "path" : "translation"
  2824. },
  2825. "sampler" : 36
  2826. },
  2827. {
  2828. "target" : {
  2829. "node" : 12,
  2830. "path" : "rotation"
  2831. },
  2832. "sampler" : 37
  2833. },
  2834. {
  2835. "target" : {
  2836. "node" : 12,
  2837. "path" : "scale"
  2838. },
  2839. "sampler" : 38
  2840. },
  2841. {
  2842. "target" : {
  2843. "node" : 11,
  2844. "path" : "translation"
  2845. },
  2846. "sampler" : 39
  2847. },
  2848. {
  2849. "target" : {
  2850. "node" : 11,
  2851. "path" : "rotation"
  2852. },
  2853. "sampler" : 40
  2854. },
  2855. {
  2856. "target" : {
  2857. "node" : 11,
  2858. "path" : "scale"
  2859. },
  2860. "sampler" : 41
  2861. },
  2862. {
  2863. "target" : {
  2864. "node" : 10,
  2865. "path" : "translation"
  2866. },
  2867. "sampler" : 42
  2868. },
  2869. {
  2870. "target" : {
  2871. "node" : 10,
  2872. "path" : "rotation"
  2873. },
  2874. "sampler" : 43
  2875. },
  2876. {
  2877. "target" : {
  2878. "node" : 10,
  2879. "path" : "scale"
  2880. },
  2881. "sampler" : 44
  2882. },
  2883. {
  2884. "target" : {
  2885. "node" : 17,
  2886. "path" : "translation"
  2887. },
  2888. "sampler" : 45
  2889. },
  2890. {
  2891. "target" : {
  2892. "node" : 17,
  2893. "path" : "rotation"
  2894. },
  2895. "sampler" : 46
  2896. },
  2897. {
  2898. "target" : {
  2899. "node" : 17,
  2900. "path" : "scale"
  2901. },
  2902. "sampler" : 47
  2903. },
  2904. {
  2905. "target" : {
  2906. "node" : 16,
  2907. "path" : "translation"
  2908. },
  2909. "sampler" : 48
  2910. },
  2911. {
  2912. "target" : {
  2913. "node" : 16,
  2914. "path" : "rotation"
  2915. },
  2916. "sampler" : 49
  2917. },
  2918. {
  2919. "target" : {
  2920. "node" : 16,
  2921. "path" : "scale"
  2922. },
  2923. "sampler" : 50
  2924. },
  2925. {
  2926. "target" : {
  2927. "node" : 15,
  2928. "path" : "translation"
  2929. },
  2930. "sampler" : 51
  2931. },
  2932. {
  2933. "target" : {
  2934. "node" : 15,
  2935. "path" : "rotation"
  2936. },
  2937. "sampler" : 52
  2938. },
  2939. {
  2940. "target" : {
  2941. "node" : 15,
  2942. "path" : "scale"
  2943. },
  2944. "sampler" : 53
  2945. },
  2946. {
  2947. "target" : {
  2948. "node" : 14,
  2949. "path" : "translation"
  2950. },
  2951. "sampler" : 54
  2952. },
  2953. {
  2954. "target" : {
  2955. "node" : 14,
  2956. "path" : "rotation"
  2957. },
  2958. "sampler" : 55
  2959. },
  2960. {
  2961. "target" : {
  2962. "node" : 14,
  2963. "path" : "scale"
  2964. },
  2965. "sampler" : 56
  2966. },
  2967. {
  2968. "target" : {
  2969. "node" : 13,
  2970. "path" : "translation"
  2971. },
  2972. "sampler" : 57
  2973. },
  2974. {
  2975. "target" : {
  2976. "node" : 13,
  2977. "path" : "rotation"
  2978. },
  2979. "sampler" : 58
  2980. },
  2981. {
  2982. "target" : {
  2983. "node" : 13,
  2984. "path" : "scale"
  2985. },
  2986. "sampler" : 59
  2987. },
  2988. {
  2989. "target" : {
  2990. "node" : 20,
  2991. "path" : "translation"
  2992. },
  2993. "sampler" : 60
  2994. },
  2995. {
  2996. "target" : {
  2997. "node" : 20,
  2998. "path" : "rotation"
  2999. },
  3000. "sampler" : 61
  3001. },
  3002. {
  3003. "target" : {
  3004. "node" : 20,
  3005. "path" : "scale"
  3006. },
  3007. "sampler" : 62
  3008. },
  3009. {
  3010. "target" : {
  3011. "node" : 19,
  3012. "path" : "translation"
  3013. },
  3014. "sampler" : 63
  3015. },
  3016. {
  3017. "target" : {
  3018. "node" : 19,
  3019. "path" : "rotation"
  3020. },
  3021. "sampler" : 64
  3022. },
  3023. {
  3024. "target" : {
  3025. "node" : 19,
  3026. "path" : "scale"
  3027. },
  3028. "sampler" : 65
  3029. },
  3030. {
  3031. "target" : {
  3032. "node" : 18,
  3033. "path" : "translation"
  3034. },
  3035. "sampler" : 66
  3036. },
  3037. {
  3038. "target" : {
  3039. "node" : 18,
  3040. "path" : "rotation"
  3041. },
  3042. "sampler" : 67
  3043. },
  3044. {
  3045. "target" : {
  3046. "node" : 18,
  3047. "path" : "scale"
  3048. },
  3049. "sampler" : 68
  3050. },
  3051. {
  3052. "target" : {
  3053. "node" : 22,
  3054. "path" : "translation"
  3055. },
  3056. "sampler" : 69
  3057. },
  3058. {
  3059. "target" : {
  3060. "node" : 22,
  3061. "path" : "rotation"
  3062. },
  3063. "sampler" : 70
  3064. },
  3065. {
  3066. "target" : {
  3067. "node" : 22,
  3068. "path" : "scale"
  3069. },
  3070. "sampler" : 71
  3071. },
  3072. {
  3073. "target" : {
  3074. "node" : 21,
  3075. "path" : "translation"
  3076. },
  3077. "sampler" : 72
  3078. },
  3079. {
  3080. "target" : {
  3081. "node" : 21,
  3082. "path" : "rotation"
  3083. },
  3084. "sampler" : 73
  3085. },
  3086. {
  3087. "target" : {
  3088. "node" : 21,
  3089. "path" : "scale"
  3090. },
  3091. "sampler" : 74
  3092. },
  3093. {
  3094. "target" : {
  3095. "node" : 24,
  3096. "path" : "translation"
  3097. },
  3098. "sampler" : 75
  3099. },
  3100. {
  3101. "target" : {
  3102. "node" : 24,
  3103. "path" : "rotation"
  3104. },
  3105. "sampler" : 76
  3106. },
  3107. {
  3108. "target" : {
  3109. "node" : 24,
  3110. "path" : "scale"
  3111. },
  3112. "sampler" : 77
  3113. },
  3114. {
  3115. "target" : {
  3116. "node" : 25,
  3117. "path" : "translation"
  3118. },
  3119. "sampler" : 78
  3120. },
  3121. {
  3122. "target" : {
  3123. "node" : 25,
  3124. "path" : "rotation"
  3125. },
  3126. "sampler" : 79
  3127. },
  3128. {
  3129. "target" : {
  3130. "node" : 25,
  3131. "path" : "scale"
  3132. },
  3133. "sampler" : 80
  3134. },
  3135. {
  3136. "target" : {
  3137. "node" : 26,
  3138. "path" : "translation"
  3139. },
  3140. "sampler" : 81
  3141. },
  3142. {
  3143. "target" : {
  3144. "node" : 26,
  3145. "path" : "rotation"
  3146. },
  3147. "sampler" : 82
  3148. },
  3149. {
  3150. "target" : {
  3151. "node" : 26,
  3152. "path" : "scale"
  3153. },
  3154. "sampler" : 83
  3155. }
  3156. ],
  3157. "samplers" : [
  3158. {
  3159. "interpolation" : "LINEAR",
  3160. "input" : 183,
  3161. "output" : 184
  3162. },
  3163. {
  3164. "interpolation" : "LINEAR",
  3165. "input" : 183,
  3166. "output" : 185
  3167. },
  3168. {
  3169. "interpolation" : "LINEAR",
  3170. "input" : 183,
  3171. "output" : 186
  3172. },
  3173. {
  3174. "interpolation" : "LINEAR",
  3175. "input" : 183,
  3176. "output" : 187
  3177. },
  3178. {
  3179. "interpolation" : "LINEAR",
  3180. "input" : 183,
  3181. "output" : 188
  3182. },
  3183. {
  3184. "interpolation" : "LINEAR",
  3185. "input" : 183,
  3186. "output" : 189
  3187. },
  3188. {
  3189. "interpolation" : "LINEAR",
  3190. "input" : 183,
  3191. "output" : 190
  3192. },
  3193. {
  3194. "interpolation" : "LINEAR",
  3195. "input" : 183,
  3196. "output" : 191
  3197. },
  3198. {
  3199. "interpolation" : "LINEAR",
  3200. "input" : 183,
  3201. "output" : 192
  3202. },
  3203. {
  3204. "interpolation" : "LINEAR",
  3205. "input" : 183,
  3206. "output" : 193
  3207. },
  3208. {
  3209. "interpolation" : "LINEAR",
  3210. "input" : 183,
  3211. "output" : 194
  3212. },
  3213. {
  3214. "interpolation" : "LINEAR",
  3215. "input" : 183,
  3216. "output" : 195
  3217. },
  3218. {
  3219. "interpolation" : "LINEAR",
  3220. "input" : 183,
  3221. "output" : 196
  3222. },
  3223. {
  3224. "interpolation" : "LINEAR",
  3225. "input" : 183,
  3226. "output" : 197
  3227. },
  3228. {
  3229. "interpolation" : "LINEAR",
  3230. "input" : 183,
  3231. "output" : 198
  3232. },
  3233. {
  3234. "interpolation" : "LINEAR",
  3235. "input" : 183,
  3236. "output" : 199
  3237. },
  3238. {
  3239. "interpolation" : "LINEAR",
  3240. "input" : 183,
  3241. "output" : 200
  3242. },
  3243. {
  3244. "interpolation" : "LINEAR",
  3245. "input" : 183,
  3246. "output" : 201
  3247. },
  3248. {
  3249. "interpolation" : "LINEAR",
  3250. "input" : 183,
  3251. "output" : 202
  3252. },
  3253. {
  3254. "interpolation" : "LINEAR",
  3255. "input" : 183,
  3256. "output" : 203
  3257. },
  3258. {
  3259. "interpolation" : "LINEAR",
  3260. "input" : 183,
  3261. "output" : 204
  3262. },
  3263. {
  3264. "interpolation" : "LINEAR",
  3265. "input" : 183,
  3266. "output" : 205
  3267. },
  3268. {
  3269. "interpolation" : "LINEAR",
  3270. "input" : 183,
  3271. "output" : 206
  3272. },
  3273. {
  3274. "interpolation" : "LINEAR",
  3275. "input" : 183,
  3276. "output" : 207
  3277. },
  3278. {
  3279. "interpolation" : "LINEAR",
  3280. "input" : 183,
  3281. "output" : 208
  3282. },
  3283. {
  3284. "interpolation" : "LINEAR",
  3285. "input" : 183,
  3286. "output" : 209
  3287. },
  3288. {
  3289. "interpolation" : "LINEAR",
  3290. "input" : 183,
  3291. "output" : 210
  3292. },
  3293. {
  3294. "interpolation" : "LINEAR",
  3295. "input" : 183,
  3296. "output" : 211
  3297. },
  3298. {
  3299. "interpolation" : "LINEAR",
  3300. "input" : 183,
  3301. "output" : 212
  3302. },
  3303. {
  3304. "interpolation" : "LINEAR",
  3305. "input" : 183,
  3306. "output" : 213
  3307. },
  3308. {
  3309. "interpolation" : "LINEAR",
  3310. "input" : 183,
  3311. "output" : 214
  3312. },
  3313. {
  3314. "interpolation" : "LINEAR",
  3315. "input" : 183,
  3316. "output" : 215
  3317. },
  3318. {
  3319. "interpolation" : "LINEAR",
  3320. "input" : 183,
  3321. "output" : 216
  3322. },
  3323. {
  3324. "interpolation" : "LINEAR",
  3325. "input" : 183,
  3326. "output" : 217
  3327. },
  3328. {
  3329. "interpolation" : "LINEAR",
  3330. "input" : 183,
  3331. "output" : 218
  3332. },
  3333. {
  3334. "interpolation" : "LINEAR",
  3335. "input" : 183,
  3336. "output" : 219
  3337. },
  3338. {
  3339. "interpolation" : "LINEAR",
  3340. "input" : 183,
  3341. "output" : 220
  3342. },
  3343. {
  3344. "interpolation" : "LINEAR",
  3345. "input" : 183,
  3346. "output" : 221
  3347. },
  3348. {
  3349. "interpolation" : "LINEAR",
  3350. "input" : 183,
  3351. "output" : 222
  3352. },
  3353. {
  3354. "interpolation" : "LINEAR",
  3355. "input" : 183,
  3356. "output" : 223
  3357. },
  3358. {
  3359. "interpolation" : "LINEAR",
  3360. "input" : 183,
  3361. "output" : 224
  3362. },
  3363. {
  3364. "interpolation" : "LINEAR",
  3365. "input" : 183,
  3366. "output" : 225
  3367. },
  3368. {
  3369. "interpolation" : "LINEAR",
  3370. "input" : 183,
  3371. "output" : 226
  3372. },
  3373. {
  3374. "interpolation" : "LINEAR",
  3375. "input" : 183,
  3376. "output" : 227
  3377. },
  3378. {
  3379. "interpolation" : "LINEAR",
  3380. "input" : 183,
  3381. "output" : 228
  3382. },
  3383. {
  3384. "interpolation" : "LINEAR",
  3385. "input" : 183,
  3386. "output" : 229
  3387. },
  3388. {
  3389. "interpolation" : "LINEAR",
  3390. "input" : 183,
  3391. "output" : 230
  3392. },
  3393. {
  3394. "interpolation" : "LINEAR",
  3395. "input" : 183,
  3396. "output" : 231
  3397. },
  3398. {
  3399. "interpolation" : "LINEAR",
  3400. "input" : 183,
  3401. "output" : 232
  3402. },
  3403. {
  3404. "interpolation" : "LINEAR",
  3405. "input" : 183,
  3406. "output" : 233
  3407. },
  3408. {
  3409. "interpolation" : "LINEAR",
  3410. "input" : 183,
  3411. "output" : 234
  3412. },
  3413. {
  3414. "interpolation" : "LINEAR",
  3415. "input" : 183,
  3416. "output" : 235
  3417. },
  3418. {
  3419. "interpolation" : "LINEAR",
  3420. "input" : 183,
  3421. "output" : 236
  3422. },
  3423. {
  3424. "interpolation" : "LINEAR",
  3425. "input" : 183,
  3426. "output" : 237
  3427. },
  3428. {
  3429. "interpolation" : "LINEAR",
  3430. "input" : 183,
  3431. "output" : 238
  3432. },
  3433. {
  3434. "interpolation" : "LINEAR",
  3435. "input" : 183,
  3436. "output" : 239
  3437. },
  3438. {
  3439. "interpolation" : "LINEAR",
  3440. "input" : 183,
  3441. "output" : 240
  3442. },
  3443. {
  3444. "interpolation" : "LINEAR",
  3445. "input" : 183,
  3446. "output" : 241
  3447. },
  3448. {
  3449. "interpolation" : "LINEAR",
  3450. "input" : 183,
  3451. "output" : 242
  3452. },
  3453. {
  3454. "interpolation" : "LINEAR",
  3455. "input" : 183,
  3456. "output" : 243
  3457. },
  3458. {
  3459. "interpolation" : "LINEAR",
  3460. "input" : 183,
  3461. "output" : 244
  3462. },
  3463. {
  3464. "interpolation" : "LINEAR",
  3465. "input" : 183,
  3466. "output" : 245
  3467. },
  3468. {
  3469. "interpolation" : "LINEAR",
  3470. "input" : 183,
  3471. "output" : 246
  3472. },
  3473. {
  3474. "interpolation" : "LINEAR",
  3475. "input" : 183,
  3476. "output" : 247
  3477. },
  3478. {
  3479. "interpolation" : "LINEAR",
  3480. "input" : 183,
  3481. "output" : 248
  3482. },
  3483. {
  3484. "interpolation" : "LINEAR",
  3485. "input" : 183,
  3486. "output" : 249
  3487. },
  3488. {
  3489. "interpolation" : "LINEAR",
  3490. "input" : 183,
  3491. "output" : 250
  3492. },
  3493. {
  3494. "interpolation" : "LINEAR",
  3495. "input" : 183,
  3496. "output" : 251
  3497. },
  3498. {
  3499. "interpolation" : "LINEAR",
  3500. "input" : 183,
  3501. "output" : 252
  3502. },
  3503. {
  3504. "interpolation" : "LINEAR",
  3505. "input" : 183,
  3506. "output" : 253
  3507. },
  3508. {
  3509. "interpolation" : "LINEAR",
  3510. "input" : 183,
  3511. "output" : 254
  3512. },
  3513. {
  3514. "interpolation" : "LINEAR",
  3515. "input" : 183,
  3516. "output" : 255
  3517. },
  3518. {
  3519. "interpolation" : "LINEAR",
  3520. "input" : 183,
  3521. "output" : 256
  3522. },
  3523. {
  3524. "interpolation" : "LINEAR",
  3525. "input" : 183,
  3526. "output" : 257
  3527. },
  3528. {
  3529. "interpolation" : "LINEAR",
  3530. "input" : 183,
  3531. "output" : 258
  3532. },
  3533. {
  3534. "interpolation" : "LINEAR",
  3535. "input" : 183,
  3536. "output" : 259
  3537. },
  3538. {
  3539. "interpolation" : "LINEAR",
  3540. "input" : 183,
  3541. "output" : 260
  3542. },
  3543. {
  3544. "interpolation" : "LINEAR",
  3545. "input" : 183,
  3546. "output" : 261
  3547. },
  3548. {
  3549. "interpolation" : "LINEAR",
  3550. "input" : 183,
  3551. "output" : 262
  3552. },
  3553. {
  3554. "interpolation" : "LINEAR",
  3555. "input" : 183,
  3556. "output" : 263
  3557. },
  3558. {
  3559. "interpolation" : "LINEAR",
  3560. "input" : 183,
  3561. "output" : 264
  3562. },
  3563. {
  3564. "interpolation" : "LINEAR",
  3565. "input" : 183,
  3566. "output" : 265
  3567. },
  3568. {
  3569. "interpolation" : "LINEAR",
  3570. "input" : 183,
  3571. "output" : 266
  3572. },
  3573. {
  3574. "interpolation" : "LINEAR",
  3575. "input" : 183,
  3576. "output" : 267
  3577. }
  3578. ]
  3579. },
  3580. {
  3581. "name" : "WalkSlow",
  3582. "channels" : [
  3583. {
  3584. "target" : {
  3585. "node" : 27,
  3586. "path" : "translation"
  3587. },
  3588. "sampler" : 0
  3589. },
  3590. {
  3591. "target" : {
  3592. "node" : 27,
  3593. "path" : "rotation"
  3594. },
  3595. "sampler" : 1
  3596. },
  3597. {
  3598. "target" : {
  3599. "node" : 27,
  3600. "path" : "scale"
  3601. },
  3602. "sampler" : 2
  3603. },
  3604. {
  3605. "target" : {
  3606. "node" : 0,
  3607. "path" : "translation"
  3608. },
  3609. "sampler" : 3
  3610. },
  3611. {
  3612. "target" : {
  3613. "node" : 0,
  3614. "path" : "rotation"
  3615. },
  3616. "sampler" : 4
  3617. },
  3618. {
  3619. "target" : {
  3620. "node" : 0,
  3621. "path" : "scale"
  3622. },
  3623. "sampler" : 5
  3624. },
  3625. {
  3626. "target" : {
  3627. "node" : 23,
  3628. "path" : "translation"
  3629. },
  3630. "sampler" : 6
  3631. },
  3632. {
  3633. "target" : {
  3634. "node" : 23,
  3635. "path" : "rotation"
  3636. },
  3637. "sampler" : 7
  3638. },
  3639. {
  3640. "target" : {
  3641. "node" : 23,
  3642. "path" : "scale"
  3643. },
  3644. "sampler" : 8
  3645. },
  3646. {
  3647. "target" : {
  3648. "node" : 3,
  3649. "path" : "translation"
  3650. },
  3651. "sampler" : 9
  3652. },
  3653. {
  3654. "target" : {
  3655. "node" : 3,
  3656. "path" : "rotation"
  3657. },
  3658. "sampler" : 10
  3659. },
  3660. {
  3661. "target" : {
  3662. "node" : 3,
  3663. "path" : "scale"
  3664. },
  3665. "sampler" : 11
  3666. },
  3667. {
  3668. "target" : {
  3669. "node" : 2,
  3670. "path" : "translation"
  3671. },
  3672. "sampler" : 12
  3673. },
  3674. {
  3675. "target" : {
  3676. "node" : 2,
  3677. "path" : "rotation"
  3678. },
  3679. "sampler" : 13
  3680. },
  3681. {
  3682. "target" : {
  3683. "node" : 2,
  3684. "path" : "scale"
  3685. },
  3686. "sampler" : 14
  3687. },
  3688. {
  3689. "target" : {
  3690. "node" : 1,
  3691. "path" : "translation"
  3692. },
  3693. "sampler" : 15
  3694. },
  3695. {
  3696. "target" : {
  3697. "node" : 1,
  3698. "path" : "rotation"
  3699. },
  3700. "sampler" : 16
  3701. },
  3702. {
  3703. "target" : {
  3704. "node" : 1,
  3705. "path" : "scale"
  3706. },
  3707. "sampler" : 17
  3708. },
  3709. {
  3710. "target" : {
  3711. "node" : 6,
  3712. "path" : "translation"
  3713. },
  3714. "sampler" : 18
  3715. },
  3716. {
  3717. "target" : {
  3718. "node" : 6,
  3719. "path" : "rotation"
  3720. },
  3721. "sampler" : 19
  3722. },
  3723. {
  3724. "target" : {
  3725. "node" : 6,
  3726. "path" : "scale"
  3727. },
  3728. "sampler" : 20
  3729. },
  3730. {
  3731. "target" : {
  3732. "node" : 5,
  3733. "path" : "translation"
  3734. },
  3735. "sampler" : 21
  3736. },
  3737. {
  3738. "target" : {
  3739. "node" : 5,
  3740. "path" : "rotation"
  3741. },
  3742. "sampler" : 22
  3743. },
  3744. {
  3745. "target" : {
  3746. "node" : 5,
  3747. "path" : "scale"
  3748. },
  3749. "sampler" : 23
  3750. },
  3751. {
  3752. "target" : {
  3753. "node" : 4,
  3754. "path" : "translation"
  3755. },
  3756. "sampler" : 24
  3757. },
  3758. {
  3759. "target" : {
  3760. "node" : 4,
  3761. "path" : "rotation"
  3762. },
  3763. "sampler" : 25
  3764. },
  3765. {
  3766. "target" : {
  3767. "node" : 4,
  3768. "path" : "scale"
  3769. },
  3770. "sampler" : 26
  3771. },
  3772. {
  3773. "target" : {
  3774. "node" : 9,
  3775. "path" : "translation"
  3776. },
  3777. "sampler" : 27
  3778. },
  3779. {
  3780. "target" : {
  3781. "node" : 9,
  3782. "path" : "rotation"
  3783. },
  3784. "sampler" : 28
  3785. },
  3786. {
  3787. "target" : {
  3788. "node" : 9,
  3789. "path" : "scale"
  3790. },
  3791. "sampler" : 29
  3792. },
  3793. {
  3794. "target" : {
  3795. "node" : 8,
  3796. "path" : "translation"
  3797. },
  3798. "sampler" : 30
  3799. },
  3800. {
  3801. "target" : {
  3802. "node" : 8,
  3803. "path" : "rotation"
  3804. },
  3805. "sampler" : 31
  3806. },
  3807. {
  3808. "target" : {
  3809. "node" : 8,
  3810. "path" : "scale"
  3811. },
  3812. "sampler" : 32
  3813. },
  3814. {
  3815. "target" : {
  3816. "node" : 7,
  3817. "path" : "translation"
  3818. },
  3819. "sampler" : 33
  3820. },
  3821. {
  3822. "target" : {
  3823. "node" : 7,
  3824. "path" : "rotation"
  3825. },
  3826. "sampler" : 34
  3827. },
  3828. {
  3829. "target" : {
  3830. "node" : 7,
  3831. "path" : "scale"
  3832. },
  3833. "sampler" : 35
  3834. },
  3835. {
  3836. "target" : {
  3837. "node" : 12,
  3838. "path" : "translation"
  3839. },
  3840. "sampler" : 36
  3841. },
  3842. {
  3843. "target" : {
  3844. "node" : 12,
  3845. "path" : "rotation"
  3846. },
  3847. "sampler" : 37
  3848. },
  3849. {
  3850. "target" : {
  3851. "node" : 12,
  3852. "path" : "scale"
  3853. },
  3854. "sampler" : 38
  3855. },
  3856. {
  3857. "target" : {
  3858. "node" : 11,
  3859. "path" : "translation"
  3860. },
  3861. "sampler" : 39
  3862. },
  3863. {
  3864. "target" : {
  3865. "node" : 11,
  3866. "path" : "rotation"
  3867. },
  3868. "sampler" : 40
  3869. },
  3870. {
  3871. "target" : {
  3872. "node" : 11,
  3873. "path" : "scale"
  3874. },
  3875. "sampler" : 41
  3876. },
  3877. {
  3878. "target" : {
  3879. "node" : 10,
  3880. "path" : "translation"
  3881. },
  3882. "sampler" : 42
  3883. },
  3884. {
  3885. "target" : {
  3886. "node" : 10,
  3887. "path" : "rotation"
  3888. },
  3889. "sampler" : 43
  3890. },
  3891. {
  3892. "target" : {
  3893. "node" : 10,
  3894. "path" : "scale"
  3895. },
  3896. "sampler" : 44
  3897. },
  3898. {
  3899. "target" : {
  3900. "node" : 17,
  3901. "path" : "translation"
  3902. },
  3903. "sampler" : 45
  3904. },
  3905. {
  3906. "target" : {
  3907. "node" : 17,
  3908. "path" : "rotation"
  3909. },
  3910. "sampler" : 46
  3911. },
  3912. {
  3913. "target" : {
  3914. "node" : 17,
  3915. "path" : "scale"
  3916. },
  3917. "sampler" : 47
  3918. },
  3919. {
  3920. "target" : {
  3921. "node" : 16,
  3922. "path" : "translation"
  3923. },
  3924. "sampler" : 48
  3925. },
  3926. {
  3927. "target" : {
  3928. "node" : 16,
  3929. "path" : "rotation"
  3930. },
  3931. "sampler" : 49
  3932. },
  3933. {
  3934. "target" : {
  3935. "node" : 16,
  3936. "path" : "scale"
  3937. },
  3938. "sampler" : 50
  3939. },
  3940. {
  3941. "target" : {
  3942. "node" : 15,
  3943. "path" : "translation"
  3944. },
  3945. "sampler" : 51
  3946. },
  3947. {
  3948. "target" : {
  3949. "node" : 15,
  3950. "path" : "rotation"
  3951. },
  3952. "sampler" : 52
  3953. },
  3954. {
  3955. "target" : {
  3956. "node" : 15,
  3957. "path" : "scale"
  3958. },
  3959. "sampler" : 53
  3960. },
  3961. {
  3962. "target" : {
  3963. "node" : 14,
  3964. "path" : "translation"
  3965. },
  3966. "sampler" : 54
  3967. },
  3968. {
  3969. "target" : {
  3970. "node" : 14,
  3971. "path" : "rotation"
  3972. },
  3973. "sampler" : 55
  3974. },
  3975. {
  3976. "target" : {
  3977. "node" : 14,
  3978. "path" : "scale"
  3979. },
  3980. "sampler" : 56
  3981. },
  3982. {
  3983. "target" : {
  3984. "node" : 13,
  3985. "path" : "translation"
  3986. },
  3987. "sampler" : 57
  3988. },
  3989. {
  3990. "target" : {
  3991. "node" : 13,
  3992. "path" : "rotation"
  3993. },
  3994. "sampler" : 58
  3995. },
  3996. {
  3997. "target" : {
  3998. "node" : 13,
  3999. "path" : "scale"
  4000. },
  4001. "sampler" : 59
  4002. },
  4003. {
  4004. "target" : {
  4005. "node" : 20,
  4006. "path" : "translation"
  4007. },
  4008. "sampler" : 60
  4009. },
  4010. {
  4011. "target" : {
  4012. "node" : 20,
  4013. "path" : "rotation"
  4014. },
  4015. "sampler" : 61
  4016. },
  4017. {
  4018. "target" : {
  4019. "node" : 20,
  4020. "path" : "scale"
  4021. },
  4022. "sampler" : 62
  4023. },
  4024. {
  4025. "target" : {
  4026. "node" : 19,
  4027. "path" : "translation"
  4028. },
  4029. "sampler" : 63
  4030. },
  4031. {
  4032. "target" : {
  4033. "node" : 19,
  4034. "path" : "rotation"
  4035. },
  4036. "sampler" : 64
  4037. },
  4038. {
  4039. "target" : {
  4040. "node" : 19,
  4041. "path" : "scale"
  4042. },
  4043. "sampler" : 65
  4044. },
  4045. {
  4046. "target" : {
  4047. "node" : 18,
  4048. "path" : "translation"
  4049. },
  4050. "sampler" : 66
  4051. },
  4052. {
  4053. "target" : {
  4054. "node" : 18,
  4055. "path" : "rotation"
  4056. },
  4057. "sampler" : 67
  4058. },
  4059. {
  4060. "target" : {
  4061. "node" : 18,
  4062. "path" : "scale"
  4063. },
  4064. "sampler" : 68
  4065. },
  4066. {
  4067. "target" : {
  4068. "node" : 22,
  4069. "path" : "translation"
  4070. },
  4071. "sampler" : 69
  4072. },
  4073. {
  4074. "target" : {
  4075. "node" : 22,
  4076. "path" : "rotation"
  4077. },
  4078. "sampler" : 70
  4079. },
  4080. {
  4081. "target" : {
  4082. "node" : 22,
  4083. "path" : "scale"
  4084. },
  4085. "sampler" : 71
  4086. },
  4087. {
  4088. "target" : {
  4089. "node" : 21,
  4090. "path" : "translation"
  4091. },
  4092. "sampler" : 72
  4093. },
  4094. {
  4095. "target" : {
  4096. "node" : 21,
  4097. "path" : "rotation"
  4098. },
  4099. "sampler" : 73
  4100. },
  4101. {
  4102. "target" : {
  4103. "node" : 21,
  4104. "path" : "scale"
  4105. },
  4106. "sampler" : 74
  4107. },
  4108. {
  4109. "target" : {
  4110. "node" : 24,
  4111. "path" : "translation"
  4112. },
  4113. "sampler" : 75
  4114. },
  4115. {
  4116. "target" : {
  4117. "node" : 24,
  4118. "path" : "rotation"
  4119. },
  4120. "sampler" : 76
  4121. },
  4122. {
  4123. "target" : {
  4124. "node" : 24,
  4125. "path" : "scale"
  4126. },
  4127. "sampler" : 77
  4128. },
  4129. {
  4130. "target" : {
  4131. "node" : 25,
  4132. "path" : "translation"
  4133. },
  4134. "sampler" : 78
  4135. },
  4136. {
  4137. "target" : {
  4138. "node" : 25,
  4139. "path" : "rotation"
  4140. },
  4141. "sampler" : 79
  4142. },
  4143. {
  4144. "target" : {
  4145. "node" : 25,
  4146. "path" : "scale"
  4147. },
  4148. "sampler" : 80
  4149. },
  4150. {
  4151. "target" : {
  4152. "node" : 26,
  4153. "path" : "translation"
  4154. },
  4155. "sampler" : 81
  4156. },
  4157. {
  4158. "target" : {
  4159. "node" : 26,
  4160. "path" : "rotation"
  4161. },
  4162. "sampler" : 82
  4163. },
  4164. {
  4165. "target" : {
  4166. "node" : 26,
  4167. "path" : "scale"
  4168. },
  4169. "sampler" : 83
  4170. }
  4171. ],
  4172. "samplers" : [
  4173. {
  4174. "interpolation" : "LINEAR",
  4175. "input" : 268,
  4176. "output" : 269
  4177. },
  4178. {
  4179. "interpolation" : "LINEAR",
  4180. "input" : 268,
  4181. "output" : 270
  4182. },
  4183. {
  4184. "interpolation" : "LINEAR",
  4185. "input" : 268,
  4186. "output" : 271
  4187. },
  4188. {
  4189. "interpolation" : "LINEAR",
  4190. "input" : 268,
  4191. "output" : 272
  4192. },
  4193. {
  4194. "interpolation" : "LINEAR",
  4195. "input" : 268,
  4196. "output" : 273
  4197. },
  4198. {
  4199. "interpolation" : "LINEAR",
  4200. "input" : 268,
  4201. "output" : 274
  4202. },
  4203. {
  4204. "interpolation" : "LINEAR",
  4205. "input" : 268,
  4206. "output" : 275
  4207. },
  4208. {
  4209. "interpolation" : "LINEAR",
  4210. "input" : 268,
  4211. "output" : 276
  4212. },
  4213. {
  4214. "interpolation" : "LINEAR",
  4215. "input" : 268,
  4216. "output" : 277
  4217. },
  4218. {
  4219. "interpolation" : "LINEAR",
  4220. "input" : 268,
  4221. "output" : 278
  4222. },
  4223. {
  4224. "interpolation" : "LINEAR",
  4225. "input" : 268,
  4226. "output" : 279
  4227. },
  4228. {
  4229. "interpolation" : "LINEAR",
  4230. "input" : 268,
  4231. "output" : 280
  4232. },
  4233. {
  4234. "interpolation" : "LINEAR",
  4235. "input" : 268,
  4236. "output" : 281
  4237. },
  4238. {
  4239. "interpolation" : "LINEAR",
  4240. "input" : 268,
  4241. "output" : 282
  4242. },
  4243. {
  4244. "interpolation" : "LINEAR",
  4245. "input" : 268,
  4246. "output" : 283
  4247. },
  4248. {
  4249. "interpolation" : "LINEAR",
  4250. "input" : 268,
  4251. "output" : 284
  4252. },
  4253. {
  4254. "interpolation" : "LINEAR",
  4255. "input" : 268,
  4256. "output" : 285
  4257. },
  4258. {
  4259. "interpolation" : "LINEAR",
  4260. "input" : 268,
  4261. "output" : 286
  4262. },
  4263. {
  4264. "interpolation" : "LINEAR",
  4265. "input" : 268,
  4266. "output" : 287
  4267. },
  4268. {
  4269. "interpolation" : "LINEAR",
  4270. "input" : 268,
  4271. "output" : 288
  4272. },
  4273. {
  4274. "interpolation" : "LINEAR",
  4275. "input" : 268,
  4276. "output" : 289
  4277. },
  4278. {
  4279. "interpolation" : "LINEAR",
  4280. "input" : 268,
  4281. "output" : 290
  4282. },
  4283. {
  4284. "interpolation" : "LINEAR",
  4285. "input" : 268,
  4286. "output" : 291
  4287. },
  4288. {
  4289. "interpolation" : "LINEAR",
  4290. "input" : 268,
  4291. "output" : 292
  4292. },
  4293. {
  4294. "interpolation" : "LINEAR",
  4295. "input" : 268,
  4296. "output" : 293
  4297. },
  4298. {
  4299. "interpolation" : "LINEAR",
  4300. "input" : 268,
  4301. "output" : 294
  4302. },
  4303. {
  4304. "interpolation" : "LINEAR",
  4305. "input" : 268,
  4306. "output" : 295
  4307. },
  4308. {
  4309. "interpolation" : "LINEAR",
  4310. "input" : 268,
  4311. "output" : 296
  4312. },
  4313. {
  4314. "interpolation" : "LINEAR",
  4315. "input" : 268,
  4316. "output" : 297
  4317. },
  4318. {
  4319. "interpolation" : "LINEAR",
  4320. "input" : 268,
  4321. "output" : 298
  4322. },
  4323. {
  4324. "interpolation" : "LINEAR",
  4325. "input" : 268,
  4326. "output" : 299
  4327. },
  4328. {
  4329. "interpolation" : "LINEAR",
  4330. "input" : 268,
  4331. "output" : 300
  4332. },
  4333. {
  4334. "interpolation" : "LINEAR",
  4335. "input" : 268,
  4336. "output" : 301
  4337. },
  4338. {
  4339. "interpolation" : "LINEAR",
  4340. "input" : 268,
  4341. "output" : 302
  4342. },
  4343. {
  4344. "interpolation" : "LINEAR",
  4345. "input" : 268,
  4346. "output" : 303
  4347. },
  4348. {
  4349. "interpolation" : "LINEAR",
  4350. "input" : 268,
  4351. "output" : 304
  4352. },
  4353. {
  4354. "interpolation" : "LINEAR",
  4355. "input" : 268,
  4356. "output" : 305
  4357. },
  4358. {
  4359. "interpolation" : "LINEAR",
  4360. "input" : 268,
  4361. "output" : 306
  4362. },
  4363. {
  4364. "interpolation" : "LINEAR",
  4365. "input" : 268,
  4366. "output" : 307
  4367. },
  4368. {
  4369. "interpolation" : "LINEAR",
  4370. "input" : 268,
  4371. "output" : 308
  4372. },
  4373. {
  4374. "interpolation" : "LINEAR",
  4375. "input" : 268,
  4376. "output" : 309
  4377. },
  4378. {
  4379. "interpolation" : "LINEAR",
  4380. "input" : 268,
  4381. "output" : 310
  4382. },
  4383. {
  4384. "interpolation" : "LINEAR",
  4385. "input" : 268,
  4386. "output" : 311
  4387. },
  4388. {
  4389. "interpolation" : "LINEAR",
  4390. "input" : 268,
  4391. "output" : 312
  4392. },
  4393. {
  4394. "interpolation" : "LINEAR",
  4395. "input" : 268,
  4396. "output" : 313
  4397. },
  4398. {
  4399. "interpolation" : "LINEAR",
  4400. "input" : 268,
  4401. "output" : 314
  4402. },
  4403. {
  4404. "interpolation" : "LINEAR",
  4405. "input" : 268,
  4406. "output" : 315
  4407. },
  4408. {
  4409. "interpolation" : "LINEAR",
  4410. "input" : 268,
  4411. "output" : 316
  4412. },
  4413. {
  4414. "interpolation" : "LINEAR",
  4415. "input" : 268,
  4416. "output" : 317
  4417. },
  4418. {
  4419. "interpolation" : "LINEAR",
  4420. "input" : 268,
  4421. "output" : 318
  4422. },
  4423. {
  4424. "interpolation" : "LINEAR",
  4425. "input" : 268,
  4426. "output" : 319
  4427. },
  4428. {
  4429. "interpolation" : "LINEAR",
  4430. "input" : 268,
  4431. "output" : 320
  4432. },
  4433. {
  4434. "interpolation" : "LINEAR",
  4435. "input" : 268,
  4436. "output" : 321
  4437. },
  4438. {
  4439. "interpolation" : "LINEAR",
  4440. "input" : 268,
  4441. "output" : 322
  4442. },
  4443. {
  4444. "interpolation" : "LINEAR",
  4445. "input" : 268,
  4446. "output" : 323
  4447. },
  4448. {
  4449. "interpolation" : "LINEAR",
  4450. "input" : 268,
  4451. "output" : 324
  4452. },
  4453. {
  4454. "interpolation" : "LINEAR",
  4455. "input" : 268,
  4456. "output" : 325
  4457. },
  4458. {
  4459. "interpolation" : "LINEAR",
  4460. "input" : 268,
  4461. "output" : 326
  4462. },
  4463. {
  4464. "interpolation" : "LINEAR",
  4465. "input" : 268,
  4466. "output" : 327
  4467. },
  4468. {
  4469. "interpolation" : "LINEAR",
  4470. "input" : 268,
  4471. "output" : 328
  4472. },
  4473. {
  4474. "interpolation" : "LINEAR",
  4475. "input" : 268,
  4476. "output" : 329
  4477. },
  4478. {
  4479. "interpolation" : "LINEAR",
  4480. "input" : 268,
  4481. "output" : 330
  4482. },
  4483. {
  4484. "interpolation" : "LINEAR",
  4485. "input" : 268,
  4486. "output" : 331
  4487. },
  4488. {
  4489. "interpolation" : "LINEAR",
  4490. "input" : 268,
  4491. "output" : 332
  4492. },
  4493. {
  4494. "interpolation" : "LINEAR",
  4495. "input" : 268,
  4496. "output" : 333
  4497. },
  4498. {
  4499. "interpolation" : "LINEAR",
  4500. "input" : 268,
  4501. "output" : 334
  4502. },
  4503. {
  4504. "interpolation" : "LINEAR",
  4505. "input" : 268,
  4506. "output" : 335
  4507. },
  4508. {
  4509. "interpolation" : "LINEAR",
  4510. "input" : 268,
  4511. "output" : 336
  4512. },
  4513. {
  4514. "interpolation" : "LINEAR",
  4515. "input" : 268,
  4516. "output" : 337
  4517. },
  4518. {
  4519. "interpolation" : "LINEAR",
  4520. "input" : 268,
  4521. "output" : 338
  4522. },
  4523. {
  4524. "interpolation" : "LINEAR",
  4525. "input" : 268,
  4526. "output" : 339
  4527. },
  4528. {
  4529. "interpolation" : "LINEAR",
  4530. "input" : 268,
  4531. "output" : 340
  4532. },
  4533. {
  4534. "interpolation" : "LINEAR",
  4535. "input" : 268,
  4536. "output" : 341
  4537. },
  4538. {
  4539. "interpolation" : "LINEAR",
  4540. "input" : 268,
  4541. "output" : 342
  4542. },
  4543. {
  4544. "interpolation" : "LINEAR",
  4545. "input" : 268,
  4546. "output" : 343
  4547. },
  4548. {
  4549. "interpolation" : "LINEAR",
  4550. "input" : 268,
  4551. "output" : 344
  4552. },
  4553. {
  4554. "interpolation" : "LINEAR",
  4555. "input" : 268,
  4556. "output" : 345
  4557. },
  4558. {
  4559. "interpolation" : "LINEAR",
  4560. "input" : 268,
  4561. "output" : 346
  4562. },
  4563. {
  4564. "interpolation" : "LINEAR",
  4565. "input" : 268,
  4566. "output" : 347
  4567. },
  4568. {
  4569. "interpolation" : "LINEAR",
  4570. "input" : 268,
  4571. "output" : 348
  4572. },
  4573. {
  4574. "interpolation" : "LINEAR",
  4575. "input" : 268,
  4576. "output" : 349
  4577. },
  4578. {
  4579. "interpolation" : "LINEAR",
  4580. "input" : 268,
  4581. "output" : 350
  4582. },
  4583. {
  4584. "interpolation" : "LINEAR",
  4585. "input" : 268,
  4586. "output" : 351
  4587. },
  4588. {
  4589. "interpolation" : "LINEAR",
  4590. "input" : 268,
  4591. "output" : 352
  4592. }
  4593. ]
  4594. },
  4595. {
  4596. "name" : "Idle",
  4597. "channels" : [
  4598. {
  4599. "target" : {
  4600. "node" : 27,
  4601. "path" : "translation"
  4602. },
  4603. "sampler" : 0
  4604. },
  4605. {
  4606. "target" : {
  4607. "node" : 27,
  4608. "path" : "rotation"
  4609. },
  4610. "sampler" : 1
  4611. },
  4612. {
  4613. "target" : {
  4614. "node" : 27,
  4615. "path" : "scale"
  4616. },
  4617. "sampler" : 2
  4618. },
  4619. {
  4620. "target" : {
  4621. "node" : 0,
  4622. "path" : "translation"
  4623. },
  4624. "sampler" : 3
  4625. },
  4626. {
  4627. "target" : {
  4628. "node" : 0,
  4629. "path" : "rotation"
  4630. },
  4631. "sampler" : 4
  4632. },
  4633. {
  4634. "target" : {
  4635. "node" : 0,
  4636. "path" : "scale"
  4637. },
  4638. "sampler" : 5
  4639. },
  4640. {
  4641. "target" : {
  4642. "node" : 23,
  4643. "path" : "translation"
  4644. },
  4645. "sampler" : 6
  4646. },
  4647. {
  4648. "target" : {
  4649. "node" : 23,
  4650. "path" : "rotation"
  4651. },
  4652. "sampler" : 7
  4653. },
  4654. {
  4655. "target" : {
  4656. "node" : 23,
  4657. "path" : "scale"
  4658. },
  4659. "sampler" : 8
  4660. },
  4661. {
  4662. "target" : {
  4663. "node" : 3,
  4664. "path" : "translation"
  4665. },
  4666. "sampler" : 9
  4667. },
  4668. {
  4669. "target" : {
  4670. "node" : 3,
  4671. "path" : "rotation"
  4672. },
  4673. "sampler" : 10
  4674. },
  4675. {
  4676. "target" : {
  4677. "node" : 3,
  4678. "path" : "scale"
  4679. },
  4680. "sampler" : 11
  4681. },
  4682. {
  4683. "target" : {
  4684. "node" : 2,
  4685. "path" : "translation"
  4686. },
  4687. "sampler" : 12
  4688. },
  4689. {
  4690. "target" : {
  4691. "node" : 2,
  4692. "path" : "rotation"
  4693. },
  4694. "sampler" : 13
  4695. },
  4696. {
  4697. "target" : {
  4698. "node" : 2,
  4699. "path" : "scale"
  4700. },
  4701. "sampler" : 14
  4702. },
  4703. {
  4704. "target" : {
  4705. "node" : 1,
  4706. "path" : "translation"
  4707. },
  4708. "sampler" : 15
  4709. },
  4710. {
  4711. "target" : {
  4712. "node" : 1,
  4713. "path" : "rotation"
  4714. },
  4715. "sampler" : 16
  4716. },
  4717. {
  4718. "target" : {
  4719. "node" : 1,
  4720. "path" : "scale"
  4721. },
  4722. "sampler" : 17
  4723. },
  4724. {
  4725. "target" : {
  4726. "node" : 6,
  4727. "path" : "translation"
  4728. },
  4729. "sampler" : 18
  4730. },
  4731. {
  4732. "target" : {
  4733. "node" : 6,
  4734. "path" : "rotation"
  4735. },
  4736. "sampler" : 19
  4737. },
  4738. {
  4739. "target" : {
  4740. "node" : 6,
  4741. "path" : "scale"
  4742. },
  4743. "sampler" : 20
  4744. },
  4745. {
  4746. "target" : {
  4747. "node" : 5,
  4748. "path" : "translation"
  4749. },
  4750. "sampler" : 21
  4751. },
  4752. {
  4753. "target" : {
  4754. "node" : 5,
  4755. "path" : "rotation"
  4756. },
  4757. "sampler" : 22
  4758. },
  4759. {
  4760. "target" : {
  4761. "node" : 5,
  4762. "path" : "scale"
  4763. },
  4764. "sampler" : 23
  4765. },
  4766. {
  4767. "target" : {
  4768. "node" : 4,
  4769. "path" : "translation"
  4770. },
  4771. "sampler" : 24
  4772. },
  4773. {
  4774. "target" : {
  4775. "node" : 4,
  4776. "path" : "rotation"
  4777. },
  4778. "sampler" : 25
  4779. },
  4780. {
  4781. "target" : {
  4782. "node" : 4,
  4783. "path" : "scale"
  4784. },
  4785. "sampler" : 26
  4786. },
  4787. {
  4788. "target" : {
  4789. "node" : 9,
  4790. "path" : "translation"
  4791. },
  4792. "sampler" : 27
  4793. },
  4794. {
  4795. "target" : {
  4796. "node" : 9,
  4797. "path" : "rotation"
  4798. },
  4799. "sampler" : 28
  4800. },
  4801. {
  4802. "target" : {
  4803. "node" : 9,
  4804. "path" : "scale"
  4805. },
  4806. "sampler" : 29
  4807. },
  4808. {
  4809. "target" : {
  4810. "node" : 8,
  4811. "path" : "translation"
  4812. },
  4813. "sampler" : 30
  4814. },
  4815. {
  4816. "target" : {
  4817. "node" : 8,
  4818. "path" : "rotation"
  4819. },
  4820. "sampler" : 31
  4821. },
  4822. {
  4823. "target" : {
  4824. "node" : 8,
  4825. "path" : "scale"
  4826. },
  4827. "sampler" : 32
  4828. },
  4829. {
  4830. "target" : {
  4831. "node" : 7,
  4832. "path" : "translation"
  4833. },
  4834. "sampler" : 33
  4835. },
  4836. {
  4837. "target" : {
  4838. "node" : 7,
  4839. "path" : "rotation"
  4840. },
  4841. "sampler" : 34
  4842. },
  4843. {
  4844. "target" : {
  4845. "node" : 7,
  4846. "path" : "scale"
  4847. },
  4848. "sampler" : 35
  4849. },
  4850. {
  4851. "target" : {
  4852. "node" : 12,
  4853. "path" : "translation"
  4854. },
  4855. "sampler" : 36
  4856. },
  4857. {
  4858. "target" : {
  4859. "node" : 12,
  4860. "path" : "rotation"
  4861. },
  4862. "sampler" : 37
  4863. },
  4864. {
  4865. "target" : {
  4866. "node" : 12,
  4867. "path" : "scale"
  4868. },
  4869. "sampler" : 38
  4870. },
  4871. {
  4872. "target" : {
  4873. "node" : 11,
  4874. "path" : "translation"
  4875. },
  4876. "sampler" : 39
  4877. },
  4878. {
  4879. "target" : {
  4880. "node" : 11,
  4881. "path" : "rotation"
  4882. },
  4883. "sampler" : 40
  4884. },
  4885. {
  4886. "target" : {
  4887. "node" : 11,
  4888. "path" : "scale"
  4889. },
  4890. "sampler" : 41
  4891. },
  4892. {
  4893. "target" : {
  4894. "node" : 10,
  4895. "path" : "translation"
  4896. },
  4897. "sampler" : 42
  4898. },
  4899. {
  4900. "target" : {
  4901. "node" : 10,
  4902. "path" : "rotation"
  4903. },
  4904. "sampler" : 43
  4905. },
  4906. {
  4907. "target" : {
  4908. "node" : 10,
  4909. "path" : "scale"
  4910. },
  4911. "sampler" : 44
  4912. },
  4913. {
  4914. "target" : {
  4915. "node" : 17,
  4916. "path" : "translation"
  4917. },
  4918. "sampler" : 45
  4919. },
  4920. {
  4921. "target" : {
  4922. "node" : 17,
  4923. "path" : "rotation"
  4924. },
  4925. "sampler" : 46
  4926. },
  4927. {
  4928. "target" : {
  4929. "node" : 17,
  4930. "path" : "scale"
  4931. },
  4932. "sampler" : 47
  4933. },
  4934. {
  4935. "target" : {
  4936. "node" : 16,
  4937. "path" : "translation"
  4938. },
  4939. "sampler" : 48
  4940. },
  4941. {
  4942. "target" : {
  4943. "node" : 16,
  4944. "path" : "rotation"
  4945. },
  4946. "sampler" : 49
  4947. },
  4948. {
  4949. "target" : {
  4950. "node" : 16,
  4951. "path" : "scale"
  4952. },
  4953. "sampler" : 50
  4954. },
  4955. {
  4956. "target" : {
  4957. "node" : 15,
  4958. "path" : "translation"
  4959. },
  4960. "sampler" : 51
  4961. },
  4962. {
  4963. "target" : {
  4964. "node" : 15,
  4965. "path" : "rotation"
  4966. },
  4967. "sampler" : 52
  4968. },
  4969. {
  4970. "target" : {
  4971. "node" : 15,
  4972. "path" : "scale"
  4973. },
  4974. "sampler" : 53
  4975. },
  4976. {
  4977. "target" : {
  4978. "node" : 14,
  4979. "path" : "translation"
  4980. },
  4981. "sampler" : 54
  4982. },
  4983. {
  4984. "target" : {
  4985. "node" : 14,
  4986. "path" : "rotation"
  4987. },
  4988. "sampler" : 55
  4989. },
  4990. {
  4991. "target" : {
  4992. "node" : 14,
  4993. "path" : "scale"
  4994. },
  4995. "sampler" : 56
  4996. },
  4997. {
  4998. "target" : {
  4999. "node" : 13,
  5000. "path" : "translation"
  5001. },
  5002. "sampler" : 57
  5003. },
  5004. {
  5005. "target" : {
  5006. "node" : 13,
  5007. "path" : "rotation"
  5008. },
  5009. "sampler" : 58
  5010. },
  5011. {
  5012. "target" : {
  5013. "node" : 13,
  5014. "path" : "scale"
  5015. },
  5016. "sampler" : 59
  5017. },
  5018. {
  5019. "target" : {
  5020. "node" : 20,
  5021. "path" : "translation"
  5022. },
  5023. "sampler" : 60
  5024. },
  5025. {
  5026. "target" : {
  5027. "node" : 20,
  5028. "path" : "rotation"
  5029. },
  5030. "sampler" : 61
  5031. },
  5032. {
  5033. "target" : {
  5034. "node" : 20,
  5035. "path" : "scale"
  5036. },
  5037. "sampler" : 62
  5038. },
  5039. {
  5040. "target" : {
  5041. "node" : 19,
  5042. "path" : "translation"
  5043. },
  5044. "sampler" : 63
  5045. },
  5046. {
  5047. "target" : {
  5048. "node" : 19,
  5049. "path" : "rotation"
  5050. },
  5051. "sampler" : 64
  5052. },
  5053. {
  5054. "target" : {
  5055. "node" : 19,
  5056. "path" : "scale"
  5057. },
  5058. "sampler" : 65
  5059. },
  5060. {
  5061. "target" : {
  5062. "node" : 18,
  5063. "path" : "translation"
  5064. },
  5065. "sampler" : 66
  5066. },
  5067. {
  5068. "target" : {
  5069. "node" : 18,
  5070. "path" : "rotation"
  5071. },
  5072. "sampler" : 67
  5073. },
  5074. {
  5075. "target" : {
  5076. "node" : 18,
  5077. "path" : "scale"
  5078. },
  5079. "sampler" : 68
  5080. },
  5081. {
  5082. "target" : {
  5083. "node" : 22,
  5084. "path" : "translation"
  5085. },
  5086. "sampler" : 69
  5087. },
  5088. {
  5089. "target" : {
  5090. "node" : 22,
  5091. "path" : "rotation"
  5092. },
  5093. "sampler" : 70
  5094. },
  5095. {
  5096. "target" : {
  5097. "node" : 22,
  5098. "path" : "scale"
  5099. },
  5100. "sampler" : 71
  5101. },
  5102. {
  5103. "target" : {
  5104. "node" : 21,
  5105. "path" : "translation"
  5106. },
  5107. "sampler" : 72
  5108. },
  5109. {
  5110. "target" : {
  5111. "node" : 21,
  5112. "path" : "rotation"
  5113. },
  5114. "sampler" : 73
  5115. },
  5116. {
  5117. "target" : {
  5118. "node" : 21,
  5119. "path" : "scale"
  5120. },
  5121. "sampler" : 74
  5122. },
  5123. {
  5124. "target" : {
  5125. "node" : 24,
  5126. "path" : "translation"
  5127. },
  5128. "sampler" : 75
  5129. },
  5130. {
  5131. "target" : {
  5132. "node" : 24,
  5133. "path" : "rotation"
  5134. },
  5135. "sampler" : 76
  5136. },
  5137. {
  5138. "target" : {
  5139. "node" : 24,
  5140. "path" : "scale"
  5141. },
  5142. "sampler" : 77
  5143. },
  5144. {
  5145. "target" : {
  5146. "node" : 25,
  5147. "path" : "translation"
  5148. },
  5149. "sampler" : 78
  5150. },
  5151. {
  5152. "target" : {
  5153. "node" : 25,
  5154. "path" : "rotation"
  5155. },
  5156. "sampler" : 79
  5157. },
  5158. {
  5159. "target" : {
  5160. "node" : 25,
  5161. "path" : "scale"
  5162. },
  5163. "sampler" : 80
  5164. },
  5165. {
  5166. "target" : {
  5167. "node" : 26,
  5168. "path" : "translation"
  5169. },
  5170. "sampler" : 81
  5171. },
  5172. {
  5173. "target" : {
  5174. "node" : 26,
  5175. "path" : "rotation"
  5176. },
  5177. "sampler" : 82
  5178. },
  5179. {
  5180. "target" : {
  5181. "node" : 26,
  5182. "path" : "scale"
  5183. },
  5184. "sampler" : 83
  5185. }
  5186. ],
  5187. "samplers" : [
  5188. {
  5189. "interpolation" : "LINEAR",
  5190. "input" : 353,
  5191. "output" : 354
  5192. },
  5193. {
  5194. "interpolation" : "LINEAR",
  5195. "input" : 353,
  5196. "output" : 355
  5197. },
  5198. {
  5199. "interpolation" : "LINEAR",
  5200. "input" : 353,
  5201. "output" : 356
  5202. },
  5203. {
  5204. "interpolation" : "LINEAR",
  5205. "input" : 353,
  5206. "output" : 357
  5207. },
  5208. {
  5209. "interpolation" : "LINEAR",
  5210. "input" : 353,
  5211. "output" : 358
  5212. },
  5213. {
  5214. "interpolation" : "LINEAR",
  5215. "input" : 353,
  5216. "output" : 359
  5217. },
  5218. {
  5219. "interpolation" : "LINEAR",
  5220. "input" : 353,
  5221. "output" : 360
  5222. },
  5223. {
  5224. "interpolation" : "LINEAR",
  5225. "input" : 353,
  5226. "output" : 361
  5227. },
  5228. {
  5229. "interpolation" : "LINEAR",
  5230. "input" : 353,
  5231. "output" : 362
  5232. },
  5233. {
  5234. "interpolation" : "LINEAR",
  5235. "input" : 353,
  5236. "output" : 363
  5237. },
  5238. {
  5239. "interpolation" : "LINEAR",
  5240. "input" : 353,
  5241. "output" : 364
  5242. },
  5243. {
  5244. "interpolation" : "LINEAR",
  5245. "input" : 353,
  5246. "output" : 365
  5247. },
  5248. {
  5249. "interpolation" : "LINEAR",
  5250. "input" : 353,
  5251. "output" : 366
  5252. },
  5253. {
  5254. "interpolation" : "LINEAR",
  5255. "input" : 353,
  5256. "output" : 367
  5257. },
  5258. {
  5259. "interpolation" : "LINEAR",
  5260. "input" : 353,
  5261. "output" : 368
  5262. },
  5263. {
  5264. "interpolation" : "LINEAR",
  5265. "input" : 353,
  5266. "output" : 369
  5267. },
  5268. {
  5269. "interpolation" : "LINEAR",
  5270. "input" : 353,
  5271. "output" : 370
  5272. },
  5273. {
  5274. "interpolation" : "LINEAR",
  5275. "input" : 353,
  5276. "output" : 371
  5277. },
  5278. {
  5279. "interpolation" : "LINEAR",
  5280. "input" : 353,
  5281. "output" : 372
  5282. },
  5283. {
  5284. "interpolation" : "LINEAR",
  5285. "input" : 353,
  5286. "output" : 373
  5287. },
  5288. {
  5289. "interpolation" : "LINEAR",
  5290. "input" : 353,
  5291. "output" : 374
  5292. },
  5293. {
  5294. "interpolation" : "LINEAR",
  5295. "input" : 353,
  5296. "output" : 375
  5297. },
  5298. {
  5299. "interpolation" : "LINEAR",
  5300. "input" : 353,
  5301. "output" : 376
  5302. },
  5303. {
  5304. "interpolation" : "LINEAR",
  5305. "input" : 353,
  5306. "output" : 377
  5307. },
  5308. {
  5309. "interpolation" : "LINEAR",
  5310. "input" : 353,
  5311. "output" : 378
  5312. },
  5313. {
  5314. "interpolation" : "LINEAR",
  5315. "input" : 353,
  5316. "output" : 379
  5317. },
  5318. {
  5319. "interpolation" : "LINEAR",
  5320. "input" : 353,
  5321. "output" : 380
  5322. },
  5323. {
  5324. "interpolation" : "LINEAR",
  5325. "input" : 353,
  5326. "output" : 381
  5327. },
  5328. {
  5329. "interpolation" : "LINEAR",
  5330. "input" : 353,
  5331. "output" : 382
  5332. },
  5333. {
  5334. "interpolation" : "LINEAR",
  5335. "input" : 353,
  5336. "output" : 383
  5337. },
  5338. {
  5339. "interpolation" : "LINEAR",
  5340. "input" : 353,
  5341. "output" : 384
  5342. },
  5343. {
  5344. "interpolation" : "LINEAR",
  5345. "input" : 353,
  5346. "output" : 385
  5347. },
  5348. {
  5349. "interpolation" : "LINEAR",
  5350. "input" : 353,
  5351. "output" : 386
  5352. },
  5353. {
  5354. "interpolation" : "LINEAR",
  5355. "input" : 353,
  5356. "output" : 387
  5357. },
  5358. {
  5359. "interpolation" : "LINEAR",
  5360. "input" : 353,
  5361. "output" : 388
  5362. },
  5363. {
  5364. "interpolation" : "LINEAR",
  5365. "input" : 353,
  5366. "output" : 389
  5367. },
  5368. {
  5369. "interpolation" : "LINEAR",
  5370. "input" : 353,
  5371. "output" : 390
  5372. },
  5373. {
  5374. "interpolation" : "LINEAR",
  5375. "input" : 353,
  5376. "output" : 391
  5377. },
  5378. {
  5379. "interpolation" : "LINEAR",
  5380. "input" : 353,
  5381. "output" : 392
  5382. },
  5383. {
  5384. "interpolation" : "LINEAR",
  5385. "input" : 353,
  5386. "output" : 393
  5387. },
  5388. {
  5389. "interpolation" : "LINEAR",
  5390. "input" : 353,
  5391. "output" : 394
  5392. },
  5393. {
  5394. "interpolation" : "LINEAR",
  5395. "input" : 353,
  5396. "output" : 395
  5397. },
  5398. {
  5399. "interpolation" : "LINEAR",
  5400. "input" : 353,
  5401. "output" : 396
  5402. },
  5403. {
  5404. "interpolation" : "LINEAR",
  5405. "input" : 353,
  5406. "output" : 397
  5407. },
  5408. {
  5409. "interpolation" : "LINEAR",
  5410. "input" : 353,
  5411. "output" : 398
  5412. },
  5413. {
  5414. "interpolation" : "LINEAR",
  5415. "input" : 353,
  5416. "output" : 399
  5417. },
  5418. {
  5419. "interpolation" : "LINEAR",
  5420. "input" : 353,
  5421. "output" : 400
  5422. },
  5423. {
  5424. "interpolation" : "LINEAR",
  5425. "input" : 353,
  5426. "output" : 401
  5427. },
  5428. {
  5429. "interpolation" : "LINEAR",
  5430. "input" : 353,
  5431. "output" : 402
  5432. },
  5433. {
  5434. "interpolation" : "LINEAR",
  5435. "input" : 353,
  5436. "output" : 403
  5437. },
  5438. {
  5439. "interpolation" : "LINEAR",
  5440. "input" : 353,
  5441. "output" : 404
  5442. },
  5443. {
  5444. "interpolation" : "LINEAR",
  5445. "input" : 353,
  5446. "output" : 405
  5447. },
  5448. {
  5449. "interpolation" : "LINEAR",
  5450. "input" : 353,
  5451. "output" : 406
  5452. },
  5453. {
  5454. "interpolation" : "LINEAR",
  5455. "input" : 353,
  5456. "output" : 407
  5457. },
  5458. {
  5459. "interpolation" : "LINEAR",
  5460. "input" : 353,
  5461. "output" : 408
  5462. },
  5463. {
  5464. "interpolation" : "LINEAR",
  5465. "input" : 353,
  5466. "output" : 409
  5467. },
  5468. {
  5469. "interpolation" : "LINEAR",
  5470. "input" : 353,
  5471. "output" : 410
  5472. },
  5473. {
  5474. "interpolation" : "LINEAR",
  5475. "input" : 353,
  5476. "output" : 411
  5477. },
  5478. {
  5479. "interpolation" : "LINEAR",
  5480. "input" : 353,
  5481. "output" : 412
  5482. },
  5483. {
  5484. "interpolation" : "LINEAR",
  5485. "input" : 353,
  5486. "output" : 413
  5487. },
  5488. {
  5489. "interpolation" : "LINEAR",
  5490. "input" : 353,
  5491. "output" : 414
  5492. },
  5493. {
  5494. "interpolation" : "LINEAR",
  5495. "input" : 353,
  5496. "output" : 415
  5497. },
  5498. {
  5499. "interpolation" : "LINEAR",
  5500. "input" : 353,
  5501. "output" : 416
  5502. },
  5503. {
  5504. "interpolation" : "LINEAR",
  5505. "input" : 353,
  5506. "output" : 417
  5507. },
  5508. {
  5509. "interpolation" : "LINEAR",
  5510. "input" : 353,
  5511. "output" : 418
  5512. },
  5513. {
  5514. "interpolation" : "LINEAR",
  5515. "input" : 353,
  5516. "output" : 419
  5517. },
  5518. {
  5519. "interpolation" : "LINEAR",
  5520. "input" : 353,
  5521. "output" : 420
  5522. },
  5523. {
  5524. "interpolation" : "LINEAR",
  5525. "input" : 353,
  5526. "output" : 421
  5527. },
  5528. {
  5529. "interpolation" : "LINEAR",
  5530. "input" : 353,
  5531. "output" : 422
  5532. },
  5533. {
  5534. "interpolation" : "LINEAR",
  5535. "input" : 353,
  5536. "output" : 423
  5537. },
  5538. {
  5539. "interpolation" : "LINEAR",
  5540. "input" : 353,
  5541. "output" : 424
  5542. },
  5543. {
  5544. "interpolation" : "LINEAR",
  5545. "input" : 353,
  5546. "output" : 425
  5547. },
  5548. {
  5549. "interpolation" : "LINEAR",
  5550. "input" : 353,
  5551. "output" : 426
  5552. },
  5553. {
  5554. "interpolation" : "LINEAR",
  5555. "input" : 353,
  5556. "output" : 427
  5557. },
  5558. {
  5559. "interpolation" : "LINEAR",
  5560. "input" : 353,
  5561. "output" : 428
  5562. },
  5563. {
  5564. "interpolation" : "LINEAR",
  5565. "input" : 353,
  5566. "output" : 429
  5567. },
  5568. {
  5569. "interpolation" : "LINEAR",
  5570. "input" : 353,
  5571. "output" : 430
  5572. },
  5573. {
  5574. "interpolation" : "LINEAR",
  5575. "input" : 353,
  5576. "output" : 431
  5577. },
  5578. {
  5579. "interpolation" : "LINEAR",
  5580. "input" : 353,
  5581. "output" : 432
  5582. },
  5583. {
  5584. "interpolation" : "LINEAR",
  5585. "input" : 353,
  5586. "output" : 433
  5587. },
  5588. {
  5589. "interpolation" : "LINEAR",
  5590. "input" : 353,
  5591. "output" : 434
  5592. },
  5593. {
  5594. "interpolation" : "LINEAR",
  5595. "input" : 353,
  5596. "output" : 435
  5597. },
  5598. {
  5599. "interpolation" : "LINEAR",
  5600. "input" : 353,
  5601. "output" : 436
  5602. },
  5603. {
  5604. "interpolation" : "LINEAR",
  5605. "input" : 353,
  5606. "output" : 437
  5607. }
  5608. ]
  5609. }
  5610. ],
  5611. "materials" : [
  5612. {
  5613. "name" : "White",
  5614. "pbrMetallicRoughness" : {
  5615. "baseColorFactor" : [
  5616. 0.8,
  5617. 0.8,
  5618. 0.8,
  5619. 1.0
  5620. ],
  5621. "metallicFactor" : 0.0
  5622. }
  5623. },
  5624. {
  5625. "name" : "Black",
  5626. "pbrMetallicRoughness" : {
  5627. "baseColorFactor" : [
  5628. 0.029,
  5629. 0.029,
  5630. 0.029,
  5631. 1.0
  5632. ],
  5633. "metallicFactor" : 0.0
  5634. }
  5635. }
  5636. ],
  5637. "meshes" : [
  5638. {
  5639. "name" : "Cylinder",
  5640. "primitives" : [
  5641. {
  5642. "attributes" : {
  5643. "POSITION" : 0,
  5644. "JOINTS_0" : 1,
  5645. "NORMAL" : 4,
  5646. "COLOR_0" : 3,
  5647. "WEIGHTS_0" : 2
  5648. },
  5649. "material" : 0,
  5650. "indices" : 5
  5651. },
  5652. {
  5653. "attributes" : {
  5654. "POSITION" : 6,
  5655. "JOINTS_0" : 7,
  5656. "NORMAL" : 10,
  5657. "COLOR_0" : 9,
  5658. "WEIGHTS_0" : 8
  5659. },
  5660. "material" : 1,
  5661. "indices" : 11
  5662. }
  5663. ]
  5664. }
  5665. ],
  5666. "skins" : [
  5667. {
  5668. "name" : "Armature",
  5669. "inverseBindMatrices" : 12,
  5670. "joints" : [
  5671. 27,
  5672. 0,
  5673. 23,
  5674. 3,
  5675. 2,
  5676. 1,
  5677. 6,
  5678. 5,
  5679. 4,
  5680. 9,
  5681. 8,
  5682. 7,
  5683. 12,
  5684. 11,
  5685. 10,
  5686. 17,
  5687. 16,
  5688. 15,
  5689. 14,
  5690. 13,
  5691. 20,
  5692. 19,
  5693. 18,
  5694. 22,
  5695. 21,
  5696. 24,
  5697. 25,
  5698. 26
  5699. ]
  5700. }
  5701. ],
  5702. "accessors" : [
  5703. {
  5704. "bufferView" : 0,
  5705. "componentType" : 5126,
  5706. "max" : [
  5707. 1.2848868370056152,
  5708. 6.65859317779541,
  5709. 5.004251003265381
  5710. ],
  5711. "type" : "VEC3",
  5712. "min" : [
  5713. -1.2848868370056152,
  5714. 0.21450018882751465,
  5715. -3.1351852416992188
  5716. ],
  5717. "count" : 1194
  5718. },
  5719. {
  5720. "bufferView" : 1,
  5721. "componentType" : 5123,
  5722. "type" : "VEC4",
  5723. "count" : 1194
  5724. },
  5725. {
  5726. "bufferView" : 2,
  5727. "componentType" : 5126,
  5728. "type" : "VEC4",
  5729. "count" : 1194
  5730. },
  5731. {
  5732. "bufferView" : 3,
  5733. "componentType" : 5126,
  5734. "type" : "VEC4",
  5735. "count" : 1194
  5736. },
  5737. {
  5738. "bufferView" : 4,
  5739. "componentType" : 5126,
  5740. "type" : "VEC3",
  5741. "count" : 1194
  5742. },
  5743. {
  5744. "bufferView" : 5,
  5745. "componentType" : 5123,
  5746. "type" : "SCALAR",
  5747. "count" : 1746
  5748. },
  5749. {
  5750. "bufferView" : 6,
  5751. "componentType" : 5126,
  5752. "max" : [
  5753. 1.2848868370056152,
  5754. 7.027643203735352,
  5755. 5.070976257324219
  5756. ],
  5757. "type" : "VEC3",
  5758. "min" : [
  5759. -1.2848868370056152,
  5760. -0.04415416717529297,
  5761. -4.164161682128906
  5762. ],
  5763. "count" : 1582
  5764. },
  5765. {
  5766. "bufferView" : 7,
  5767. "componentType" : 5123,
  5768. "type" : "VEC4",
  5769. "count" : 1582
  5770. },
  5771. {
  5772. "bufferView" : 8,
  5773. "componentType" : 5126,
  5774. "type" : "VEC4",
  5775. "count" : 1582
  5776. },
  5777. {
  5778. "bufferView" : 9,
  5779. "componentType" : 5126,
  5780. "type" : "VEC4",
  5781. "count" : 1582
  5782. },
  5783. {
  5784. "bufferView" : 10,
  5785. "componentType" : 5126,
  5786. "type" : "VEC3",
  5787. "count" : 1582
  5788. },
  5789. {
  5790. "bufferView" : 11,
  5791. "componentType" : 5123,
  5792. "type" : "SCALAR",
  5793. "count" : 2316
  5794. },
  5795. {
  5796. "bufferView" : 12,
  5797. "componentType" : 5126,
  5798. "type" : "MAT4",
  5799. "count" : 28
  5800. },
  5801. {
  5802. "bufferView" : 13,
  5803. "componentType" : 5126,
  5804. "max" : [
  5805. 1.5
  5806. ],
  5807. "type" : "SCALAR",
  5808. "min" : [
  5809. 0
  5810. ],
  5811. "count" : 37
  5812. },
  5813. {
  5814. "bufferView" : 14,
  5815. "componentType" : 5126,
  5816. "type" : "VEC3",
  5817. "count" : 37
  5818. },
  5819. {
  5820. "bufferView" : 15,
  5821. "componentType" : 5126,
  5822. "type" : "VEC4",
  5823. "count" : 37
  5824. },
  5825. {
  5826. "bufferView" : 16,
  5827. "componentType" : 5126,
  5828. "type" : "VEC3",
  5829. "count" : 37
  5830. },
  5831. {
  5832. "bufferView" : 17,
  5833. "componentType" : 5126,
  5834. "type" : "VEC3",
  5835. "count" : 37
  5836. },
  5837. {
  5838. "bufferView" : 18,
  5839. "componentType" : 5126,
  5840. "type" : "VEC4",
  5841. "count" : 37
  5842. },
  5843. {
  5844. "bufferView" : 19,
  5845. "componentType" : 5126,
  5846. "type" : "VEC3",
  5847. "count" : 37
  5848. },
  5849. {
  5850. "bufferView" : 20,
  5851. "componentType" : 5126,
  5852. "type" : "VEC3",
  5853. "count" : 37
  5854. },
  5855. {
  5856. "bufferView" : 21,
  5857. "componentType" : 5126,
  5858. "type" : "VEC4",
  5859. "count" : 37
  5860. },
  5861. {
  5862. "bufferView" : 22,
  5863. "componentType" : 5126,
  5864. "type" : "VEC3",
  5865. "count" : 37
  5866. },
  5867. {
  5868. "bufferView" : 23,
  5869. "componentType" : 5126,
  5870. "type" : "VEC3",
  5871. "count" : 37
  5872. },
  5873. {
  5874. "bufferView" : 24,
  5875. "componentType" : 5126,
  5876. "type" : "VEC4",
  5877. "count" : 37
  5878. },
  5879. {
  5880. "bufferView" : 25,
  5881. "componentType" : 5126,
  5882. "type" : "VEC3",
  5883. "count" : 37
  5884. },
  5885. {
  5886. "bufferView" : 26,
  5887. "componentType" : 5126,
  5888. "type" : "VEC3",
  5889. "count" : 37
  5890. },
  5891. {
  5892. "bufferView" : 27,
  5893. "componentType" : 5126,
  5894. "type" : "VEC4",
  5895. "count" : 37
  5896. },
  5897. {
  5898. "bufferView" : 28,
  5899. "componentType" : 5126,
  5900. "type" : "VEC3",
  5901. "count" : 37
  5902. },
  5903. {
  5904. "bufferView" : 29,
  5905. "componentType" : 5126,
  5906. "type" : "VEC3",
  5907. "count" : 37
  5908. },
  5909. {
  5910. "bufferView" : 30,
  5911. "componentType" : 5126,
  5912. "type" : "VEC4",
  5913. "count" : 37
  5914. },
  5915. {
  5916. "bufferView" : 31,
  5917. "componentType" : 5126,
  5918. "type" : "VEC3",
  5919. "count" : 37
  5920. },
  5921. {
  5922. "bufferView" : 32,
  5923. "componentType" : 5126,
  5924. "type" : "VEC3",
  5925. "count" : 37
  5926. },
  5927. {
  5928. "bufferView" : 33,
  5929. "componentType" : 5126,
  5930. "type" : "VEC4",
  5931. "count" : 37
  5932. },
  5933. {
  5934. "bufferView" : 34,
  5935. "componentType" : 5126,
  5936. "type" : "VEC3",
  5937. "count" : 37
  5938. },
  5939. {
  5940. "bufferView" : 35,
  5941. "componentType" : 5126,
  5942. "type" : "VEC3",
  5943. "count" : 37
  5944. },
  5945. {
  5946. "bufferView" : 36,
  5947. "componentType" : 5126,
  5948. "type" : "VEC4",
  5949. "count" : 37
  5950. },
  5951. {
  5952. "bufferView" : 37,
  5953. "componentType" : 5126,
  5954. "type" : "VEC3",
  5955. "count" : 37
  5956. },
  5957. {
  5958. "bufferView" : 38,
  5959. "componentType" : 5126,
  5960. "type" : "VEC3",
  5961. "count" : 37
  5962. },
  5963. {
  5964. "bufferView" : 39,
  5965. "componentType" : 5126,
  5966. "type" : "VEC4",
  5967. "count" : 37
  5968. },
  5969. {
  5970. "bufferView" : 40,
  5971. "componentType" : 5126,
  5972. "type" : "VEC3",
  5973. "count" : 37
  5974. },
  5975. {
  5976. "bufferView" : 41,
  5977. "componentType" : 5126,
  5978. "type" : "VEC3",
  5979. "count" : 37
  5980. },
  5981. {
  5982. "bufferView" : 42,
  5983. "componentType" : 5126,
  5984. "type" : "VEC4",
  5985. "count" : 37
  5986. },
  5987. {
  5988. "bufferView" : 43,
  5989. "componentType" : 5126,
  5990. "type" : "VEC3",
  5991. "count" : 37
  5992. },
  5993. {
  5994. "bufferView" : 44,
  5995. "componentType" : 5126,
  5996. "type" : "VEC3",
  5997. "count" : 37
  5998. },
  5999. {
  6000. "bufferView" : 45,
  6001. "componentType" : 5126,
  6002. "type" : "VEC4",
  6003. "count" : 37
  6004. },
  6005. {
  6006. "bufferView" : 46,
  6007. "componentType" : 5126,
  6008. "type" : "VEC3",
  6009. "count" : 37
  6010. },
  6011. {
  6012. "bufferView" : 47,
  6013. "componentType" : 5126,
  6014. "type" : "VEC3",
  6015. "count" : 37
  6016. },
  6017. {
  6018. "bufferView" : 48,
  6019. "componentType" : 5126,
  6020. "type" : "VEC4",
  6021. "count" : 37
  6022. },
  6023. {
  6024. "bufferView" : 49,
  6025. "componentType" : 5126,
  6026. "type" : "VEC3",
  6027. "count" : 37
  6028. },
  6029. {
  6030. "bufferView" : 50,
  6031. "componentType" : 5126,
  6032. "type" : "VEC3",
  6033. "count" : 37
  6034. },
  6035. {
  6036. "bufferView" : 51,
  6037. "componentType" : 5126,
  6038. "type" : "VEC4",
  6039. "count" : 37
  6040. },
  6041. {
  6042. "bufferView" : 52,
  6043. "componentType" : 5126,
  6044. "type" : "VEC3",
  6045. "count" : 37
  6046. },
  6047. {
  6048. "bufferView" : 53,
  6049. "componentType" : 5126,
  6050. "type" : "VEC3",
  6051. "count" : 37
  6052. },
  6053. {
  6054. "bufferView" : 54,
  6055. "componentType" : 5126,
  6056. "type" : "VEC4",
  6057. "count" : 37
  6058. },
  6059. {
  6060. "bufferView" : 55,
  6061. "componentType" : 5126,
  6062. "type" : "VEC3",
  6063. "count" : 37
  6064. },
  6065. {
  6066. "bufferView" : 56,
  6067. "componentType" : 5126,
  6068. "type" : "VEC3",
  6069. "count" : 37
  6070. },
  6071. {
  6072. "bufferView" : 57,
  6073. "componentType" : 5126,
  6074. "type" : "VEC4",
  6075. "count" : 37
  6076. },
  6077. {
  6078. "bufferView" : 58,
  6079. "componentType" : 5126,
  6080. "type" : "VEC3",
  6081. "count" : 37
  6082. },
  6083. {
  6084. "bufferView" : 59,
  6085. "componentType" : 5126,
  6086. "type" : "VEC3",
  6087. "count" : 37
  6088. },
  6089. {
  6090. "bufferView" : 60,
  6091. "componentType" : 5126,
  6092. "type" : "VEC4",
  6093. "count" : 37
  6094. },
  6095. {
  6096. "bufferView" : 61,
  6097. "componentType" : 5126,
  6098. "type" : "VEC3",
  6099. "count" : 37
  6100. },
  6101. {
  6102. "bufferView" : 62,
  6103. "componentType" : 5126,
  6104. "type" : "VEC3",
  6105. "count" : 37
  6106. },
  6107. {
  6108. "bufferView" : 63,
  6109. "componentType" : 5126,
  6110. "type" : "VEC4",
  6111. "count" : 37
  6112. },
  6113. {
  6114. "bufferView" : 64,
  6115. "componentType" : 5126,
  6116. "type" : "VEC3",
  6117. "count" : 37
  6118. },
  6119. {
  6120. "bufferView" : 65,
  6121. "componentType" : 5126,
  6122. "type" : "VEC3",
  6123. "count" : 37
  6124. },
  6125. {
  6126. "bufferView" : 66,
  6127. "componentType" : 5126,
  6128. "type" : "VEC4",
  6129. "count" : 37
  6130. },
  6131. {
  6132. "bufferView" : 67,
  6133. "componentType" : 5126,
  6134. "type" : "VEC3",
  6135. "count" : 37
  6136. },
  6137. {
  6138. "bufferView" : 68,
  6139. "componentType" : 5126,
  6140. "type" : "VEC3",
  6141. "count" : 37
  6142. },
  6143. {
  6144. "bufferView" : 69,
  6145. "componentType" : 5126,
  6146. "type" : "VEC4",
  6147. "count" : 37
  6148. },
  6149. {
  6150. "bufferView" : 70,
  6151. "componentType" : 5126,
  6152. "type" : "VEC3",
  6153. "count" : 37
  6154. },
  6155. {
  6156. "bufferView" : 71,
  6157. "componentType" : 5126,
  6158. "type" : "VEC3",
  6159. "count" : 37
  6160. },
  6161. {
  6162. "bufferView" : 72,
  6163. "componentType" : 5126,
  6164. "type" : "VEC4",
  6165. "count" : 37
  6166. },
  6167. {
  6168. "bufferView" : 73,
  6169. "componentType" : 5126,
  6170. "type" : "VEC3",
  6171. "count" : 37
  6172. },
  6173. {
  6174. "bufferView" : 74,
  6175. "componentType" : 5126,
  6176. "type" : "VEC3",
  6177. "count" : 37
  6178. },
  6179. {
  6180. "bufferView" : 75,
  6181. "componentType" : 5126,
  6182. "type" : "VEC4",
  6183. "count" : 37
  6184. },
  6185. {
  6186. "bufferView" : 76,
  6187. "componentType" : 5126,
  6188. "type" : "VEC3",
  6189. "count" : 37
  6190. },
  6191. {
  6192. "bufferView" : 77,
  6193. "componentType" : 5126,
  6194. "type" : "VEC3",
  6195. "count" : 37
  6196. },
  6197. {
  6198. "bufferView" : 78,
  6199. "componentType" : 5126,
  6200. "type" : "VEC4",
  6201. "count" : 37
  6202. },
  6203. {
  6204. "bufferView" : 79,
  6205. "componentType" : 5126,
  6206. "type" : "VEC3",
  6207. "count" : 37
  6208. },
  6209. {
  6210. "bufferView" : 80,
  6211. "componentType" : 5126,
  6212. "type" : "VEC3",
  6213. "count" : 37
  6214. },
  6215. {
  6216. "bufferView" : 81,
  6217. "componentType" : 5126,
  6218. "type" : "VEC4",
  6219. "count" : 37
  6220. },
  6221. {
  6222. "bufferView" : 82,
  6223. "componentType" : 5126,
  6224. "type" : "VEC3",
  6225. "count" : 37
  6226. },
  6227. {
  6228. "bufferView" : 83,
  6229. "componentType" : 5126,
  6230. "type" : "VEC3",
  6231. "count" : 37
  6232. },
  6233. {
  6234. "bufferView" : 84,
  6235. "componentType" : 5126,
  6236. "type" : "VEC4",
  6237. "count" : 37
  6238. },
  6239. {
  6240. "bufferView" : 85,
  6241. "componentType" : 5126,
  6242. "type" : "VEC3",
  6243. "count" : 37
  6244. },
  6245. {
  6246. "bufferView" : 86,
  6247. "componentType" : 5126,
  6248. "type" : "VEC3",
  6249. "count" : 37
  6250. },
  6251. {
  6252. "bufferView" : 87,
  6253. "componentType" : 5126,
  6254. "type" : "VEC4",
  6255. "count" : 37
  6256. },
  6257. {
  6258. "bufferView" : 88,
  6259. "componentType" : 5126,
  6260. "type" : "VEC3",
  6261. "count" : 37
  6262. },
  6263. {
  6264. "bufferView" : 89,
  6265. "componentType" : 5126,
  6266. "type" : "VEC3",
  6267. "count" : 37
  6268. },
  6269. {
  6270. "bufferView" : 90,
  6271. "componentType" : 5126,
  6272. "type" : "VEC4",
  6273. "count" : 37
  6274. },
  6275. {
  6276. "bufferView" : 91,
  6277. "componentType" : 5126,
  6278. "type" : "VEC3",
  6279. "count" : 37
  6280. },
  6281. {
  6282. "bufferView" : 92,
  6283. "componentType" : 5126,
  6284. "type" : "VEC3",
  6285. "count" : 37
  6286. },
  6287. {
  6288. "bufferView" : 93,
  6289. "componentType" : 5126,
  6290. "type" : "VEC4",
  6291. "count" : 37
  6292. },
  6293. {
  6294. "bufferView" : 94,
  6295. "componentType" : 5126,
  6296. "type" : "VEC3",
  6297. "count" : 37
  6298. },
  6299. {
  6300. "bufferView" : 95,
  6301. "componentType" : 5126,
  6302. "type" : "VEC3",
  6303. "count" : 37
  6304. },
  6305. {
  6306. "bufferView" : 96,
  6307. "componentType" : 5126,
  6308. "type" : "VEC4",
  6309. "count" : 37
  6310. },
  6311. {
  6312. "bufferView" : 97,
  6313. "componentType" : 5126,
  6314. "type" : "VEC3",
  6315. "count" : 37
  6316. },
  6317. {
  6318. "bufferView" : 98,
  6319. "componentType" : 5126,
  6320. "max" : [
  6321. 2.6666666666666665
  6322. ],
  6323. "type" : "SCALAR",
  6324. "min" : [
  6325. 0
  6326. ],
  6327. "count" : 65
  6328. },
  6329. {
  6330. "bufferView" : 99,
  6331. "componentType" : 5126,
  6332. "type" : "VEC3",
  6333. "count" : 65
  6334. },
  6335. {
  6336. "bufferView" : 100,
  6337. "componentType" : 5126,
  6338. "type" : "VEC4",
  6339. "count" : 65
  6340. },
  6341. {
  6342. "bufferView" : 101,
  6343. "componentType" : 5126,
  6344. "type" : "VEC3",
  6345. "count" : 65
  6346. },
  6347. {
  6348. "bufferView" : 102,
  6349. "componentType" : 5126,
  6350. "type" : "VEC3",
  6351. "count" : 65
  6352. },
  6353. {
  6354. "bufferView" : 103,
  6355. "componentType" : 5126,
  6356. "type" : "VEC4",
  6357. "count" : 65
  6358. },
  6359. {
  6360. "bufferView" : 104,
  6361. "componentType" : 5126,
  6362. "type" : "VEC3",
  6363. "count" : 65
  6364. },
  6365. {
  6366. "bufferView" : 105,
  6367. "componentType" : 5126,
  6368. "type" : "VEC3",
  6369. "count" : 65
  6370. },
  6371. {
  6372. "bufferView" : 106,
  6373. "componentType" : 5126,
  6374. "type" : "VEC4",
  6375. "count" : 65
  6376. },
  6377. {
  6378. "bufferView" : 107,
  6379. "componentType" : 5126,
  6380. "type" : "VEC3",
  6381. "count" : 65
  6382. },
  6383. {
  6384. "bufferView" : 108,
  6385. "componentType" : 5126,
  6386. "type" : "VEC3",
  6387. "count" : 65
  6388. },
  6389. {
  6390. "bufferView" : 109,
  6391. "componentType" : 5126,
  6392. "type" : "VEC4",
  6393. "count" : 65
  6394. },
  6395. {
  6396. "bufferView" : 110,
  6397. "componentType" : 5126,
  6398. "type" : "VEC3",
  6399. "count" : 65
  6400. },
  6401. {
  6402. "bufferView" : 111,
  6403. "componentType" : 5126,
  6404. "type" : "VEC3",
  6405. "count" : 65
  6406. },
  6407. {
  6408. "bufferView" : 112,
  6409. "componentType" : 5126,
  6410. "type" : "VEC4",
  6411. "count" : 65
  6412. },
  6413. {
  6414. "bufferView" : 113,
  6415. "componentType" : 5126,
  6416. "type" : "VEC3",
  6417. "count" : 65
  6418. },
  6419. {
  6420. "bufferView" : 114,
  6421. "componentType" : 5126,
  6422. "type" : "VEC3",
  6423. "count" : 65
  6424. },
  6425. {
  6426. "bufferView" : 115,
  6427. "componentType" : 5126,
  6428. "type" : "VEC4",
  6429. "count" : 65
  6430. },
  6431. {
  6432. "bufferView" : 116,
  6433. "componentType" : 5126,
  6434. "type" : "VEC3",
  6435. "count" : 65
  6436. },
  6437. {
  6438. "bufferView" : 117,
  6439. "componentType" : 5126,
  6440. "type" : "VEC3",
  6441. "count" : 65
  6442. },
  6443. {
  6444. "bufferView" : 118,
  6445. "componentType" : 5126,
  6446. "type" : "VEC4",
  6447. "count" : 65
  6448. },
  6449. {
  6450. "bufferView" : 119,
  6451. "componentType" : 5126,
  6452. "type" : "VEC3",
  6453. "count" : 65
  6454. },
  6455. {
  6456. "bufferView" : 120,
  6457. "componentType" : 5126,
  6458. "type" : "VEC3",
  6459. "count" : 65
  6460. },
  6461. {
  6462. "bufferView" : 121,
  6463. "componentType" : 5126,
  6464. "type" : "VEC4",
  6465. "count" : 65
  6466. },
  6467. {
  6468. "bufferView" : 122,
  6469. "componentType" : 5126,
  6470. "type" : "VEC3",
  6471. "count" : 65
  6472. },
  6473. {
  6474. "bufferView" : 123,
  6475. "componentType" : 5126,
  6476. "type" : "VEC3",
  6477. "count" : 65
  6478. },
  6479. {
  6480. "bufferView" : 124,
  6481. "componentType" : 5126,
  6482. "type" : "VEC4",
  6483. "count" : 65
  6484. },
  6485. {
  6486. "bufferView" : 125,
  6487. "componentType" : 5126,
  6488. "type" : "VEC3",
  6489. "count" : 65
  6490. },
  6491. {
  6492. "bufferView" : 126,
  6493. "componentType" : 5126,
  6494. "type" : "VEC3",
  6495. "count" : 65
  6496. },
  6497. {
  6498. "bufferView" : 127,
  6499. "componentType" : 5126,
  6500. "type" : "VEC4",
  6501. "count" : 65
  6502. },
  6503. {
  6504. "bufferView" : 128,
  6505. "componentType" : 5126,
  6506. "type" : "VEC3",
  6507. "count" : 65
  6508. },
  6509. {
  6510. "bufferView" : 129,
  6511. "componentType" : 5126,
  6512. "type" : "VEC3",
  6513. "count" : 65
  6514. },
  6515. {
  6516. "bufferView" : 130,
  6517. "componentType" : 5126,
  6518. "type" : "VEC4",
  6519. "count" : 65
  6520. },
  6521. {
  6522. "bufferView" : 131,
  6523. "componentType" : 5126,
  6524. "type" : "VEC3",
  6525. "count" : 65
  6526. },
  6527. {
  6528. "bufferView" : 132,
  6529. "componentType" : 5126,
  6530. "type" : "VEC3",
  6531. "count" : 65
  6532. },
  6533. {
  6534. "bufferView" : 133,
  6535. "componentType" : 5126,
  6536. "type" : "VEC4",
  6537. "count" : 65
  6538. },
  6539. {
  6540. "bufferView" : 134,
  6541. "componentType" : 5126,
  6542. "type" : "VEC3",
  6543. "count" : 65
  6544. },
  6545. {
  6546. "bufferView" : 135,
  6547. "componentType" : 5126,
  6548. "type" : "VEC3",
  6549. "count" : 65
  6550. },
  6551. {
  6552. "bufferView" : 136,
  6553. "componentType" : 5126,
  6554. "type" : "VEC4",
  6555. "count" : 65
  6556. },
  6557. {
  6558. "bufferView" : 137,
  6559. "componentType" : 5126,
  6560. "type" : "VEC3",
  6561. "count" : 65
  6562. },
  6563. {
  6564. "bufferView" : 138,
  6565. "componentType" : 5126,
  6566. "type" : "VEC3",
  6567. "count" : 65
  6568. },
  6569. {
  6570. "bufferView" : 139,
  6571. "componentType" : 5126,
  6572. "type" : "VEC4",
  6573. "count" : 65
  6574. },
  6575. {
  6576. "bufferView" : 140,
  6577. "componentType" : 5126,
  6578. "type" : "VEC3",
  6579. "count" : 65
  6580. },
  6581. {
  6582. "bufferView" : 141,
  6583. "componentType" : 5126,
  6584. "type" : "VEC3",
  6585. "count" : 65
  6586. },
  6587. {
  6588. "bufferView" : 142,
  6589. "componentType" : 5126,
  6590. "type" : "VEC4",
  6591. "count" : 65
  6592. },
  6593. {
  6594. "bufferView" : 143,
  6595. "componentType" : 5126,
  6596. "type" : "VEC3",
  6597. "count" : 65
  6598. },
  6599. {
  6600. "bufferView" : 144,
  6601. "componentType" : 5126,
  6602. "type" : "VEC3",
  6603. "count" : 65
  6604. },
  6605. {
  6606. "bufferView" : 145,
  6607. "componentType" : 5126,
  6608. "type" : "VEC4",
  6609. "count" : 65
  6610. },
  6611. {
  6612. "bufferView" : 146,
  6613. "componentType" : 5126,
  6614. "type" : "VEC3",
  6615. "count" : 65
  6616. },
  6617. {
  6618. "bufferView" : 147,
  6619. "componentType" : 5126,
  6620. "type" : "VEC3",
  6621. "count" : 65
  6622. },
  6623. {
  6624. "bufferView" : 148,
  6625. "componentType" : 5126,
  6626. "type" : "VEC4",
  6627. "count" : 65
  6628. },
  6629. {
  6630. "bufferView" : 149,
  6631. "componentType" : 5126,
  6632. "type" : "VEC3",
  6633. "count" : 65
  6634. },
  6635. {
  6636. "bufferView" : 150,
  6637. "componentType" : 5126,
  6638. "type" : "VEC3",
  6639. "count" : 65
  6640. },
  6641. {
  6642. "bufferView" : 151,
  6643. "componentType" : 5126,
  6644. "type" : "VEC4",
  6645. "count" : 65
  6646. },
  6647. {
  6648. "bufferView" : 152,
  6649. "componentType" : 5126,
  6650. "type" : "VEC3",
  6651. "count" : 65
  6652. },
  6653. {
  6654. "bufferView" : 153,
  6655. "componentType" : 5126,
  6656. "type" : "VEC3",
  6657. "count" : 65
  6658. },
  6659. {
  6660. "bufferView" : 154,
  6661. "componentType" : 5126,
  6662. "type" : "VEC4",
  6663. "count" : 65
  6664. },
  6665. {
  6666. "bufferView" : 155,
  6667. "componentType" : 5126,
  6668. "type" : "VEC3",
  6669. "count" : 65
  6670. },
  6671. {
  6672. "bufferView" : 156,
  6673. "componentType" : 5126,
  6674. "type" : "VEC3",
  6675. "count" : 65
  6676. },
  6677. {
  6678. "bufferView" : 157,
  6679. "componentType" : 5126,
  6680. "type" : "VEC4",
  6681. "count" : 65
  6682. },
  6683. {
  6684. "bufferView" : 158,
  6685. "componentType" : 5126,
  6686. "type" : "VEC3",
  6687. "count" : 65
  6688. },
  6689. {
  6690. "bufferView" : 159,
  6691. "componentType" : 5126,
  6692. "type" : "VEC3",
  6693. "count" : 65
  6694. },
  6695. {
  6696. "bufferView" : 160,
  6697. "componentType" : 5126,
  6698. "type" : "VEC4",
  6699. "count" : 65
  6700. },
  6701. {
  6702. "bufferView" : 161,
  6703. "componentType" : 5126,
  6704. "type" : "VEC3",
  6705. "count" : 65
  6706. },
  6707. {
  6708. "bufferView" : 162,
  6709. "componentType" : 5126,
  6710. "type" : "VEC3",
  6711. "count" : 65
  6712. },
  6713. {
  6714. "bufferView" : 163,
  6715. "componentType" : 5126,
  6716. "type" : "VEC4",
  6717. "count" : 65
  6718. },
  6719. {
  6720. "bufferView" : 164,
  6721. "componentType" : 5126,
  6722. "type" : "VEC3",
  6723. "count" : 65
  6724. },
  6725. {
  6726. "bufferView" : 165,
  6727. "componentType" : 5126,
  6728. "type" : "VEC3",
  6729. "count" : 65
  6730. },
  6731. {
  6732. "bufferView" : 166,
  6733. "componentType" : 5126,
  6734. "type" : "VEC4",
  6735. "count" : 65
  6736. },
  6737. {
  6738. "bufferView" : 167,
  6739. "componentType" : 5126,
  6740. "type" : "VEC3",
  6741. "count" : 65
  6742. },
  6743. {
  6744. "bufferView" : 168,
  6745. "componentType" : 5126,
  6746. "type" : "VEC3",
  6747. "count" : 65
  6748. },
  6749. {
  6750. "bufferView" : 169,
  6751. "componentType" : 5126,
  6752. "type" : "VEC4",
  6753. "count" : 65
  6754. },
  6755. {
  6756. "bufferView" : 170,
  6757. "componentType" : 5126,
  6758. "type" : "VEC3",
  6759. "count" : 65
  6760. },
  6761. {
  6762. "bufferView" : 171,
  6763. "componentType" : 5126,
  6764. "type" : "VEC3",
  6765. "count" : 65
  6766. },
  6767. {
  6768. "bufferView" : 172,
  6769. "componentType" : 5126,
  6770. "type" : "VEC4",
  6771. "count" : 65
  6772. },
  6773. {
  6774. "bufferView" : 173,
  6775. "componentType" : 5126,
  6776. "type" : "VEC3",
  6777. "count" : 65
  6778. },
  6779. {
  6780. "bufferView" : 174,
  6781. "componentType" : 5126,
  6782. "type" : "VEC3",
  6783. "count" : 65
  6784. },
  6785. {
  6786. "bufferView" : 175,
  6787. "componentType" : 5126,
  6788. "type" : "VEC4",
  6789. "count" : 65
  6790. },
  6791. {
  6792. "bufferView" : 176,
  6793. "componentType" : 5126,
  6794. "type" : "VEC3",
  6795. "count" : 65
  6796. },
  6797. {
  6798. "bufferView" : 177,
  6799. "componentType" : 5126,
  6800. "type" : "VEC3",
  6801. "count" : 65
  6802. },
  6803. {
  6804. "bufferView" : 178,
  6805. "componentType" : 5126,
  6806. "type" : "VEC4",
  6807. "count" : 65
  6808. },
  6809. {
  6810. "bufferView" : 179,
  6811. "componentType" : 5126,
  6812. "type" : "VEC3",
  6813. "count" : 65
  6814. },
  6815. {
  6816. "bufferView" : 180,
  6817. "componentType" : 5126,
  6818. "type" : "VEC3",
  6819. "count" : 65
  6820. },
  6821. {
  6822. "bufferView" : 181,
  6823. "componentType" : 5126,
  6824. "type" : "VEC4",
  6825. "count" : 65
  6826. },
  6827. {
  6828. "bufferView" : 182,
  6829. "componentType" : 5126,
  6830. "type" : "VEC3",
  6831. "count" : 65
  6832. },
  6833. {
  6834. "bufferView" : 183,
  6835. "componentType" : 5126,
  6836. "max" : [
  6837. 1.0833333333333333
  6838. ],
  6839. "type" : "SCALAR",
  6840. "min" : [
  6841. 0
  6842. ],
  6843. "count" : 27
  6844. },
  6845. {
  6846. "bufferView" : 184,
  6847. "componentType" : 5126,
  6848. "type" : "VEC3",
  6849. "count" : 27
  6850. },
  6851. {
  6852. "bufferView" : 185,
  6853. "componentType" : 5126,
  6854. "type" : "VEC4",
  6855. "count" : 27
  6856. },
  6857. {
  6858. "bufferView" : 186,
  6859. "componentType" : 5126,
  6860. "type" : "VEC3",
  6861. "count" : 27
  6862. },
  6863. {
  6864. "bufferView" : 187,
  6865. "componentType" : 5126,
  6866. "type" : "VEC3",
  6867. "count" : 27
  6868. },
  6869. {
  6870. "bufferView" : 188,
  6871. "componentType" : 5126,
  6872. "type" : "VEC4",
  6873. "count" : 27
  6874. },
  6875. {
  6876. "bufferView" : 189,
  6877. "componentType" : 5126,
  6878. "type" : "VEC3",
  6879. "count" : 27
  6880. },
  6881. {
  6882. "bufferView" : 190,
  6883. "componentType" : 5126,
  6884. "type" : "VEC3",
  6885. "count" : 27
  6886. },
  6887. {
  6888. "bufferView" : 191,
  6889. "componentType" : 5126,
  6890. "type" : "VEC4",
  6891. "count" : 27
  6892. },
  6893. {
  6894. "bufferView" : 192,
  6895. "componentType" : 5126,
  6896. "type" : "VEC3",
  6897. "count" : 27
  6898. },
  6899. {
  6900. "bufferView" : 193,
  6901. "componentType" : 5126,
  6902. "type" : "VEC3",
  6903. "count" : 27
  6904. },
  6905. {
  6906. "bufferView" : 194,
  6907. "componentType" : 5126,
  6908. "type" : "VEC4",
  6909. "count" : 27
  6910. },
  6911. {
  6912. "bufferView" : 195,
  6913. "componentType" : 5126,
  6914. "type" : "VEC3",
  6915. "count" : 27
  6916. },
  6917. {
  6918. "bufferView" : 196,
  6919. "componentType" : 5126,
  6920. "type" : "VEC3",
  6921. "count" : 27
  6922. },
  6923. {
  6924. "bufferView" : 197,
  6925. "componentType" : 5126,
  6926. "type" : "VEC4",
  6927. "count" : 27
  6928. },
  6929. {
  6930. "bufferView" : 198,
  6931. "componentType" : 5126,
  6932. "type" : "VEC3",
  6933. "count" : 27
  6934. },
  6935. {
  6936. "bufferView" : 199,
  6937. "componentType" : 5126,
  6938. "type" : "VEC3",
  6939. "count" : 27
  6940. },
  6941. {
  6942. "bufferView" : 200,
  6943. "componentType" : 5126,
  6944. "type" : "VEC4",
  6945. "count" : 27
  6946. },
  6947. {
  6948. "bufferView" : 201,
  6949. "componentType" : 5126,
  6950. "type" : "VEC3",
  6951. "count" : 27
  6952. },
  6953. {
  6954. "bufferView" : 202,
  6955. "componentType" : 5126,
  6956. "type" : "VEC3",
  6957. "count" : 27
  6958. },
  6959. {
  6960. "bufferView" : 203,
  6961. "componentType" : 5126,
  6962. "type" : "VEC4",
  6963. "count" : 27
  6964. },
  6965. {
  6966. "bufferView" : 204,
  6967. "componentType" : 5126,
  6968. "type" : "VEC3",
  6969. "count" : 27
  6970. },
  6971. {
  6972. "bufferView" : 205,
  6973. "componentType" : 5126,
  6974. "type" : "VEC3",
  6975. "count" : 27
  6976. },
  6977. {
  6978. "bufferView" : 206,
  6979. "componentType" : 5126,
  6980. "type" : "VEC4",
  6981. "count" : 27
  6982. },
  6983. {
  6984. "bufferView" : 207,
  6985. "componentType" : 5126,
  6986. "type" : "VEC3",
  6987. "count" : 27
  6988. },
  6989. {
  6990. "bufferView" : 208,
  6991. "componentType" : 5126,
  6992. "type" : "VEC3",
  6993. "count" : 27
  6994. },
  6995. {
  6996. "bufferView" : 209,
  6997. "componentType" : 5126,
  6998. "type" : "VEC4",
  6999. "count" : 27
  7000. },
  7001. {
  7002. "bufferView" : 210,
  7003. "componentType" : 5126,
  7004. "type" : "VEC3",
  7005. "count" : 27
  7006. },
  7007. {
  7008. "bufferView" : 211,
  7009. "componentType" : 5126,
  7010. "type" : "VEC3",
  7011. "count" : 27
  7012. },
  7013. {
  7014. "bufferView" : 212,
  7015. "componentType" : 5126,
  7016. "type" : "VEC4",
  7017. "count" : 27
  7018. },
  7019. {
  7020. "bufferView" : 213,
  7021. "componentType" : 5126,
  7022. "type" : "VEC3",
  7023. "count" : 27
  7024. },
  7025. {
  7026. "bufferView" : 214,
  7027. "componentType" : 5126,
  7028. "type" : "VEC3",
  7029. "count" : 27
  7030. },
  7031. {
  7032. "bufferView" : 215,
  7033. "componentType" : 5126,
  7034. "type" : "VEC4",
  7035. "count" : 27
  7036. },
  7037. {
  7038. "bufferView" : 216,
  7039. "componentType" : 5126,
  7040. "type" : "VEC3",
  7041. "count" : 27
  7042. },
  7043. {
  7044. "bufferView" : 217,
  7045. "componentType" : 5126,
  7046. "type" : "VEC3",
  7047. "count" : 27
  7048. },
  7049. {
  7050. "bufferView" : 218,
  7051. "componentType" : 5126,
  7052. "type" : "VEC4",
  7053. "count" : 27
  7054. },
  7055. {
  7056. "bufferView" : 219,
  7057. "componentType" : 5126,
  7058. "type" : "VEC3",
  7059. "count" : 27
  7060. },
  7061. {
  7062. "bufferView" : 220,
  7063. "componentType" : 5126,
  7064. "type" : "VEC3",
  7065. "count" : 27
  7066. },
  7067. {
  7068. "bufferView" : 221,
  7069. "componentType" : 5126,
  7070. "type" : "VEC4",
  7071. "count" : 27
  7072. },
  7073. {
  7074. "bufferView" : 222,
  7075. "componentType" : 5126,
  7076. "type" : "VEC3",
  7077. "count" : 27
  7078. },
  7079. {
  7080. "bufferView" : 223,
  7081. "componentType" : 5126,
  7082. "type" : "VEC3",
  7083. "count" : 27
  7084. },
  7085. {
  7086. "bufferView" : 224,
  7087. "componentType" : 5126,
  7088. "type" : "VEC4",
  7089. "count" : 27
  7090. },
  7091. {
  7092. "bufferView" : 225,
  7093. "componentType" : 5126,
  7094. "type" : "VEC3",
  7095. "count" : 27
  7096. },
  7097. {
  7098. "bufferView" : 226,
  7099. "componentType" : 5126,
  7100. "type" : "VEC3",
  7101. "count" : 27
  7102. },
  7103. {
  7104. "bufferView" : 227,
  7105. "componentType" : 5126,
  7106. "type" : "VEC4",
  7107. "count" : 27
  7108. },
  7109. {
  7110. "bufferView" : 228,
  7111. "componentType" : 5126,
  7112. "type" : "VEC3",
  7113. "count" : 27
  7114. },
  7115. {
  7116. "bufferView" : 229,
  7117. "componentType" : 5126,
  7118. "type" : "VEC3",
  7119. "count" : 27
  7120. },
  7121. {
  7122. "bufferView" : 230,
  7123. "componentType" : 5126,
  7124. "type" : "VEC4",
  7125. "count" : 27
  7126. },
  7127. {
  7128. "bufferView" : 231,
  7129. "componentType" : 5126,
  7130. "type" : "VEC3",
  7131. "count" : 27
  7132. },
  7133. {
  7134. "bufferView" : 232,
  7135. "componentType" : 5126,
  7136. "type" : "VEC3",
  7137. "count" : 27
  7138. },
  7139. {
  7140. "bufferView" : 233,
  7141. "componentType" : 5126,
  7142. "type" : "VEC4",
  7143. "count" : 27
  7144. },
  7145. {
  7146. "bufferView" : 234,
  7147. "componentType" : 5126,
  7148. "type" : "VEC3",
  7149. "count" : 27
  7150. },
  7151. {
  7152. "bufferView" : 235,
  7153. "componentType" : 5126,
  7154. "type" : "VEC3",
  7155. "count" : 27
  7156. },
  7157. {
  7158. "bufferView" : 236,
  7159. "componentType" : 5126,
  7160. "type" : "VEC4",
  7161. "count" : 27
  7162. },
  7163. {
  7164. "bufferView" : 237,
  7165. "componentType" : 5126,
  7166. "type" : "VEC3",
  7167. "count" : 27
  7168. },
  7169. {
  7170. "bufferView" : 238,
  7171. "componentType" : 5126,
  7172. "type" : "VEC3",
  7173. "count" : 27
  7174. },
  7175. {
  7176. "bufferView" : 239,
  7177. "componentType" : 5126,
  7178. "type" : "VEC4",
  7179. "count" : 27
  7180. },
  7181. {
  7182. "bufferView" : 240,
  7183. "componentType" : 5126,
  7184. "type" : "VEC3",
  7185. "count" : 27
  7186. },
  7187. {
  7188. "bufferView" : 241,
  7189. "componentType" : 5126,
  7190. "type" : "VEC3",
  7191. "count" : 27
  7192. },
  7193. {
  7194. "bufferView" : 242,
  7195. "componentType" : 5126,
  7196. "type" : "VEC4",
  7197. "count" : 27
  7198. },
  7199. {
  7200. "bufferView" : 243,
  7201. "componentType" : 5126,
  7202. "type" : "VEC3",
  7203. "count" : 27
  7204. },
  7205. {
  7206. "bufferView" : 244,
  7207. "componentType" : 5126,
  7208. "type" : "VEC3",
  7209. "count" : 27
  7210. },
  7211. {
  7212. "bufferView" : 245,
  7213. "componentType" : 5126,
  7214. "type" : "VEC4",
  7215. "count" : 27
  7216. },
  7217. {
  7218. "bufferView" : 246,
  7219. "componentType" : 5126,
  7220. "type" : "VEC3",
  7221. "count" : 27
  7222. },
  7223. {
  7224. "bufferView" : 247,
  7225. "componentType" : 5126,
  7226. "type" : "VEC3",
  7227. "count" : 27
  7228. },
  7229. {
  7230. "bufferView" : 248,
  7231. "componentType" : 5126,
  7232. "type" : "VEC4",
  7233. "count" : 27
  7234. },
  7235. {
  7236. "bufferView" : 249,
  7237. "componentType" : 5126,
  7238. "type" : "VEC3",
  7239. "count" : 27
  7240. },
  7241. {
  7242. "bufferView" : 250,
  7243. "componentType" : 5126,
  7244. "type" : "VEC3",
  7245. "count" : 27
  7246. },
  7247. {
  7248. "bufferView" : 251,
  7249. "componentType" : 5126,
  7250. "type" : "VEC4",
  7251. "count" : 27
  7252. },
  7253. {
  7254. "bufferView" : 252,
  7255. "componentType" : 5126,
  7256. "type" : "VEC3",
  7257. "count" : 27
  7258. },
  7259. {
  7260. "bufferView" : 253,
  7261. "componentType" : 5126,
  7262. "type" : "VEC3",
  7263. "count" : 27
  7264. },
  7265. {
  7266. "bufferView" : 254,
  7267. "componentType" : 5126,
  7268. "type" : "VEC4",
  7269. "count" : 27
  7270. },
  7271. {
  7272. "bufferView" : 255,
  7273. "componentType" : 5126,
  7274. "type" : "VEC3",
  7275. "count" : 27
  7276. },
  7277. {
  7278. "bufferView" : 256,
  7279. "componentType" : 5126,
  7280. "type" : "VEC3",
  7281. "count" : 27
  7282. },
  7283. {
  7284. "bufferView" : 257,
  7285. "componentType" : 5126,
  7286. "type" : "VEC4",
  7287. "count" : 27
  7288. },
  7289. {
  7290. "bufferView" : 258,
  7291. "componentType" : 5126,
  7292. "type" : "VEC3",
  7293. "count" : 27
  7294. },
  7295. {
  7296. "bufferView" : 259,
  7297. "componentType" : 5126,
  7298. "type" : "VEC3",
  7299. "count" : 27
  7300. },
  7301. {
  7302. "bufferView" : 260,
  7303. "componentType" : 5126,
  7304. "type" : "VEC4",
  7305. "count" : 27
  7306. },
  7307. {
  7308. "bufferView" : 261,
  7309. "componentType" : 5126,
  7310. "type" : "VEC3",
  7311. "count" : 27
  7312. },
  7313. {
  7314. "bufferView" : 262,
  7315. "componentType" : 5126,
  7316. "type" : "VEC3",
  7317. "count" : 27
  7318. },
  7319. {
  7320. "bufferView" : 263,
  7321. "componentType" : 5126,
  7322. "type" : "VEC4",
  7323. "count" : 27
  7324. },
  7325. {
  7326. "bufferView" : 264,
  7327. "componentType" : 5126,
  7328. "type" : "VEC3",
  7329. "count" : 27
  7330. },
  7331. {
  7332. "bufferView" : 265,
  7333. "componentType" : 5126,
  7334. "type" : "VEC3",
  7335. "count" : 27
  7336. },
  7337. {
  7338. "bufferView" : 266,
  7339. "componentType" : 5126,
  7340. "type" : "VEC4",
  7341. "count" : 27
  7342. },
  7343. {
  7344. "bufferView" : 267,
  7345. "componentType" : 5126,
  7346. "type" : "VEC3",
  7347. "count" : 27
  7348. },
  7349. {
  7350. "bufferView" : 268,
  7351. "componentType" : 5126,
  7352. "max" : [
  7353. 2
  7354. ],
  7355. "type" : "SCALAR",
  7356. "min" : [
  7357. 0
  7358. ],
  7359. "count" : 49
  7360. },
  7361. {
  7362. "bufferView" : 269,
  7363. "componentType" : 5126,
  7364. "type" : "VEC3",
  7365. "count" : 49
  7366. },
  7367. {
  7368. "bufferView" : 270,
  7369. "componentType" : 5126,
  7370. "type" : "VEC4",
  7371. "count" : 49
  7372. },
  7373. {
  7374. "bufferView" : 271,
  7375. "componentType" : 5126,
  7376. "type" : "VEC3",
  7377. "count" : 49
  7378. },
  7379. {
  7380. "bufferView" : 272,
  7381. "componentType" : 5126,
  7382. "type" : "VEC3",
  7383. "count" : 49
  7384. },
  7385. {
  7386. "bufferView" : 273,
  7387. "componentType" : 5126,
  7388. "type" : "VEC4",
  7389. "count" : 49
  7390. },
  7391. {
  7392. "bufferView" : 274,
  7393. "componentType" : 5126,
  7394. "type" : "VEC3",
  7395. "count" : 49
  7396. },
  7397. {
  7398. "bufferView" : 275,
  7399. "componentType" : 5126,
  7400. "type" : "VEC3",
  7401. "count" : 49
  7402. },
  7403. {
  7404. "bufferView" : 276,
  7405. "componentType" : 5126,
  7406. "type" : "VEC4",
  7407. "count" : 49
  7408. },
  7409. {
  7410. "bufferView" : 277,
  7411. "componentType" : 5126,
  7412. "type" : "VEC3",
  7413. "count" : 49
  7414. },
  7415. {
  7416. "bufferView" : 278,
  7417. "componentType" : 5126,
  7418. "type" : "VEC3",
  7419. "count" : 49
  7420. },
  7421. {
  7422. "bufferView" : 279,
  7423. "componentType" : 5126,
  7424. "type" : "VEC4",
  7425. "count" : 49
  7426. },
  7427. {
  7428. "bufferView" : 280,
  7429. "componentType" : 5126,
  7430. "type" : "VEC3",
  7431. "count" : 49
  7432. },
  7433. {
  7434. "bufferView" : 281,
  7435. "componentType" : 5126,
  7436. "type" : "VEC3",
  7437. "count" : 49
  7438. },
  7439. {
  7440. "bufferView" : 282,
  7441. "componentType" : 5126,
  7442. "type" : "VEC4",
  7443. "count" : 49
  7444. },
  7445. {
  7446. "bufferView" : 283,
  7447. "componentType" : 5126,
  7448. "type" : "VEC3",
  7449. "count" : 49
  7450. },
  7451. {
  7452. "bufferView" : 284,
  7453. "componentType" : 5126,
  7454. "type" : "VEC3",
  7455. "count" : 49
  7456. },
  7457. {
  7458. "bufferView" : 285,
  7459. "componentType" : 5126,
  7460. "type" : "VEC4",
  7461. "count" : 49
  7462. },
  7463. {
  7464. "bufferView" : 286,
  7465. "componentType" : 5126,
  7466. "type" : "VEC3",
  7467. "count" : 49
  7468. },
  7469. {
  7470. "bufferView" : 287,
  7471. "componentType" : 5126,
  7472. "type" : "VEC3",
  7473. "count" : 49
  7474. },
  7475. {
  7476. "bufferView" : 288,
  7477. "componentType" : 5126,
  7478. "type" : "VEC4",
  7479. "count" : 49
  7480. },
  7481. {
  7482. "bufferView" : 289,
  7483. "componentType" : 5126,
  7484. "type" : "VEC3",
  7485. "count" : 49
  7486. },
  7487. {
  7488. "bufferView" : 290,
  7489. "componentType" : 5126,
  7490. "type" : "VEC3",
  7491. "count" : 49
  7492. },
  7493. {
  7494. "bufferView" : 291,
  7495. "componentType" : 5126,
  7496. "type" : "VEC4",
  7497. "count" : 49
  7498. },
  7499. {
  7500. "bufferView" : 292,
  7501. "componentType" : 5126,
  7502. "type" : "VEC3",
  7503. "count" : 49
  7504. },
  7505. {
  7506. "bufferView" : 293,
  7507. "componentType" : 5126,
  7508. "type" : "VEC3",
  7509. "count" : 49
  7510. },
  7511. {
  7512. "bufferView" : 294,
  7513. "componentType" : 5126,
  7514. "type" : "VEC4",
  7515. "count" : 49
  7516. },
  7517. {
  7518. "bufferView" : 295,
  7519. "componentType" : 5126,
  7520. "type" : "VEC3",
  7521. "count" : 49
  7522. },
  7523. {
  7524. "bufferView" : 296,
  7525. "componentType" : 5126,
  7526. "type" : "VEC3",
  7527. "count" : 49
  7528. },
  7529. {
  7530. "bufferView" : 297,
  7531. "componentType" : 5126,
  7532. "type" : "VEC4",
  7533. "count" : 49
  7534. },
  7535. {
  7536. "bufferView" : 298,
  7537. "componentType" : 5126,
  7538. "type" : "VEC3",
  7539. "count" : 49
  7540. },
  7541. {
  7542. "bufferView" : 299,
  7543. "componentType" : 5126,
  7544. "type" : "VEC3",
  7545. "count" : 49
  7546. },
  7547. {
  7548. "bufferView" : 300,
  7549. "componentType" : 5126,
  7550. "type" : "VEC4",
  7551. "count" : 49
  7552. },
  7553. {
  7554. "bufferView" : 301,
  7555. "componentType" : 5126,
  7556. "type" : "VEC3",
  7557. "count" : 49
  7558. },
  7559. {
  7560. "bufferView" : 302,
  7561. "componentType" : 5126,
  7562. "type" : "VEC3",
  7563. "count" : 49
  7564. },
  7565. {
  7566. "bufferView" : 303,
  7567. "componentType" : 5126,
  7568. "type" : "VEC4",
  7569. "count" : 49
  7570. },
  7571. {
  7572. "bufferView" : 304,
  7573. "componentType" : 5126,
  7574. "type" : "VEC3",
  7575. "count" : 49
  7576. },
  7577. {
  7578. "bufferView" : 305,
  7579. "componentType" : 5126,
  7580. "type" : "VEC3",
  7581. "count" : 49
  7582. },
  7583. {
  7584. "bufferView" : 306,
  7585. "componentType" : 5126,
  7586. "type" : "VEC4",
  7587. "count" : 49
  7588. },
  7589. {
  7590. "bufferView" : 307,
  7591. "componentType" : 5126,
  7592. "type" : "VEC3",
  7593. "count" : 49
  7594. },
  7595. {
  7596. "bufferView" : 308,
  7597. "componentType" : 5126,
  7598. "type" : "VEC3",
  7599. "count" : 49
  7600. },
  7601. {
  7602. "bufferView" : 309,
  7603. "componentType" : 5126,
  7604. "type" : "VEC4",
  7605. "count" : 49
  7606. },
  7607. {
  7608. "bufferView" : 310,
  7609. "componentType" : 5126,
  7610. "type" : "VEC3",
  7611. "count" : 49
  7612. },
  7613. {
  7614. "bufferView" : 311,
  7615. "componentType" : 5126,
  7616. "type" : "VEC3",
  7617. "count" : 49
  7618. },
  7619. {
  7620. "bufferView" : 312,
  7621. "componentType" : 5126,
  7622. "type" : "VEC4",
  7623. "count" : 49
  7624. },
  7625. {
  7626. "bufferView" : 313,
  7627. "componentType" : 5126,
  7628. "type" : "VEC3",
  7629. "count" : 49
  7630. },
  7631. {
  7632. "bufferView" : 314,
  7633. "componentType" : 5126,
  7634. "type" : "VEC3",
  7635. "count" : 49
  7636. },
  7637. {
  7638. "bufferView" : 315,
  7639. "componentType" : 5126,
  7640. "type" : "VEC4",
  7641. "count" : 49
  7642. },
  7643. {
  7644. "bufferView" : 316,
  7645. "componentType" : 5126,
  7646. "type" : "VEC3",
  7647. "count" : 49
  7648. },
  7649. {
  7650. "bufferView" : 317,
  7651. "componentType" : 5126,
  7652. "type" : "VEC3",
  7653. "count" : 49
  7654. },
  7655. {
  7656. "bufferView" : 318,
  7657. "componentType" : 5126,
  7658. "type" : "VEC4",
  7659. "count" : 49
  7660. },
  7661. {
  7662. "bufferView" : 319,
  7663. "componentType" : 5126,
  7664. "type" : "VEC3",
  7665. "count" : 49
  7666. },
  7667. {
  7668. "bufferView" : 320,
  7669. "componentType" : 5126,
  7670. "type" : "VEC3",
  7671. "count" : 49
  7672. },
  7673. {
  7674. "bufferView" : 321,
  7675. "componentType" : 5126,
  7676. "type" : "VEC4",
  7677. "count" : 49
  7678. },
  7679. {
  7680. "bufferView" : 322,
  7681. "componentType" : 5126,
  7682. "type" : "VEC3",
  7683. "count" : 49
  7684. },
  7685. {
  7686. "bufferView" : 323,
  7687. "componentType" : 5126,
  7688. "type" : "VEC3",
  7689. "count" : 49
  7690. },
  7691. {
  7692. "bufferView" : 324,
  7693. "componentType" : 5126,
  7694. "type" : "VEC4",
  7695. "count" : 49
  7696. },
  7697. {
  7698. "bufferView" : 325,
  7699. "componentType" : 5126,
  7700. "type" : "VEC3",
  7701. "count" : 49
  7702. },
  7703. {
  7704. "bufferView" : 326,
  7705. "componentType" : 5126,
  7706. "type" : "VEC3",
  7707. "count" : 49
  7708. },
  7709. {
  7710. "bufferView" : 327,
  7711. "componentType" : 5126,
  7712. "type" : "VEC4",
  7713. "count" : 49
  7714. },
  7715. {
  7716. "bufferView" : 328,
  7717. "componentType" : 5126,
  7718. "type" : "VEC3",
  7719. "count" : 49
  7720. },
  7721. {
  7722. "bufferView" : 329,
  7723. "componentType" : 5126,
  7724. "type" : "VEC3",
  7725. "count" : 49
  7726. },
  7727. {
  7728. "bufferView" : 330,
  7729. "componentType" : 5126,
  7730. "type" : "VEC4",
  7731. "count" : 49
  7732. },
  7733. {
  7734. "bufferView" : 331,
  7735. "componentType" : 5126,
  7736. "type" : "VEC3",
  7737. "count" : 49
  7738. },
  7739. {
  7740. "bufferView" : 332,
  7741. "componentType" : 5126,
  7742. "type" : "VEC3",
  7743. "count" : 49
  7744. },
  7745. {
  7746. "bufferView" : 333,
  7747. "componentType" : 5126,
  7748. "type" : "VEC4",
  7749. "count" : 49
  7750. },
  7751. {
  7752. "bufferView" : 334,
  7753. "componentType" : 5126,
  7754. "type" : "VEC3",
  7755. "count" : 49
  7756. },
  7757. {
  7758. "bufferView" : 335,
  7759. "componentType" : 5126,
  7760. "type" : "VEC3",
  7761. "count" : 49
  7762. },
  7763. {
  7764. "bufferView" : 336,
  7765. "componentType" : 5126,
  7766. "type" : "VEC4",
  7767. "count" : 49
  7768. },
  7769. {
  7770. "bufferView" : 337,
  7771. "componentType" : 5126,
  7772. "type" : "VEC3",
  7773. "count" : 49
  7774. },
  7775. {
  7776. "bufferView" : 338,
  7777. "componentType" : 5126,
  7778. "type" : "VEC3",
  7779. "count" : 49
  7780. },
  7781. {
  7782. "bufferView" : 339,
  7783. "componentType" : 5126,
  7784. "type" : "VEC4",
  7785. "count" : 49
  7786. },
  7787. {
  7788. "bufferView" : 340,
  7789. "componentType" : 5126,
  7790. "type" : "VEC3",
  7791. "count" : 49
  7792. },
  7793. {
  7794. "bufferView" : 341,
  7795. "componentType" : 5126,
  7796. "type" : "VEC3",
  7797. "count" : 49
  7798. },
  7799. {
  7800. "bufferView" : 342,
  7801. "componentType" : 5126,
  7802. "type" : "VEC4",
  7803. "count" : 49
  7804. },
  7805. {
  7806. "bufferView" : 343,
  7807. "componentType" : 5126,
  7808. "type" : "VEC3",
  7809. "count" : 49
  7810. },
  7811. {
  7812. "bufferView" : 344,
  7813. "componentType" : 5126,
  7814. "type" : "VEC3",
  7815. "count" : 49
  7816. },
  7817. {
  7818. "bufferView" : 345,
  7819. "componentType" : 5126,
  7820. "type" : "VEC4",
  7821. "count" : 49
  7822. },
  7823. {
  7824. "bufferView" : 346,
  7825. "componentType" : 5126,
  7826. "type" : "VEC3",
  7827. "count" : 49
  7828. },
  7829. {
  7830. "bufferView" : 347,
  7831. "componentType" : 5126,
  7832. "type" : "VEC3",
  7833. "count" : 49
  7834. },
  7835. {
  7836. "bufferView" : 348,
  7837. "componentType" : 5126,
  7838. "type" : "VEC4",
  7839. "count" : 49
  7840. },
  7841. {
  7842. "bufferView" : 349,
  7843. "componentType" : 5126,
  7844. "type" : "VEC3",
  7845. "count" : 49
  7846. },
  7847. {
  7848. "bufferView" : 350,
  7849. "componentType" : 5126,
  7850. "type" : "VEC3",
  7851. "count" : 49
  7852. },
  7853. {
  7854. "bufferView" : 351,
  7855. "componentType" : 5126,
  7856. "type" : "VEC4",
  7857. "count" : 49
  7858. },
  7859. {
  7860. "bufferView" : 352,
  7861. "componentType" : 5126,
  7862. "type" : "VEC3",
  7863. "count" : 49
  7864. },
  7865. {
  7866. "bufferView" : 353,
  7867. "componentType" : 5126,
  7868. "max" : [
  7869. 6.25
  7870. ],
  7871. "type" : "SCALAR",
  7872. "min" : [
  7873. 0
  7874. ],
  7875. "count" : 151
  7876. },
  7877. {
  7878. "bufferView" : 354,
  7879. "componentType" : 5126,
  7880. "type" : "VEC3",
  7881. "count" : 151
  7882. },
  7883. {
  7884. "bufferView" : 355,
  7885. "componentType" : 5126,
  7886. "type" : "VEC4",
  7887. "count" : 151
  7888. },
  7889. {
  7890. "bufferView" : 356,
  7891. "componentType" : 5126,
  7892. "type" : "VEC3",
  7893. "count" : 151
  7894. },
  7895. {
  7896. "bufferView" : 357,
  7897. "componentType" : 5126,
  7898. "type" : "VEC3",
  7899. "count" : 151
  7900. },
  7901. {
  7902. "bufferView" : 358,
  7903. "componentType" : 5126,
  7904. "type" : "VEC4",
  7905. "count" : 151
  7906. },
  7907. {
  7908. "bufferView" : 359,
  7909. "componentType" : 5126,
  7910. "type" : "VEC3",
  7911. "count" : 151
  7912. },
  7913. {
  7914. "bufferView" : 360,
  7915. "componentType" : 5126,
  7916. "type" : "VEC3",
  7917. "count" : 151
  7918. },
  7919. {
  7920. "bufferView" : 361,
  7921. "componentType" : 5126,
  7922. "type" : "VEC4",
  7923. "count" : 151
  7924. },
  7925. {
  7926. "bufferView" : 362,
  7927. "componentType" : 5126,
  7928. "type" : "VEC3",
  7929. "count" : 151
  7930. },
  7931. {
  7932. "bufferView" : 363,
  7933. "componentType" : 5126,
  7934. "type" : "VEC3",
  7935. "count" : 151
  7936. },
  7937. {
  7938. "bufferView" : 364,
  7939. "componentType" : 5126,
  7940. "type" : "VEC4",
  7941. "count" : 151
  7942. },
  7943. {
  7944. "bufferView" : 365,
  7945. "componentType" : 5126,
  7946. "type" : "VEC3",
  7947. "count" : 151
  7948. },
  7949. {
  7950. "bufferView" : 366,
  7951. "componentType" : 5126,
  7952. "type" : "VEC3",
  7953. "count" : 151
  7954. },
  7955. {
  7956. "bufferView" : 367,
  7957. "componentType" : 5126,
  7958. "type" : "VEC4",
  7959. "count" : 151
  7960. },
  7961. {
  7962. "bufferView" : 368,
  7963. "componentType" : 5126,
  7964. "type" : "VEC3",
  7965. "count" : 151
  7966. },
  7967. {
  7968. "bufferView" : 369,
  7969. "componentType" : 5126,
  7970. "type" : "VEC3",
  7971. "count" : 151
  7972. },
  7973. {
  7974. "bufferView" : 370,
  7975. "componentType" : 5126,
  7976. "type" : "VEC4",
  7977. "count" : 151
  7978. },
  7979. {
  7980. "bufferView" : 371,
  7981. "componentType" : 5126,
  7982. "type" : "VEC3",
  7983. "count" : 151
  7984. },
  7985. {
  7986. "bufferView" : 372,
  7987. "componentType" : 5126,
  7988. "type" : "VEC3",
  7989. "count" : 151
  7990. },
  7991. {
  7992. "bufferView" : 373,
  7993. "componentType" : 5126,
  7994. "type" : "VEC4",
  7995. "count" : 151
  7996. },
  7997. {
  7998. "bufferView" : 374,
  7999. "componentType" : 5126,
  8000. "type" : "VEC3",
  8001. "count" : 151
  8002. },
  8003. {
  8004. "bufferView" : 375,
  8005. "componentType" : 5126,
  8006. "type" : "VEC3",
  8007. "count" : 151
  8008. },
  8009. {
  8010. "bufferView" : 376,
  8011. "componentType" : 5126,
  8012. "type" : "VEC4",
  8013. "count" : 151
  8014. },
  8015. {
  8016. "bufferView" : 377,
  8017. "componentType" : 5126,
  8018. "type" : "VEC3",
  8019. "count" : 151
  8020. },
  8021. {
  8022. "bufferView" : 378,
  8023. "componentType" : 5126,
  8024. "type" : "VEC3",
  8025. "count" : 151
  8026. },
  8027. {
  8028. "bufferView" : 379,
  8029. "componentType" : 5126,
  8030. "type" : "VEC4",
  8031. "count" : 151
  8032. },
  8033. {
  8034. "bufferView" : 380,
  8035. "componentType" : 5126,
  8036. "type" : "VEC3",
  8037. "count" : 151
  8038. },
  8039. {
  8040. "bufferView" : 381,
  8041. "componentType" : 5126,
  8042. "type" : "VEC3",
  8043. "count" : 151
  8044. },
  8045. {
  8046. "bufferView" : 382,
  8047. "componentType" : 5126,
  8048. "type" : "VEC4",
  8049. "count" : 151
  8050. },
  8051. {
  8052. "bufferView" : 383,
  8053. "componentType" : 5126,
  8054. "type" : "VEC3",
  8055. "count" : 151
  8056. },
  8057. {
  8058. "bufferView" : 384,
  8059. "componentType" : 5126,
  8060. "type" : "VEC3",
  8061. "count" : 151
  8062. },
  8063. {
  8064. "bufferView" : 385,
  8065. "componentType" : 5126,
  8066. "type" : "VEC4",
  8067. "count" : 151
  8068. },
  8069. {
  8070. "bufferView" : 386,
  8071. "componentType" : 5126,
  8072. "type" : "VEC3",
  8073. "count" : 151
  8074. },
  8075. {
  8076. "bufferView" : 387,
  8077. "componentType" : 5126,
  8078. "type" : "VEC3",
  8079. "count" : 151
  8080. },
  8081. {
  8082. "bufferView" : 388,
  8083. "componentType" : 5126,
  8084. "type" : "VEC4",
  8085. "count" : 151
  8086. },
  8087. {
  8088. "bufferView" : 389,
  8089. "componentType" : 5126,
  8090. "type" : "VEC3",
  8091. "count" : 151
  8092. },
  8093. {
  8094. "bufferView" : 390,
  8095. "componentType" : 5126,
  8096. "type" : "VEC3",
  8097. "count" : 151
  8098. },
  8099. {
  8100. "bufferView" : 391,
  8101. "componentType" : 5126,
  8102. "type" : "VEC4",
  8103. "count" : 151
  8104. },
  8105. {
  8106. "bufferView" : 392,
  8107. "componentType" : 5126,
  8108. "type" : "VEC3",
  8109. "count" : 151
  8110. },
  8111. {
  8112. "bufferView" : 393,
  8113. "componentType" : 5126,
  8114. "type" : "VEC3",
  8115. "count" : 151
  8116. },
  8117. {
  8118. "bufferView" : 394,
  8119. "componentType" : 5126,
  8120. "type" : "VEC4",
  8121. "count" : 151
  8122. },
  8123. {
  8124. "bufferView" : 395,
  8125. "componentType" : 5126,
  8126. "type" : "VEC3",
  8127. "count" : 151
  8128. },
  8129. {
  8130. "bufferView" : 396,
  8131. "componentType" : 5126,
  8132. "type" : "VEC3",
  8133. "count" : 151
  8134. },
  8135. {
  8136. "bufferView" : 397,
  8137. "componentType" : 5126,
  8138. "type" : "VEC4",
  8139. "count" : 151
  8140. },
  8141. {
  8142. "bufferView" : 398,
  8143. "componentType" : 5126,
  8144. "type" : "VEC3",
  8145. "count" : 151
  8146. },
  8147. {
  8148. "bufferView" : 399,
  8149. "componentType" : 5126,
  8150. "type" : "VEC3",
  8151. "count" : 151
  8152. },
  8153. {
  8154. "bufferView" : 400,
  8155. "componentType" : 5126,
  8156. "type" : "VEC4",
  8157. "count" : 151
  8158. },
  8159. {
  8160. "bufferView" : 401,
  8161. "componentType" : 5126,
  8162. "type" : "VEC3",
  8163. "count" : 151
  8164. },
  8165. {
  8166. "bufferView" : 402,
  8167. "componentType" : 5126,
  8168. "type" : "VEC3",
  8169. "count" : 151
  8170. },
  8171. {
  8172. "bufferView" : 403,
  8173. "componentType" : 5126,
  8174. "type" : "VEC4",
  8175. "count" : 151
  8176. },
  8177. {
  8178. "bufferView" : 404,
  8179. "componentType" : 5126,
  8180. "type" : "VEC3",
  8181. "count" : 151
  8182. },
  8183. {
  8184. "bufferView" : 405,
  8185. "componentType" : 5126,
  8186. "type" : "VEC3",
  8187. "count" : 151
  8188. },
  8189. {
  8190. "bufferView" : 406,
  8191. "componentType" : 5126,
  8192. "type" : "VEC4",
  8193. "count" : 151
  8194. },
  8195. {
  8196. "bufferView" : 407,
  8197. "componentType" : 5126,
  8198. "type" : "VEC3",
  8199. "count" : 151
  8200. },
  8201. {
  8202. "bufferView" : 408,
  8203. "componentType" : 5126,
  8204. "type" : "VEC3",
  8205. "count" : 151
  8206. },
  8207. {
  8208. "bufferView" : 409,
  8209. "componentType" : 5126,
  8210. "type" : "VEC4",
  8211. "count" : 151
  8212. },
  8213. {
  8214. "bufferView" : 410,
  8215. "componentType" : 5126,
  8216. "type" : "VEC3",
  8217. "count" : 151
  8218. },
  8219. {
  8220. "bufferView" : 411,
  8221. "componentType" : 5126,
  8222. "type" : "VEC3",
  8223. "count" : 151
  8224. },
  8225. {
  8226. "bufferView" : 412,
  8227. "componentType" : 5126,
  8228. "type" : "VEC4",
  8229. "count" : 151
  8230. },
  8231. {
  8232. "bufferView" : 413,
  8233. "componentType" : 5126,
  8234. "type" : "VEC3",
  8235. "count" : 151
  8236. },
  8237. {
  8238. "bufferView" : 414,
  8239. "componentType" : 5126,
  8240. "type" : "VEC3",
  8241. "count" : 151
  8242. },
  8243. {
  8244. "bufferView" : 415,
  8245. "componentType" : 5126,
  8246. "type" : "VEC4",
  8247. "count" : 151
  8248. },
  8249. {
  8250. "bufferView" : 416,
  8251. "componentType" : 5126,
  8252. "type" : "VEC3",
  8253. "count" : 151
  8254. },
  8255. {
  8256. "bufferView" : 417,
  8257. "componentType" : 5126,
  8258. "type" : "VEC3",
  8259. "count" : 151
  8260. },
  8261. {
  8262. "bufferView" : 418,
  8263. "componentType" : 5126,
  8264. "type" : "VEC4",
  8265. "count" : 151
  8266. },
  8267. {
  8268. "bufferView" : 419,
  8269. "componentType" : 5126,
  8270. "type" : "VEC3",
  8271. "count" : 151
  8272. },
  8273. {
  8274. "bufferView" : 420,
  8275. "componentType" : 5126,
  8276. "type" : "VEC3",
  8277. "count" : 151
  8278. },
  8279. {
  8280. "bufferView" : 421,
  8281. "componentType" : 5126,
  8282. "type" : "VEC4",
  8283. "count" : 151
  8284. },
  8285. {
  8286. "bufferView" : 422,
  8287. "componentType" : 5126,
  8288. "type" : "VEC3",
  8289. "count" : 151
  8290. },
  8291. {
  8292. "bufferView" : 423,
  8293. "componentType" : 5126,
  8294. "type" : "VEC3",
  8295. "count" : 151
  8296. },
  8297. {
  8298. "bufferView" : 424,
  8299. "componentType" : 5126,
  8300. "type" : "VEC4",
  8301. "count" : 151
  8302. },
  8303. {
  8304. "bufferView" : 425,
  8305. "componentType" : 5126,
  8306. "type" : "VEC3",
  8307. "count" : 151
  8308. },
  8309. {
  8310. "bufferView" : 426,
  8311. "componentType" : 5126,
  8312. "type" : "VEC3",
  8313. "count" : 151
  8314. },
  8315. {
  8316. "bufferView" : 427,
  8317. "componentType" : 5126,
  8318. "type" : "VEC4",
  8319. "count" : 151
  8320. },
  8321. {
  8322. "bufferView" : 428,
  8323. "componentType" : 5126,
  8324. "type" : "VEC3",
  8325. "count" : 151
  8326. },
  8327. {
  8328. "bufferView" : 429,
  8329. "componentType" : 5126,
  8330. "type" : "VEC3",
  8331. "count" : 151
  8332. },
  8333. {
  8334. "bufferView" : 430,
  8335. "componentType" : 5126,
  8336. "type" : "VEC4",
  8337. "count" : 151
  8338. },
  8339. {
  8340. "bufferView" : 431,
  8341. "componentType" : 5126,
  8342. "type" : "VEC3",
  8343. "count" : 151
  8344. },
  8345. {
  8346. "bufferView" : 432,
  8347. "componentType" : 5126,
  8348. "type" : "VEC3",
  8349. "count" : 151
  8350. },
  8351. {
  8352. "bufferView" : 433,
  8353. "componentType" : 5126,
  8354. "type" : "VEC4",
  8355. "count" : 151
  8356. },
  8357. {
  8358. "bufferView" : 434,
  8359. "componentType" : 5126,
  8360. "type" : "VEC3",
  8361. "count" : 151
  8362. },
  8363. {
  8364. "bufferView" : 435,
  8365. "componentType" : 5126,
  8366. "type" : "VEC3",
  8367. "count" : 151
  8368. },
  8369. {
  8370. "bufferView" : 436,
  8371. "componentType" : 5126,
  8372. "type" : "VEC4",
  8373. "count" : 151
  8374. },
  8375. {
  8376. "bufferView" : 437,
  8377. "componentType" : 5126,
  8378. "type" : "VEC3",
  8379. "count" : 151
  8380. }
  8381. ],
  8382. "bufferViews" : [
  8383. {
  8384. "buffer" : 0,
  8385. "byteOffset" : 0,
  8386. "byteLength" : 14328
  8387. },
  8388. {
  8389. "buffer" : 0,
  8390. "byteOffset" : 14328,
  8391. "byteLength" : 9552
  8392. },
  8393. {
  8394. "buffer" : 0,
  8395. "byteOffset" : 23880,
  8396. "byteLength" : 19104
  8397. },
  8398. {
  8399. "buffer" : 0,
  8400. "byteOffset" : 42984,
  8401. "byteLength" : 19104
  8402. },
  8403. {
  8404. "buffer" : 0,
  8405. "byteOffset" : 62088,
  8406. "byteLength" : 14328
  8407. },
  8408. {
  8409. "buffer" : 0,
  8410. "byteOffset" : 76416,
  8411. "byteLength" : 3492
  8412. },
  8413. {
  8414. "buffer" : 0,
  8415. "byteOffset" : 79908,
  8416. "byteLength" : 18984
  8417. },
  8418. {
  8419. "buffer" : 0,
  8420. "byteOffset" : 98892,
  8421. "byteLength" : 12656
  8422. },
  8423. {
  8424. "buffer" : 0,
  8425. "byteOffset" : 111548,
  8426. "byteLength" : 25312
  8427. },
  8428. {
  8429. "buffer" : 0,
  8430. "byteOffset" : 136860,
  8431. "byteLength" : 25312
  8432. },
  8433. {
  8434. "buffer" : 0,
  8435. "byteOffset" : 162172,
  8436. "byteLength" : 18984
  8437. },
  8438. {
  8439. "buffer" : 0,
  8440. "byteOffset" : 181156,
  8441. "byteLength" : 4632
  8442. },
  8443. {
  8444. "buffer" : 0,
  8445. "byteOffset" : 185788,
  8446. "byteLength" : 1792
  8447. },
  8448. {
  8449. "buffer" : 0,
  8450. "byteOffset" : 187580,
  8451. "byteLength" : 148
  8452. },
  8453. {
  8454. "buffer" : 0,
  8455. "byteOffset" : 187728,
  8456. "byteLength" : 444
  8457. },
  8458. {
  8459. "buffer" : 0,
  8460. "byteOffset" : 188172,
  8461. "byteLength" : 592
  8462. },
  8463. {
  8464. "buffer" : 0,
  8465. "byteOffset" : 188764,
  8466. "byteLength" : 444
  8467. },
  8468. {
  8469. "buffer" : 0,
  8470. "byteOffset" : 189208,
  8471. "byteLength" : 444
  8472. },
  8473. {
  8474. "buffer" : 0,
  8475. "byteOffset" : 189652,
  8476. "byteLength" : 592
  8477. },
  8478. {
  8479. "buffer" : 0,
  8480. "byteOffset" : 190244,
  8481. "byteLength" : 444
  8482. },
  8483. {
  8484. "buffer" : 0,
  8485. "byteOffset" : 190688,
  8486. "byteLength" : 444
  8487. },
  8488. {
  8489. "buffer" : 0,
  8490. "byteOffset" : 191132,
  8491. "byteLength" : 592
  8492. },
  8493. {
  8494. "buffer" : 0,
  8495. "byteOffset" : 191724,
  8496. "byteLength" : 444
  8497. },
  8498. {
  8499. "buffer" : 0,
  8500. "byteOffset" : 192168,
  8501. "byteLength" : 444
  8502. },
  8503. {
  8504. "buffer" : 0,
  8505. "byteOffset" : 192612,
  8506. "byteLength" : 592
  8507. },
  8508. {
  8509. "buffer" : 0,
  8510. "byteOffset" : 193204,
  8511. "byteLength" : 444
  8512. },
  8513. {
  8514. "buffer" : 0,
  8515. "byteOffset" : 193648,
  8516. "byteLength" : 444
  8517. },
  8518. {
  8519. "buffer" : 0,
  8520. "byteOffset" : 194092,
  8521. "byteLength" : 592
  8522. },
  8523. {
  8524. "buffer" : 0,
  8525. "byteOffset" : 194684,
  8526. "byteLength" : 444
  8527. },
  8528. {
  8529. "buffer" : 0,
  8530. "byteOffset" : 195128,
  8531. "byteLength" : 444
  8532. },
  8533. {
  8534. "buffer" : 0,
  8535. "byteOffset" : 195572,
  8536. "byteLength" : 592
  8537. },
  8538. {
  8539. "buffer" : 0,
  8540. "byteOffset" : 196164,
  8541. "byteLength" : 444
  8542. },
  8543. {
  8544. "buffer" : 0,
  8545. "byteOffset" : 196608,
  8546. "byteLength" : 444
  8547. },
  8548. {
  8549. "buffer" : 0,
  8550. "byteOffset" : 197052,
  8551. "byteLength" : 592
  8552. },
  8553. {
  8554. "buffer" : 0,
  8555. "byteOffset" : 197644,
  8556. "byteLength" : 444
  8557. },
  8558. {
  8559. "buffer" : 0,
  8560. "byteOffset" : 198088,
  8561. "byteLength" : 444
  8562. },
  8563. {
  8564. "buffer" : 0,
  8565. "byteOffset" : 198532,
  8566. "byteLength" : 592
  8567. },
  8568. {
  8569. "buffer" : 0,
  8570. "byteOffset" : 199124,
  8571. "byteLength" : 444
  8572. },
  8573. {
  8574. "buffer" : 0,
  8575. "byteOffset" : 199568,
  8576. "byteLength" : 444
  8577. },
  8578. {
  8579. "buffer" : 0,
  8580. "byteOffset" : 200012,
  8581. "byteLength" : 592
  8582. },
  8583. {
  8584. "buffer" : 0,
  8585. "byteOffset" : 200604,
  8586. "byteLength" : 444
  8587. },
  8588. {
  8589. "buffer" : 0,
  8590. "byteOffset" : 201048,
  8591. "byteLength" : 444
  8592. },
  8593. {
  8594. "buffer" : 0,
  8595. "byteOffset" : 201492,
  8596. "byteLength" : 592
  8597. },
  8598. {
  8599. "buffer" : 0,
  8600. "byteOffset" : 202084,
  8601. "byteLength" : 444
  8602. },
  8603. {
  8604. "buffer" : 0,
  8605. "byteOffset" : 202528,
  8606. "byteLength" : 444
  8607. },
  8608. {
  8609. "buffer" : 0,
  8610. "byteOffset" : 202972,
  8611. "byteLength" : 592
  8612. },
  8613. {
  8614. "buffer" : 0,
  8615. "byteOffset" : 203564,
  8616. "byteLength" : 444
  8617. },
  8618. {
  8619. "buffer" : 0,
  8620. "byteOffset" : 204008,
  8621. "byteLength" : 444
  8622. },
  8623. {
  8624. "buffer" : 0,
  8625. "byteOffset" : 204452,
  8626. "byteLength" : 592
  8627. },
  8628. {
  8629. "buffer" : 0,
  8630. "byteOffset" : 205044,
  8631. "byteLength" : 444
  8632. },
  8633. {
  8634. "buffer" : 0,
  8635. "byteOffset" : 205488,
  8636. "byteLength" : 444
  8637. },
  8638. {
  8639. "buffer" : 0,
  8640. "byteOffset" : 205932,
  8641. "byteLength" : 592
  8642. },
  8643. {
  8644. "buffer" : 0,
  8645. "byteOffset" : 206524,
  8646. "byteLength" : 444
  8647. },
  8648. {
  8649. "buffer" : 0,
  8650. "byteOffset" : 206968,
  8651. "byteLength" : 444
  8652. },
  8653. {
  8654. "buffer" : 0,
  8655. "byteOffset" : 207412,
  8656. "byteLength" : 592
  8657. },
  8658. {
  8659. "buffer" : 0,
  8660. "byteOffset" : 208004,
  8661. "byteLength" : 444
  8662. },
  8663. {
  8664. "buffer" : 0,
  8665. "byteOffset" : 208448,
  8666. "byteLength" : 444
  8667. },
  8668. {
  8669. "buffer" : 0,
  8670. "byteOffset" : 208892,
  8671. "byteLength" : 592
  8672. },
  8673. {
  8674. "buffer" : 0,
  8675. "byteOffset" : 209484,
  8676. "byteLength" : 444
  8677. },
  8678. {
  8679. "buffer" : 0,
  8680. "byteOffset" : 209928,
  8681. "byteLength" : 444
  8682. },
  8683. {
  8684. "buffer" : 0,
  8685. "byteOffset" : 210372,
  8686. "byteLength" : 592
  8687. },
  8688. {
  8689. "buffer" : 0,
  8690. "byteOffset" : 210964,
  8691. "byteLength" : 444
  8692. },
  8693. {
  8694. "buffer" : 0,
  8695. "byteOffset" : 211408,
  8696. "byteLength" : 444
  8697. },
  8698. {
  8699. "buffer" : 0,
  8700. "byteOffset" : 211852,
  8701. "byteLength" : 592
  8702. },
  8703. {
  8704. "buffer" : 0,
  8705. "byteOffset" : 212444,
  8706. "byteLength" : 444
  8707. },
  8708. {
  8709. "buffer" : 0,
  8710. "byteOffset" : 212888,
  8711. "byteLength" : 444
  8712. },
  8713. {
  8714. "buffer" : 0,
  8715. "byteOffset" : 213332,
  8716. "byteLength" : 592
  8717. },
  8718. {
  8719. "buffer" : 0,
  8720. "byteOffset" : 213924,
  8721. "byteLength" : 444
  8722. },
  8723. {
  8724. "buffer" : 0,
  8725. "byteOffset" : 214368,
  8726. "byteLength" : 444
  8727. },
  8728. {
  8729. "buffer" : 0,
  8730. "byteOffset" : 214812,
  8731. "byteLength" : 592
  8732. },
  8733. {
  8734. "buffer" : 0,
  8735. "byteOffset" : 215404,
  8736. "byteLength" : 444
  8737. },
  8738. {
  8739. "buffer" : 0,
  8740. "byteOffset" : 215848,
  8741. "byteLength" : 444
  8742. },
  8743. {
  8744. "buffer" : 0,
  8745. "byteOffset" : 216292,
  8746. "byteLength" : 592
  8747. },
  8748. {
  8749. "buffer" : 0,
  8750. "byteOffset" : 216884,
  8751. "byteLength" : 444
  8752. },
  8753. {
  8754. "buffer" : 0,
  8755. "byteOffset" : 217328,
  8756. "byteLength" : 444
  8757. },
  8758. {
  8759. "buffer" : 0,
  8760. "byteOffset" : 217772,
  8761. "byteLength" : 592
  8762. },
  8763. {
  8764. "buffer" : 0,
  8765. "byteOffset" : 218364,
  8766. "byteLength" : 444
  8767. },
  8768. {
  8769. "buffer" : 0,
  8770. "byteOffset" : 218808,
  8771. "byteLength" : 444
  8772. },
  8773. {
  8774. "buffer" : 0,
  8775. "byteOffset" : 219252,
  8776. "byteLength" : 592
  8777. },
  8778. {
  8779. "buffer" : 0,
  8780. "byteOffset" : 219844,
  8781. "byteLength" : 444
  8782. },
  8783. {
  8784. "buffer" : 0,
  8785. "byteOffset" : 220288,
  8786. "byteLength" : 444
  8787. },
  8788. {
  8789. "buffer" : 0,
  8790. "byteOffset" : 220732,
  8791. "byteLength" : 592
  8792. },
  8793. {
  8794. "buffer" : 0,
  8795. "byteOffset" : 221324,
  8796. "byteLength" : 444
  8797. },
  8798. {
  8799. "buffer" : 0,
  8800. "byteOffset" : 221768,
  8801. "byteLength" : 444
  8802. },
  8803. {
  8804. "buffer" : 0,
  8805. "byteOffset" : 222212,
  8806. "byteLength" : 592
  8807. },
  8808. {
  8809. "buffer" : 0,
  8810. "byteOffset" : 222804,
  8811. "byteLength" : 444
  8812. },
  8813. {
  8814. "buffer" : 0,
  8815. "byteOffset" : 223248,
  8816. "byteLength" : 444
  8817. },
  8818. {
  8819. "buffer" : 0,
  8820. "byteOffset" : 223692,
  8821. "byteLength" : 592
  8822. },
  8823. {
  8824. "buffer" : 0,
  8825. "byteOffset" : 224284,
  8826. "byteLength" : 444
  8827. },
  8828. {
  8829. "buffer" : 0,
  8830. "byteOffset" : 224728,
  8831. "byteLength" : 444
  8832. },
  8833. {
  8834. "buffer" : 0,
  8835. "byteOffset" : 225172,
  8836. "byteLength" : 592
  8837. },
  8838. {
  8839. "buffer" : 0,
  8840. "byteOffset" : 225764,
  8841. "byteLength" : 444
  8842. },
  8843. {
  8844. "buffer" : 0,
  8845. "byteOffset" : 226208,
  8846. "byteLength" : 444
  8847. },
  8848. {
  8849. "buffer" : 0,
  8850. "byteOffset" : 226652,
  8851. "byteLength" : 592
  8852. },
  8853. {
  8854. "buffer" : 0,
  8855. "byteOffset" : 227244,
  8856. "byteLength" : 444
  8857. },
  8858. {
  8859. "buffer" : 0,
  8860. "byteOffset" : 227688,
  8861. "byteLength" : 444
  8862. },
  8863. {
  8864. "buffer" : 0,
  8865. "byteOffset" : 228132,
  8866. "byteLength" : 592
  8867. },
  8868. {
  8869. "buffer" : 0,
  8870. "byteOffset" : 228724,
  8871. "byteLength" : 444
  8872. },
  8873. {
  8874. "buffer" : 0,
  8875. "byteOffset" : 229168,
  8876. "byteLength" : 260
  8877. },
  8878. {
  8879. "buffer" : 0,
  8880. "byteOffset" : 229428,
  8881. "byteLength" : 780
  8882. },
  8883. {
  8884. "buffer" : 0,
  8885. "byteOffset" : 230208,
  8886. "byteLength" : 1040
  8887. },
  8888. {
  8889. "buffer" : 0,
  8890. "byteOffset" : 231248,
  8891. "byteLength" : 780
  8892. },
  8893. {
  8894. "buffer" : 0,
  8895. "byteOffset" : 232028,
  8896. "byteLength" : 780
  8897. },
  8898. {
  8899. "buffer" : 0,
  8900. "byteOffset" : 232808,
  8901. "byteLength" : 1040
  8902. },
  8903. {
  8904. "buffer" : 0,
  8905. "byteOffset" : 233848,
  8906. "byteLength" : 780
  8907. },
  8908. {
  8909. "buffer" : 0,
  8910. "byteOffset" : 234628,
  8911. "byteLength" : 780
  8912. },
  8913. {
  8914. "buffer" : 0,
  8915. "byteOffset" : 235408,
  8916. "byteLength" : 1040
  8917. },
  8918. {
  8919. "buffer" : 0,
  8920. "byteOffset" : 236448,
  8921. "byteLength" : 780
  8922. },
  8923. {
  8924. "buffer" : 0,
  8925. "byteOffset" : 237228,
  8926. "byteLength" : 780
  8927. },
  8928. {
  8929. "buffer" : 0,
  8930. "byteOffset" : 238008,
  8931. "byteLength" : 1040
  8932. },
  8933. {
  8934. "buffer" : 0,
  8935. "byteOffset" : 239048,
  8936. "byteLength" : 780
  8937. },
  8938. {
  8939. "buffer" : 0,
  8940. "byteOffset" : 239828,
  8941. "byteLength" : 780
  8942. },
  8943. {
  8944. "buffer" : 0,
  8945. "byteOffset" : 240608,
  8946. "byteLength" : 1040
  8947. },
  8948. {
  8949. "buffer" : 0,
  8950. "byteOffset" : 241648,
  8951. "byteLength" : 780
  8952. },
  8953. {
  8954. "buffer" : 0,
  8955. "byteOffset" : 242428,
  8956. "byteLength" : 780
  8957. },
  8958. {
  8959. "buffer" : 0,
  8960. "byteOffset" : 243208,
  8961. "byteLength" : 1040
  8962. },
  8963. {
  8964. "buffer" : 0,
  8965. "byteOffset" : 244248,
  8966. "byteLength" : 780
  8967. },
  8968. {
  8969. "buffer" : 0,
  8970. "byteOffset" : 245028,
  8971. "byteLength" : 780
  8972. },
  8973. {
  8974. "buffer" : 0,
  8975. "byteOffset" : 245808,
  8976. "byteLength" : 1040
  8977. },
  8978. {
  8979. "buffer" : 0,
  8980. "byteOffset" : 246848,
  8981. "byteLength" : 780
  8982. },
  8983. {
  8984. "buffer" : 0,
  8985. "byteOffset" : 247628,
  8986. "byteLength" : 780
  8987. },
  8988. {
  8989. "buffer" : 0,
  8990. "byteOffset" : 248408,
  8991. "byteLength" : 1040
  8992. },
  8993. {
  8994. "buffer" : 0,
  8995. "byteOffset" : 249448,
  8996. "byteLength" : 780
  8997. },
  8998. {
  8999. "buffer" : 0,
  9000. "byteOffset" : 250228,
  9001. "byteLength" : 780
  9002. },
  9003. {
  9004. "buffer" : 0,
  9005. "byteOffset" : 251008,
  9006. "byteLength" : 1040
  9007. },
  9008. {
  9009. "buffer" : 0,
  9010. "byteOffset" : 252048,
  9011. "byteLength" : 780
  9012. },
  9013. {
  9014. "buffer" : 0,
  9015. "byteOffset" : 252828,
  9016. "byteLength" : 780
  9017. },
  9018. {
  9019. "buffer" : 0,
  9020. "byteOffset" : 253608,
  9021. "byteLength" : 1040
  9022. },
  9023. {
  9024. "buffer" : 0,
  9025. "byteOffset" : 254648,
  9026. "byteLength" : 780
  9027. },
  9028. {
  9029. "buffer" : 0,
  9030. "byteOffset" : 255428,
  9031. "byteLength" : 780
  9032. },
  9033. {
  9034. "buffer" : 0,
  9035. "byteOffset" : 256208,
  9036. "byteLength" : 1040
  9037. },
  9038. {
  9039. "buffer" : 0,
  9040. "byteOffset" : 257248,
  9041. "byteLength" : 780
  9042. },
  9043. {
  9044. "buffer" : 0,
  9045. "byteOffset" : 258028,
  9046. "byteLength" : 780
  9047. },
  9048. {
  9049. "buffer" : 0,
  9050. "byteOffset" : 258808,
  9051. "byteLength" : 1040
  9052. },
  9053. {
  9054. "buffer" : 0,
  9055. "byteOffset" : 259848,
  9056. "byteLength" : 780
  9057. },
  9058. {
  9059. "buffer" : 0,
  9060. "byteOffset" : 260628,
  9061. "byteLength" : 780
  9062. },
  9063. {
  9064. "buffer" : 0,
  9065. "byteOffset" : 261408,
  9066. "byteLength" : 1040
  9067. },
  9068. {
  9069. "buffer" : 0,
  9070. "byteOffset" : 262448,
  9071. "byteLength" : 780
  9072. },
  9073. {
  9074. "buffer" : 0,
  9075. "byteOffset" : 263228,
  9076. "byteLength" : 780
  9077. },
  9078. {
  9079. "buffer" : 0,
  9080. "byteOffset" : 264008,
  9081. "byteLength" : 1040
  9082. },
  9083. {
  9084. "buffer" : 0,
  9085. "byteOffset" : 265048,
  9086. "byteLength" : 780
  9087. },
  9088. {
  9089. "buffer" : 0,
  9090. "byteOffset" : 265828,
  9091. "byteLength" : 780
  9092. },
  9093. {
  9094. "buffer" : 0,
  9095. "byteOffset" : 266608,
  9096. "byteLength" : 1040
  9097. },
  9098. {
  9099. "buffer" : 0,
  9100. "byteOffset" : 267648,
  9101. "byteLength" : 780
  9102. },
  9103. {
  9104. "buffer" : 0,
  9105. "byteOffset" : 268428,
  9106. "byteLength" : 780
  9107. },
  9108. {
  9109. "buffer" : 0,
  9110. "byteOffset" : 269208,
  9111. "byteLength" : 1040
  9112. },
  9113. {
  9114. "buffer" : 0,
  9115. "byteOffset" : 270248,
  9116. "byteLength" : 780
  9117. },
  9118. {
  9119. "buffer" : 0,
  9120. "byteOffset" : 271028,
  9121. "byteLength" : 780
  9122. },
  9123. {
  9124. "buffer" : 0,
  9125. "byteOffset" : 271808,
  9126. "byteLength" : 1040
  9127. },
  9128. {
  9129. "buffer" : 0,
  9130. "byteOffset" : 272848,
  9131. "byteLength" : 780
  9132. },
  9133. {
  9134. "buffer" : 0,
  9135. "byteOffset" : 273628,
  9136. "byteLength" : 780
  9137. },
  9138. {
  9139. "buffer" : 0,
  9140. "byteOffset" : 274408,
  9141. "byteLength" : 1040
  9142. },
  9143. {
  9144. "buffer" : 0,
  9145. "byteOffset" : 275448,
  9146. "byteLength" : 780
  9147. },
  9148. {
  9149. "buffer" : 0,
  9150. "byteOffset" : 276228,
  9151. "byteLength" : 780
  9152. },
  9153. {
  9154. "buffer" : 0,
  9155. "byteOffset" : 277008,
  9156. "byteLength" : 1040
  9157. },
  9158. {
  9159. "buffer" : 0,
  9160. "byteOffset" : 278048,
  9161. "byteLength" : 780
  9162. },
  9163. {
  9164. "buffer" : 0,
  9165. "byteOffset" : 278828,
  9166. "byteLength" : 780
  9167. },
  9168. {
  9169. "buffer" : 0,
  9170. "byteOffset" : 279608,
  9171. "byteLength" : 1040
  9172. },
  9173. {
  9174. "buffer" : 0,
  9175. "byteOffset" : 280648,
  9176. "byteLength" : 780
  9177. },
  9178. {
  9179. "buffer" : 0,
  9180. "byteOffset" : 281428,
  9181. "byteLength" : 780
  9182. },
  9183. {
  9184. "buffer" : 0,
  9185. "byteOffset" : 282208,
  9186. "byteLength" : 1040
  9187. },
  9188. {
  9189. "buffer" : 0,
  9190. "byteOffset" : 283248,
  9191. "byteLength" : 780
  9192. },
  9193. {
  9194. "buffer" : 0,
  9195. "byteOffset" : 284028,
  9196. "byteLength" : 780
  9197. },
  9198. {
  9199. "buffer" : 0,
  9200. "byteOffset" : 284808,
  9201. "byteLength" : 1040
  9202. },
  9203. {
  9204. "buffer" : 0,
  9205. "byteOffset" : 285848,
  9206. "byteLength" : 780
  9207. },
  9208. {
  9209. "buffer" : 0,
  9210. "byteOffset" : 286628,
  9211. "byteLength" : 780
  9212. },
  9213. {
  9214. "buffer" : 0,
  9215. "byteOffset" : 287408,
  9216. "byteLength" : 1040
  9217. },
  9218. {
  9219. "buffer" : 0,
  9220. "byteOffset" : 288448,
  9221. "byteLength" : 780
  9222. },
  9223. {
  9224. "buffer" : 0,
  9225. "byteOffset" : 289228,
  9226. "byteLength" : 780
  9227. },
  9228. {
  9229. "buffer" : 0,
  9230. "byteOffset" : 290008,
  9231. "byteLength" : 1040
  9232. },
  9233. {
  9234. "buffer" : 0,
  9235. "byteOffset" : 291048,
  9236. "byteLength" : 780
  9237. },
  9238. {
  9239. "buffer" : 0,
  9240. "byteOffset" : 291828,
  9241. "byteLength" : 780
  9242. },
  9243. {
  9244. "buffer" : 0,
  9245. "byteOffset" : 292608,
  9246. "byteLength" : 1040
  9247. },
  9248. {
  9249. "buffer" : 0,
  9250. "byteOffset" : 293648,
  9251. "byteLength" : 780
  9252. },
  9253. {
  9254. "buffer" : 0,
  9255. "byteOffset" : 294428,
  9256. "byteLength" : 780
  9257. },
  9258. {
  9259. "buffer" : 0,
  9260. "byteOffset" : 295208,
  9261. "byteLength" : 1040
  9262. },
  9263. {
  9264. "buffer" : 0,
  9265. "byteOffset" : 296248,
  9266. "byteLength" : 780
  9267. },
  9268. {
  9269. "buffer" : 0,
  9270. "byteOffset" : 297028,
  9271. "byteLength" : 780
  9272. },
  9273. {
  9274. "buffer" : 0,
  9275. "byteOffset" : 297808,
  9276. "byteLength" : 1040
  9277. },
  9278. {
  9279. "buffer" : 0,
  9280. "byteOffset" : 298848,
  9281. "byteLength" : 780
  9282. },
  9283. {
  9284. "buffer" : 0,
  9285. "byteOffset" : 299628,
  9286. "byteLength" : 780
  9287. },
  9288. {
  9289. "buffer" : 0,
  9290. "byteOffset" : 300408,
  9291. "byteLength" : 1040
  9292. },
  9293. {
  9294. "buffer" : 0,
  9295. "byteOffset" : 301448,
  9296. "byteLength" : 780
  9297. },
  9298. {
  9299. "buffer" : 0,
  9300. "byteOffset" : 302228,
  9301. "byteLength" : 108
  9302. },
  9303. {
  9304. "buffer" : 0,
  9305. "byteOffset" : 302336,
  9306. "byteLength" : 324
  9307. },
  9308. {
  9309. "buffer" : 0,
  9310. "byteOffset" : 302660,
  9311. "byteLength" : 432
  9312. },
  9313. {
  9314. "buffer" : 0,
  9315. "byteOffset" : 303092,
  9316. "byteLength" : 324
  9317. },
  9318. {
  9319. "buffer" : 0,
  9320. "byteOffset" : 303416,
  9321. "byteLength" : 324
  9322. },
  9323. {
  9324. "buffer" : 0,
  9325. "byteOffset" : 303740,
  9326. "byteLength" : 432
  9327. },
  9328. {
  9329. "buffer" : 0,
  9330. "byteOffset" : 304172,
  9331. "byteLength" : 324
  9332. },
  9333. {
  9334. "buffer" : 0,
  9335. "byteOffset" : 304496,
  9336. "byteLength" : 324
  9337. },
  9338. {
  9339. "buffer" : 0,
  9340. "byteOffset" : 304820,
  9341. "byteLength" : 432
  9342. },
  9343. {
  9344. "buffer" : 0,
  9345. "byteOffset" : 305252,
  9346. "byteLength" : 324
  9347. },
  9348. {
  9349. "buffer" : 0,
  9350. "byteOffset" : 305576,
  9351. "byteLength" : 324
  9352. },
  9353. {
  9354. "buffer" : 0,
  9355. "byteOffset" : 305900,
  9356. "byteLength" : 432
  9357. },
  9358. {
  9359. "buffer" : 0,
  9360. "byteOffset" : 306332,
  9361. "byteLength" : 324
  9362. },
  9363. {
  9364. "buffer" : 0,
  9365. "byteOffset" : 306656,
  9366. "byteLength" : 324
  9367. },
  9368. {
  9369. "buffer" : 0,
  9370. "byteOffset" : 306980,
  9371. "byteLength" : 432
  9372. },
  9373. {
  9374. "buffer" : 0,
  9375. "byteOffset" : 307412,
  9376. "byteLength" : 324
  9377. },
  9378. {
  9379. "buffer" : 0,
  9380. "byteOffset" : 307736,
  9381. "byteLength" : 324
  9382. },
  9383. {
  9384. "buffer" : 0,
  9385. "byteOffset" : 308060,
  9386. "byteLength" : 432
  9387. },
  9388. {
  9389. "buffer" : 0,
  9390. "byteOffset" : 308492,
  9391. "byteLength" : 324
  9392. },
  9393. {
  9394. "buffer" : 0,
  9395. "byteOffset" : 308816,
  9396. "byteLength" : 324
  9397. },
  9398. {
  9399. "buffer" : 0,
  9400. "byteOffset" : 309140,
  9401. "byteLength" : 432
  9402. },
  9403. {
  9404. "buffer" : 0,
  9405. "byteOffset" : 309572,
  9406. "byteLength" : 324
  9407. },
  9408. {
  9409. "buffer" : 0,
  9410. "byteOffset" : 309896,
  9411. "byteLength" : 324
  9412. },
  9413. {
  9414. "buffer" : 0,
  9415. "byteOffset" : 310220,
  9416. "byteLength" : 432
  9417. },
  9418. {
  9419. "buffer" : 0,
  9420. "byteOffset" : 310652,
  9421. "byteLength" : 324
  9422. },
  9423. {
  9424. "buffer" : 0,
  9425. "byteOffset" : 310976,
  9426. "byteLength" : 324
  9427. },
  9428. {
  9429. "buffer" : 0,
  9430. "byteOffset" : 311300,
  9431. "byteLength" : 432
  9432. },
  9433. {
  9434. "buffer" : 0,
  9435. "byteOffset" : 311732,
  9436. "byteLength" : 324
  9437. },
  9438. {
  9439. "buffer" : 0,
  9440. "byteOffset" : 312056,
  9441. "byteLength" : 324
  9442. },
  9443. {
  9444. "buffer" : 0,
  9445. "byteOffset" : 312380,
  9446. "byteLength" : 432
  9447. },
  9448. {
  9449. "buffer" : 0,
  9450. "byteOffset" : 312812,
  9451. "byteLength" : 324
  9452. },
  9453. {
  9454. "buffer" : 0,
  9455. "byteOffset" : 313136,
  9456. "byteLength" : 324
  9457. },
  9458. {
  9459. "buffer" : 0,
  9460. "byteOffset" : 313460,
  9461. "byteLength" : 432
  9462. },
  9463. {
  9464. "buffer" : 0,
  9465. "byteOffset" : 313892,
  9466. "byteLength" : 324
  9467. },
  9468. {
  9469. "buffer" : 0,
  9470. "byteOffset" : 314216,
  9471. "byteLength" : 324
  9472. },
  9473. {
  9474. "buffer" : 0,
  9475. "byteOffset" : 314540,
  9476. "byteLength" : 432
  9477. },
  9478. {
  9479. "buffer" : 0,
  9480. "byteOffset" : 314972,
  9481. "byteLength" : 324
  9482. },
  9483. {
  9484. "buffer" : 0,
  9485. "byteOffset" : 315296,
  9486. "byteLength" : 324
  9487. },
  9488. {
  9489. "buffer" : 0,
  9490. "byteOffset" : 315620,
  9491. "byteLength" : 432
  9492. },
  9493. {
  9494. "buffer" : 0,
  9495. "byteOffset" : 316052,
  9496. "byteLength" : 324
  9497. },
  9498. {
  9499. "buffer" : 0,
  9500. "byteOffset" : 316376,
  9501. "byteLength" : 324
  9502. },
  9503. {
  9504. "buffer" : 0,
  9505. "byteOffset" : 316700,
  9506. "byteLength" : 432
  9507. },
  9508. {
  9509. "buffer" : 0,
  9510. "byteOffset" : 317132,
  9511. "byteLength" : 324
  9512. },
  9513. {
  9514. "buffer" : 0,
  9515. "byteOffset" : 317456,
  9516. "byteLength" : 324
  9517. },
  9518. {
  9519. "buffer" : 0,
  9520. "byteOffset" : 317780,
  9521. "byteLength" : 432
  9522. },
  9523. {
  9524. "buffer" : 0,
  9525. "byteOffset" : 318212,
  9526. "byteLength" : 324
  9527. },
  9528. {
  9529. "buffer" : 0,
  9530. "byteOffset" : 318536,
  9531. "byteLength" : 324
  9532. },
  9533. {
  9534. "buffer" : 0,
  9535. "byteOffset" : 318860,
  9536. "byteLength" : 432
  9537. },
  9538. {
  9539. "buffer" : 0,
  9540. "byteOffset" : 319292,
  9541. "byteLength" : 324
  9542. },
  9543. {
  9544. "buffer" : 0,
  9545. "byteOffset" : 319616,
  9546. "byteLength" : 324
  9547. },
  9548. {
  9549. "buffer" : 0,
  9550. "byteOffset" : 319940,
  9551. "byteLength" : 432
  9552. },
  9553. {
  9554. "buffer" : 0,
  9555. "byteOffset" : 320372,
  9556. "byteLength" : 324
  9557. },
  9558. {
  9559. "buffer" : 0,
  9560. "byteOffset" : 320696,
  9561. "byteLength" : 324
  9562. },
  9563. {
  9564. "buffer" : 0,
  9565. "byteOffset" : 321020,
  9566. "byteLength" : 432
  9567. },
  9568. {
  9569. "buffer" : 0,
  9570. "byteOffset" : 321452,
  9571. "byteLength" : 324
  9572. },
  9573. {
  9574. "buffer" : 0,
  9575. "byteOffset" : 321776,
  9576. "byteLength" : 324
  9577. },
  9578. {
  9579. "buffer" : 0,
  9580. "byteOffset" : 322100,
  9581. "byteLength" : 432
  9582. },
  9583. {
  9584. "buffer" : 0,
  9585. "byteOffset" : 322532,
  9586. "byteLength" : 324
  9587. },
  9588. {
  9589. "buffer" : 0,
  9590. "byteOffset" : 322856,
  9591. "byteLength" : 324
  9592. },
  9593. {
  9594. "buffer" : 0,
  9595. "byteOffset" : 323180,
  9596. "byteLength" : 432
  9597. },
  9598. {
  9599. "buffer" : 0,
  9600. "byteOffset" : 323612,
  9601. "byteLength" : 324
  9602. },
  9603. {
  9604. "buffer" : 0,
  9605. "byteOffset" : 323936,
  9606. "byteLength" : 324
  9607. },
  9608. {
  9609. "buffer" : 0,
  9610. "byteOffset" : 324260,
  9611. "byteLength" : 432
  9612. },
  9613. {
  9614. "buffer" : 0,
  9615. "byteOffset" : 324692,
  9616. "byteLength" : 324
  9617. },
  9618. {
  9619. "buffer" : 0,
  9620. "byteOffset" : 325016,
  9621. "byteLength" : 324
  9622. },
  9623. {
  9624. "buffer" : 0,
  9625. "byteOffset" : 325340,
  9626. "byteLength" : 432
  9627. },
  9628. {
  9629. "buffer" : 0,
  9630. "byteOffset" : 325772,
  9631. "byteLength" : 324
  9632. },
  9633. {
  9634. "buffer" : 0,
  9635. "byteOffset" : 326096,
  9636. "byteLength" : 324
  9637. },
  9638. {
  9639. "buffer" : 0,
  9640. "byteOffset" : 326420,
  9641. "byteLength" : 432
  9642. },
  9643. {
  9644. "buffer" : 0,
  9645. "byteOffset" : 326852,
  9646. "byteLength" : 324
  9647. },
  9648. {
  9649. "buffer" : 0,
  9650. "byteOffset" : 327176,
  9651. "byteLength" : 324
  9652. },
  9653. {
  9654. "buffer" : 0,
  9655. "byteOffset" : 327500,
  9656. "byteLength" : 432
  9657. },
  9658. {
  9659. "buffer" : 0,
  9660. "byteOffset" : 327932,
  9661. "byteLength" : 324
  9662. },
  9663. {
  9664. "buffer" : 0,
  9665. "byteOffset" : 328256,
  9666. "byteLength" : 324
  9667. },
  9668. {
  9669. "buffer" : 0,
  9670. "byteOffset" : 328580,
  9671. "byteLength" : 432
  9672. },
  9673. {
  9674. "buffer" : 0,
  9675. "byteOffset" : 329012,
  9676. "byteLength" : 324
  9677. },
  9678. {
  9679. "buffer" : 0,
  9680. "byteOffset" : 329336,
  9681. "byteLength" : 324
  9682. },
  9683. {
  9684. "buffer" : 0,
  9685. "byteOffset" : 329660,
  9686. "byteLength" : 432
  9687. },
  9688. {
  9689. "buffer" : 0,
  9690. "byteOffset" : 330092,
  9691. "byteLength" : 324
  9692. },
  9693. {
  9694. "buffer" : 0,
  9695. "byteOffset" : 330416,
  9696. "byteLength" : 324
  9697. },
  9698. {
  9699. "buffer" : 0,
  9700. "byteOffset" : 330740,
  9701. "byteLength" : 432
  9702. },
  9703. {
  9704. "buffer" : 0,
  9705. "byteOffset" : 331172,
  9706. "byteLength" : 324
  9707. },
  9708. {
  9709. "buffer" : 0,
  9710. "byteOffset" : 331496,
  9711. "byteLength" : 324
  9712. },
  9713. {
  9714. "buffer" : 0,
  9715. "byteOffset" : 331820,
  9716. "byteLength" : 432
  9717. },
  9718. {
  9719. "buffer" : 0,
  9720. "byteOffset" : 332252,
  9721. "byteLength" : 324
  9722. },
  9723. {
  9724. "buffer" : 0,
  9725. "byteOffset" : 332576,
  9726. "byteLength" : 196
  9727. },
  9728. {
  9729. "buffer" : 0,
  9730. "byteOffset" : 332772,
  9731. "byteLength" : 588
  9732. },
  9733. {
  9734. "buffer" : 0,
  9735. "byteOffset" : 333360,
  9736. "byteLength" : 784
  9737. },
  9738. {
  9739. "buffer" : 0,
  9740. "byteOffset" : 334144,
  9741. "byteLength" : 588
  9742. },
  9743. {
  9744. "buffer" : 0,
  9745. "byteOffset" : 334732,
  9746. "byteLength" : 588
  9747. },
  9748. {
  9749. "buffer" : 0,
  9750. "byteOffset" : 335320,
  9751. "byteLength" : 784
  9752. },
  9753. {
  9754. "buffer" : 0,
  9755. "byteOffset" : 336104,
  9756. "byteLength" : 588
  9757. },
  9758. {
  9759. "buffer" : 0,
  9760. "byteOffset" : 336692,
  9761. "byteLength" : 588
  9762. },
  9763. {
  9764. "buffer" : 0,
  9765. "byteOffset" : 337280,
  9766. "byteLength" : 784
  9767. },
  9768. {
  9769. "buffer" : 0,
  9770. "byteOffset" : 338064,
  9771. "byteLength" : 588
  9772. },
  9773. {
  9774. "buffer" : 0,
  9775. "byteOffset" : 338652,
  9776. "byteLength" : 588
  9777. },
  9778. {
  9779. "buffer" : 0,
  9780. "byteOffset" : 339240,
  9781. "byteLength" : 784
  9782. },
  9783. {
  9784. "buffer" : 0,
  9785. "byteOffset" : 340024,
  9786. "byteLength" : 588
  9787. },
  9788. {
  9789. "buffer" : 0,
  9790. "byteOffset" : 340612,
  9791. "byteLength" : 588
  9792. },
  9793. {
  9794. "buffer" : 0,
  9795. "byteOffset" : 341200,
  9796. "byteLength" : 784
  9797. },
  9798. {
  9799. "buffer" : 0,
  9800. "byteOffset" : 341984,
  9801. "byteLength" : 588
  9802. },
  9803. {
  9804. "buffer" : 0,
  9805. "byteOffset" : 342572,
  9806. "byteLength" : 588
  9807. },
  9808. {
  9809. "buffer" : 0,
  9810. "byteOffset" : 343160,
  9811. "byteLength" : 784
  9812. },
  9813. {
  9814. "buffer" : 0,
  9815. "byteOffset" : 343944,
  9816. "byteLength" : 588
  9817. },
  9818. {
  9819. "buffer" : 0,
  9820. "byteOffset" : 344532,
  9821. "byteLength" : 588
  9822. },
  9823. {
  9824. "buffer" : 0,
  9825. "byteOffset" : 345120,
  9826. "byteLength" : 784
  9827. },
  9828. {
  9829. "buffer" : 0,
  9830. "byteOffset" : 345904,
  9831. "byteLength" : 588
  9832. },
  9833. {
  9834. "buffer" : 0,
  9835. "byteOffset" : 346492,
  9836. "byteLength" : 588
  9837. },
  9838. {
  9839. "buffer" : 0,
  9840. "byteOffset" : 347080,
  9841. "byteLength" : 784
  9842. },
  9843. {
  9844. "buffer" : 0,
  9845. "byteOffset" : 347864,
  9846. "byteLength" : 588
  9847. },
  9848. {
  9849. "buffer" : 0,
  9850. "byteOffset" : 348452,
  9851. "byteLength" : 588
  9852. },
  9853. {
  9854. "buffer" : 0,
  9855. "byteOffset" : 349040,
  9856. "byteLength" : 784
  9857. },
  9858. {
  9859. "buffer" : 0,
  9860. "byteOffset" : 349824,
  9861. "byteLength" : 588
  9862. },
  9863. {
  9864. "buffer" : 0,
  9865. "byteOffset" : 350412,
  9866. "byteLength" : 588
  9867. },
  9868. {
  9869. "buffer" : 0,
  9870. "byteOffset" : 351000,
  9871. "byteLength" : 784
  9872. },
  9873. {
  9874. "buffer" : 0,
  9875. "byteOffset" : 351784,
  9876. "byteLength" : 588
  9877. },
  9878. {
  9879. "buffer" : 0,
  9880. "byteOffset" : 352372,
  9881. "byteLength" : 588
  9882. },
  9883. {
  9884. "buffer" : 0,
  9885. "byteOffset" : 352960,
  9886. "byteLength" : 784
  9887. },
  9888. {
  9889. "buffer" : 0,
  9890. "byteOffset" : 353744,
  9891. "byteLength" : 588
  9892. },
  9893. {
  9894. "buffer" : 0,
  9895. "byteOffset" : 354332,
  9896. "byteLength" : 588
  9897. },
  9898. {
  9899. "buffer" : 0,
  9900. "byteOffset" : 354920,
  9901. "byteLength" : 784
  9902. },
  9903. {
  9904. "buffer" : 0,
  9905. "byteOffset" : 355704,
  9906. "byteLength" : 588
  9907. },
  9908. {
  9909. "buffer" : 0,
  9910. "byteOffset" : 356292,
  9911. "byteLength" : 588
  9912. },
  9913. {
  9914. "buffer" : 0,
  9915. "byteOffset" : 356880,
  9916. "byteLength" : 784
  9917. },
  9918. {
  9919. "buffer" : 0,
  9920. "byteOffset" : 357664,
  9921. "byteLength" : 588
  9922. },
  9923. {
  9924. "buffer" : 0,
  9925. "byteOffset" : 358252,
  9926. "byteLength" : 588
  9927. },
  9928. {
  9929. "buffer" : 0,
  9930. "byteOffset" : 358840,
  9931. "byteLength" : 784
  9932. },
  9933. {
  9934. "buffer" : 0,
  9935. "byteOffset" : 359624,
  9936. "byteLength" : 588
  9937. },
  9938. {
  9939. "buffer" : 0,
  9940. "byteOffset" : 360212,
  9941. "byteLength" : 588
  9942. },
  9943. {
  9944. "buffer" : 0,
  9945. "byteOffset" : 360800,
  9946. "byteLength" : 784
  9947. },
  9948. {
  9949. "buffer" : 0,
  9950. "byteOffset" : 361584,
  9951. "byteLength" : 588
  9952. },
  9953. {
  9954. "buffer" : 0,
  9955. "byteOffset" : 362172,
  9956. "byteLength" : 588
  9957. },
  9958. {
  9959. "buffer" : 0,
  9960. "byteOffset" : 362760,
  9961. "byteLength" : 784
  9962. },
  9963. {
  9964. "buffer" : 0,
  9965. "byteOffset" : 363544,
  9966. "byteLength" : 588
  9967. },
  9968. {
  9969. "buffer" : 0,
  9970. "byteOffset" : 364132,
  9971. "byteLength" : 588
  9972. },
  9973. {
  9974. "buffer" : 0,
  9975. "byteOffset" : 364720,
  9976. "byteLength" : 784
  9977. },
  9978. {
  9979. "buffer" : 0,
  9980. "byteOffset" : 365504,
  9981. "byteLength" : 588
  9982. },
  9983. {
  9984. "buffer" : 0,
  9985. "byteOffset" : 366092,
  9986. "byteLength" : 588
  9987. },
  9988. {
  9989. "buffer" : 0,
  9990. "byteOffset" : 366680,
  9991. "byteLength" : 784
  9992. },
  9993. {
  9994. "buffer" : 0,
  9995. "byteOffset" : 367464,
  9996. "byteLength" : 588
  9997. },
  9998. {
  9999. "buffer" : 0,
  10000. "byteOffset" : 368052,
  10001. "byteLength" : 588
  10002. },
  10003. {
  10004. "buffer" : 0,
  10005. "byteOffset" : 368640,
  10006. "byteLength" : 784
  10007. },
  10008. {
  10009. "buffer" : 0,
  10010. "byteOffset" : 369424,
  10011. "byteLength" : 588
  10012. },
  10013. {
  10014. "buffer" : 0,
  10015. "byteOffset" : 370012,
  10016. "byteLength" : 588
  10017. },
  10018. {
  10019. "buffer" : 0,
  10020. "byteOffset" : 370600,
  10021. "byteLength" : 784
  10022. },
  10023. {
  10024. "buffer" : 0,
  10025. "byteOffset" : 371384,
  10026. "byteLength" : 588
  10027. },
  10028. {
  10029. "buffer" : 0,
  10030. "byteOffset" : 371972,
  10031. "byteLength" : 588
  10032. },
  10033. {
  10034. "buffer" : 0,
  10035. "byteOffset" : 372560,
  10036. "byteLength" : 784
  10037. },
  10038. {
  10039. "buffer" : 0,
  10040. "byteOffset" : 373344,
  10041. "byteLength" : 588
  10042. },
  10043. {
  10044. "buffer" : 0,
  10045. "byteOffset" : 373932,
  10046. "byteLength" : 588
  10047. },
  10048. {
  10049. "buffer" : 0,
  10050. "byteOffset" : 374520,
  10051. "byteLength" : 784
  10052. },
  10053. {
  10054. "buffer" : 0,
  10055. "byteOffset" : 375304,
  10056. "byteLength" : 588
  10057. },
  10058. {
  10059. "buffer" : 0,
  10060. "byteOffset" : 375892,
  10061. "byteLength" : 588
  10062. },
  10063. {
  10064. "buffer" : 0,
  10065. "byteOffset" : 376480,
  10066. "byteLength" : 784
  10067. },
  10068. {
  10069. "buffer" : 0,
  10070. "byteOffset" : 377264,
  10071. "byteLength" : 588
  10072. },
  10073. {
  10074. "buffer" : 0,
  10075. "byteOffset" : 377852,
  10076. "byteLength" : 588
  10077. },
  10078. {
  10079. "buffer" : 0,
  10080. "byteOffset" : 378440,
  10081. "byteLength" : 784
  10082. },
  10083. {
  10084. "buffer" : 0,
  10085. "byteOffset" : 379224,
  10086. "byteLength" : 588
  10087. },
  10088. {
  10089. "buffer" : 0,
  10090. "byteOffset" : 379812,
  10091. "byteLength" : 588
  10092. },
  10093. {
  10094. "buffer" : 0,
  10095. "byteOffset" : 380400,
  10096. "byteLength" : 784
  10097. },
  10098. {
  10099. "buffer" : 0,
  10100. "byteOffset" : 381184,
  10101. "byteLength" : 588
  10102. },
  10103. {
  10104. "buffer" : 0,
  10105. "byteOffset" : 381772,
  10106. "byteLength" : 588
  10107. },
  10108. {
  10109. "buffer" : 0,
  10110. "byteOffset" : 382360,
  10111. "byteLength" : 784
  10112. },
  10113. {
  10114. "buffer" : 0,
  10115. "byteOffset" : 383144,
  10116. "byteLength" : 588
  10117. },
  10118. {
  10119. "buffer" : 0,
  10120. "byteOffset" : 383732,
  10121. "byteLength" : 588
  10122. },
  10123. {
  10124. "buffer" : 0,
  10125. "byteOffset" : 384320,
  10126. "byteLength" : 784
  10127. },
  10128. {
  10129. "buffer" : 0,
  10130. "byteOffset" : 385104,
  10131. "byteLength" : 588
  10132. },
  10133. {
  10134. "buffer" : 0,
  10135. "byteOffset" : 385692,
  10136. "byteLength" : 588
  10137. },
  10138. {
  10139. "buffer" : 0,
  10140. "byteOffset" : 386280,
  10141. "byteLength" : 784
  10142. },
  10143. {
  10144. "buffer" : 0,
  10145. "byteOffset" : 387064,
  10146. "byteLength" : 588
  10147. },
  10148. {
  10149. "buffer" : 0,
  10150. "byteOffset" : 387652,
  10151. "byteLength" : 604
  10152. },
  10153. {
  10154. "buffer" : 0,
  10155. "byteOffset" : 388256,
  10156. "byteLength" : 1812
  10157. },
  10158. {
  10159. "buffer" : 0,
  10160. "byteOffset" : 390068,
  10161. "byteLength" : 2416
  10162. },
  10163. {
  10164. "buffer" : 0,
  10165. "byteOffset" : 392484,
  10166. "byteLength" : 1812
  10167. },
  10168. {
  10169. "buffer" : 0,
  10170. "byteOffset" : 394296,
  10171. "byteLength" : 1812
  10172. },
  10173. {
  10174. "buffer" : 0,
  10175. "byteOffset" : 396108,
  10176. "byteLength" : 2416
  10177. },
  10178. {
  10179. "buffer" : 0,
  10180. "byteOffset" : 398524,
  10181. "byteLength" : 1812
  10182. },
  10183. {
  10184. "buffer" : 0,
  10185. "byteOffset" : 400336,
  10186. "byteLength" : 1812
  10187. },
  10188. {
  10189. "buffer" : 0,
  10190. "byteOffset" : 402148,
  10191. "byteLength" : 2416
  10192. },
  10193. {
  10194. "buffer" : 0,
  10195. "byteOffset" : 404564,
  10196. "byteLength" : 1812
  10197. },
  10198. {
  10199. "buffer" : 0,
  10200. "byteOffset" : 406376,
  10201. "byteLength" : 1812
  10202. },
  10203. {
  10204. "buffer" : 0,
  10205. "byteOffset" : 408188,
  10206. "byteLength" : 2416
  10207. },
  10208. {
  10209. "buffer" : 0,
  10210. "byteOffset" : 410604,
  10211. "byteLength" : 1812
  10212. },
  10213. {
  10214. "buffer" : 0,
  10215. "byteOffset" : 412416,
  10216. "byteLength" : 1812
  10217. },
  10218. {
  10219. "buffer" : 0,
  10220. "byteOffset" : 414228,
  10221. "byteLength" : 2416
  10222. },
  10223. {
  10224. "buffer" : 0,
  10225. "byteOffset" : 416644,
  10226. "byteLength" : 1812
  10227. },
  10228. {
  10229. "buffer" : 0,
  10230. "byteOffset" : 418456,
  10231. "byteLength" : 1812
  10232. },
  10233. {
  10234. "buffer" : 0,
  10235. "byteOffset" : 420268,
  10236. "byteLength" : 2416
  10237. },
  10238. {
  10239. "buffer" : 0,
  10240. "byteOffset" : 422684,
  10241. "byteLength" : 1812
  10242. },
  10243. {
  10244. "buffer" : 0,
  10245. "byteOffset" : 424496,
  10246. "byteLength" : 1812
  10247. },
  10248. {
  10249. "buffer" : 0,
  10250. "byteOffset" : 426308,
  10251. "byteLength" : 2416
  10252. },
  10253. {
  10254. "buffer" : 0,
  10255. "byteOffset" : 428724,
  10256. "byteLength" : 1812
  10257. },
  10258. {
  10259. "buffer" : 0,
  10260. "byteOffset" : 430536,
  10261. "byteLength" : 1812
  10262. },
  10263. {
  10264. "buffer" : 0,
  10265. "byteOffset" : 432348,
  10266. "byteLength" : 2416
  10267. },
  10268. {
  10269. "buffer" : 0,
  10270. "byteOffset" : 434764,
  10271. "byteLength" : 1812
  10272. },
  10273. {
  10274. "buffer" : 0,
  10275. "byteOffset" : 436576,
  10276. "byteLength" : 1812
  10277. },
  10278. {
  10279. "buffer" : 0,
  10280. "byteOffset" : 438388,
  10281. "byteLength" : 2416
  10282. },
  10283. {
  10284. "buffer" : 0,
  10285. "byteOffset" : 440804,
  10286. "byteLength" : 1812
  10287. },
  10288. {
  10289. "buffer" : 0,
  10290. "byteOffset" : 442616,
  10291. "byteLength" : 1812
  10292. },
  10293. {
  10294. "buffer" : 0,
  10295. "byteOffset" : 444428,
  10296. "byteLength" : 2416
  10297. },
  10298. {
  10299. "buffer" : 0,
  10300. "byteOffset" : 446844,
  10301. "byteLength" : 1812
  10302. },
  10303. {
  10304. "buffer" : 0,
  10305. "byteOffset" : 448656,
  10306. "byteLength" : 1812
  10307. },
  10308. {
  10309. "buffer" : 0,
  10310. "byteOffset" : 450468,
  10311. "byteLength" : 2416
  10312. },
  10313. {
  10314. "buffer" : 0,
  10315. "byteOffset" : 452884,
  10316. "byteLength" : 1812
  10317. },
  10318. {
  10319. "buffer" : 0,
  10320. "byteOffset" : 454696,
  10321. "byteLength" : 1812
  10322. },
  10323. {
  10324. "buffer" : 0,
  10325. "byteOffset" : 456508,
  10326. "byteLength" : 2416
  10327. },
  10328. {
  10329. "buffer" : 0,
  10330. "byteOffset" : 458924,
  10331. "byteLength" : 1812
  10332. },
  10333. {
  10334. "buffer" : 0,
  10335. "byteOffset" : 460736,
  10336. "byteLength" : 1812
  10337. },
  10338. {
  10339. "buffer" : 0,
  10340. "byteOffset" : 462548,
  10341. "byteLength" : 2416
  10342. },
  10343. {
  10344. "buffer" : 0,
  10345. "byteOffset" : 464964,
  10346. "byteLength" : 1812
  10347. },
  10348. {
  10349. "buffer" : 0,
  10350. "byteOffset" : 466776,
  10351. "byteLength" : 1812
  10352. },
  10353. {
  10354. "buffer" : 0,
  10355. "byteOffset" : 468588,
  10356. "byteLength" : 2416
  10357. },
  10358. {
  10359. "buffer" : 0,
  10360. "byteOffset" : 471004,
  10361. "byteLength" : 1812
  10362. },
  10363. {
  10364. "buffer" : 0,
  10365. "byteOffset" : 472816,
  10366. "byteLength" : 1812
  10367. },
  10368. {
  10369. "buffer" : 0,
  10370. "byteOffset" : 474628,
  10371. "byteLength" : 2416
  10372. },
  10373. {
  10374. "buffer" : 0,
  10375. "byteOffset" : 477044,
  10376. "byteLength" : 1812
  10377. },
  10378. {
  10379. "buffer" : 0,
  10380. "byteOffset" : 478856,
  10381. "byteLength" : 1812
  10382. },
  10383. {
  10384. "buffer" : 0,
  10385. "byteOffset" : 480668,
  10386. "byteLength" : 2416
  10387. },
  10388. {
  10389. "buffer" : 0,
  10390. "byteOffset" : 483084,
  10391. "byteLength" : 1812
  10392. },
  10393. {
  10394. "buffer" : 0,
  10395. "byteOffset" : 484896,
  10396. "byteLength" : 1812
  10397. },
  10398. {
  10399. "buffer" : 0,
  10400. "byteOffset" : 486708,
  10401. "byteLength" : 2416
  10402. },
  10403. {
  10404. "buffer" : 0,
  10405. "byteOffset" : 489124,
  10406. "byteLength" : 1812
  10407. },
  10408. {
  10409. "buffer" : 0,
  10410. "byteOffset" : 490936,
  10411. "byteLength" : 1812
  10412. },
  10413. {
  10414. "buffer" : 0,
  10415. "byteOffset" : 492748,
  10416. "byteLength" : 2416
  10417. },
  10418. {
  10419. "buffer" : 0,
  10420. "byteOffset" : 495164,
  10421. "byteLength" : 1812
  10422. },
  10423. {
  10424. "buffer" : 0,
  10425. "byteOffset" : 496976,
  10426. "byteLength" : 1812
  10427. },
  10428. {
  10429. "buffer" : 0,
  10430. "byteOffset" : 498788,
  10431. "byteLength" : 2416
  10432. },
  10433. {
  10434. "buffer" : 0,
  10435. "byteOffset" : 501204,
  10436. "byteLength" : 1812
  10437. },
  10438. {
  10439. "buffer" : 0,
  10440. "byteOffset" : 503016,
  10441. "byteLength" : 1812
  10442. },
  10443. {
  10444. "buffer" : 0,
  10445. "byteOffset" : 504828,
  10446. "byteLength" : 2416
  10447. },
  10448. {
  10449. "buffer" : 0,
  10450. "byteOffset" : 507244,
  10451. "byteLength" : 1812
  10452. },
  10453. {
  10454. "buffer" : 0,
  10455. "byteOffset" : 509056,
  10456. "byteLength" : 1812
  10457. },
  10458. {
  10459. "buffer" : 0,
  10460. "byteOffset" : 510868,
  10461. "byteLength" : 2416
  10462. },
  10463. {
  10464. "buffer" : 0,
  10465. "byteOffset" : 513284,
  10466. "byteLength" : 1812
  10467. },
  10468. {
  10469. "buffer" : 0,
  10470. "byteOffset" : 515096,
  10471. "byteLength" : 1812
  10472. },
  10473. {
  10474. "buffer" : 0,
  10475. "byteOffset" : 516908,
  10476. "byteLength" : 2416
  10477. },
  10478. {
  10479. "buffer" : 0,
  10480. "byteOffset" : 519324,
  10481. "byteLength" : 1812
  10482. },
  10483. {
  10484. "buffer" : 0,
  10485. "byteOffset" : 521136,
  10486. "byteLength" : 1812
  10487. },
  10488. {
  10489. "buffer" : 0,
  10490. "byteOffset" : 522948,
  10491. "byteLength" : 2416
  10492. },
  10493. {
  10494. "buffer" : 0,
  10495. "byteOffset" : 525364,
  10496. "byteLength" : 1812
  10497. },
  10498. {
  10499. "buffer" : 0,
  10500. "byteOffset" : 527176,
  10501. "byteLength" : 1812
  10502. },
  10503. {
  10504. "buffer" : 0,
  10505. "byteOffset" : 528988,
  10506. "byteLength" : 2416
  10507. },
  10508. {
  10509. "buffer" : 0,
  10510. "byteOffset" : 531404,
  10511. "byteLength" : 1812
  10512. },
  10513. {
  10514. "buffer" : 0,
  10515. "byteOffset" : 533216,
  10516. "byteLength" : 1812
  10517. },
  10518. {
  10519. "buffer" : 0,
  10520. "byteOffset" : 535028,
  10521. "byteLength" : 2416
  10522. },
  10523. {
  10524. "buffer" : 0,
  10525. "byteOffset" : 537444,
  10526. "byteLength" : 1812
  10527. },
  10528. {
  10529. "buffer" : 0,
  10530. "byteOffset" : 539256,
  10531. "byteLength" : 1812
  10532. },
  10533. {
  10534. "buffer" : 0,
  10535. "byteOffset" : 541068,
  10536. "byteLength" : 2416
  10537. },
  10538. {
  10539. "buffer" : 0,
  10540. "byteOffset" : 543484,
  10541. "byteLength" : 1812
  10542. },
  10543. {
  10544. "buffer" : 0,
  10545. "byteOffset" : 545296,
  10546. "byteLength" : 1812
  10547. },
  10548. {
  10549. "buffer" : 0,
  10550. "byteOffset" : 547108,
  10551. "byteLength" : 2416
  10552. },
  10553. {
  10554. "buffer" : 0,
  10555. "byteOffset" : 549524,
  10556. "byteLength" : 1812
  10557. },
  10558. {
  10559. "buffer" : 0,
  10560. "byteOffset" : 551336,
  10561. "byteLength" : 1812
  10562. },
  10563. {
  10564. "buffer" : 0,
  10565. "byteOffset" : 553148,
  10566. "byteLength" : 2416
  10567. },
  10568. {
  10569. "buffer" : 0,
  10570. "byteOffset" : 555564,
  10571. "byteLength" : 1812
  10572. }
  10573. ],
  10574. "buffers" : [
  10575. {
  10576. "uri" : "Zebra.bin",
  10577. "byteLength" : 557376
  10578. }
  10579. ]
  10580. }