diff --git a/converter/COLLADA2GLTF/CMakeLists.txt b/converter/COLLADA2GLTF/CMakeLists.txt index c14fa63c7a..f6e3e46ae7 100644 --- a/converter/COLLADA2GLTF/CMakeLists.txt +++ b/converter/COLLADA2GLTF/CMakeLists.txt @@ -67,11 +67,13 @@ if (USE_OPEN3DGC) include_directories(${COLLADA2GLTF_SOURCE_DIR}/dependencies/o3dgc/src/o3dgc_decode_lib/inc) endif() -if (NOT WIN32) - find_package(PNG REQUIRED) +find_package(PNG) +if (PNG_FOUND) include_directories(${PNG_INCLUDE_DIR}) - find_package(ZLIB REQUIRED) include_directories(${ZLIB_INCLUDE_DIR}) + add_definitions(-DUSE_LIBPNG) +else() + message(WARNING "libpng or one of its dependencies couldn't be found. Transparency may not be correctly detected.") endif() link_directories(${COLLADA2GLTF_BINARY_DIR}/lib) @@ -143,6 +145,8 @@ set(GLTF_SOURCES helpers/geometryHelpers.cpp helpers/mathHelpers.h helpers/mathHelpers.cpp + helpers/encodingHelpers.h + helpers/encodingHelpers.cpp convert/meshConverter.cpp convert/meshConverter.h @@ -180,9 +184,8 @@ if (WIN32) set_target_properties(collada2gltfConvert PROPERTIES RUNTIME_OUTPUT_DIRECTORY "bin") endif() - -if (NOT WIN32) -LIST(APPEND TARGET_LIBS ${PNG_LIBRARY} ${ZLIB_LIBRARY}) +if (PNG_FOUND) + LIST(APPEND TARGET_LIBS ${PNG_LIBRARY} ${ZLIB_LIBRARY}) endif() if (USE_OPEN3DGC) diff --git a/converter/COLLADA2GLTF/COLLADA2GLTFWriter.cpp b/converter/COLLADA2GLTF/COLLADA2GLTFWriter.cpp index 485680d508..bf21785453 100644 --- a/converter/COLLADA2GLTF/COLLADA2GLTFWriter.cpp +++ b/converter/COLLADA2GLTF/COLLADA2GLTFWriter.cpp @@ -29,12 +29,14 @@ #include "GLTFOpenCOLLADAUtils.h" #include "GLTFExtraDataHandler.h" #include "COLLADASaxFWLLoader.h" +#include "COLLADAFWFileInfo.h" #include "GLTF-Open3DGC.h" #include "profiles/webgl-1.0/GLTFWebGL_1_0_Profile.h" #include "GitSHA1.h" #include #include "commonProfileShaders.h" - +#include "helpers/encodingHelpers.h" +#include "COLLADAFWFileInfo.h" #if __cplusplus <= 199711L using namespace std::tr1; @@ -51,7 +53,7 @@ namespace GLTF */ COLLADA2GLTFWriter::COLLADA2GLTFWriter(shared_ptr asset): _asset(asset), - _visualScene(0) { + _visualScene(0){ } /* @@ -115,6 +117,37 @@ namespace GLTF assetObject->setString(kProfile, asset->profile()->id()); assetObject->setDouble(kVersion, glTFVersion); + if (globalAsset->getUpAxisType() == COLLADAFW::FileInfo::X_UP || + globalAsset->getUpAxisType() == COLLADAFW::FileInfo::Z_UP) + { + COLLADABU::Math::Matrix4 matrix = COLLADABU::Math::Matrix4::IDENTITY; + if (globalAsset->getUpAxisType() == COLLADAFW::FileInfo::X_UP) + { + // Rotate -90 deg around Z + matrix.setElement(0, 0, 0.0f); + matrix.setElement(0, 1, 1.0f); + matrix.setElement(1, 0, -1.0f); + matrix.setElement(1, 1, 0.0f); + } + else // Z_UP + { + // Rotate 90 deg around X + matrix.setElement(1, 1, 0.0f); + matrix.setElement(1, 2, -1.0f); + matrix.setElement(2, 1, 1.0f); + matrix.setElement(2, 2, 0.0f); + } + + _rootTransform = std::shared_ptr(new GLTF::JSONObject()); + _rootTransform->setString(kName, "Y_UP_Transform"); + _rootTransform->setValue("matrix", serializeOpenCOLLADAMatrix4(matrix)); + + shared_ptr childrenArray(new GLTF::JSONArray()); + _rootTransform->setValue(kChildren, childrenArray); + } + + asset->setDistanceScale(globalAsset->getUnit().getLinearUnitMeter()); + return true; } @@ -310,6 +343,11 @@ namespace GLTF if (shouldExportTRS) { GLTF::decomposeMatrix(matrix, translation, rotation, scale); + + // Scale distance units if we need to + translation[0] *= (float)_asset->getDistanceScale(); + translation[1] *= (float)_asset->getDistanceScale(); + translation[2] *= (float)_asset->getDistanceScale(); bool exportDefaultValues = CONFIG_BOOL(asset, "exportDefaultValues"); bool exportTranslation = !(!exportDefaultValues && @@ -326,9 +364,11 @@ namespace GLTF } else { //FIXME: OpenCOLLADA typo + matrix.scaleTrans(_asset->getDistanceScale()); bool exportMatrix = !((matrix.isIdentiy() && (CONFIG_BOOL(asset, "exportDefaultValues") == false) )); - if (exportMatrix) + if (exportMatrix) { nodeObject->setValue("matrix", serializeOpenCOLLADAMatrix4(matrix)); + } } const InstanceControllerPointerArray& instanceControllers = node->getInstanceControllers(); @@ -503,8 +543,28 @@ namespace GLTF scenesObject->setValue("defaultScene", sceneObject); //FIXME: should use this id -> visualScene->getOriginalId() //first pass to output children name of our root node - shared_ptr childrenArray(new GLTF::JSONArray()); - sceneObject->setValue(kNodes, childrenArray); + shared_ptr childrenArray; + if (_rootTransform) + { + // Add the root transform to the nodes + std::string yUpNodeID = uniqueIdWithType(kNode, this->_loader.getUniqueId(COLLADAFW::COLLADA_TYPE::NODE)); + nodesObject->setValue(yUpNodeID, _rootTransform); + + // Create a children array for the scene and add the root transform to it + shared_ptr sceneChildrenArray(new GLTF::JSONArray()); + sceneObject->setValue(kNodes, sceneChildrenArray); + shared_ptr rootIDValue(new GLTF::JSONString(yUpNodeID)); + sceneChildrenArray->appendValue(static_pointer_cast (rootIDValue)); + + // Set childrenArray to the root transform's children array so all root nodes will become its children + childrenArray = std::static_pointer_cast(_rootTransform->getValue(kChildren)); + } + else + { + // No root transform so just add all root nodes to the scene's children array + childrenArray = std::shared_ptr(new GLTF::JSONArray()); + sceneObject->setValue(kNodes, childrenArray); + } for (size_t i = 0 ; i < nodeCount ; i++) { std::string nodeUID = nodePointerArray[i]->getOriginalId(); @@ -956,8 +1016,8 @@ namespace GLTF break; } - projectionObject->setDouble("znear", camera->getNearClippingPlane().getValue()); - projectionObject->setDouble("zfar", camera->getFarClippingPlane().getValue()); + projectionObject->setDouble("znear", camera->getNearClippingPlane().getValue() * _asset->getDistanceScale()); + projectionObject->setDouble("zfar", camera->getFarClippingPlane().getValue() * _asset->getDistanceScale()); return true; } @@ -974,13 +1034,47 @@ namespace GLTF const COLLADABU::URI &imageURI = openCOLLADAImage->getImageURI(); std::string relPathFile = imageURI.getPathFile(); - - if (imageURI.getPathDir().substr(0,2) != "./") { - relPathFile = imageURI.getPathDir() + imageURI.getPathFile(); - } else { - relPathFile = imageURI.getPathDir().substr(2) + imageURI.getPathFile(); - } - image->setString("path", this->_asset->resourceOuputPathForPath(relPathFile)); + if (imageURI.getPathDir().substr(0, 2) != "./") { + relPathFile = imageURI.getPathDir() + imageURI.getPathFile(); + } + else { + relPathFile = imageURI.getPathDir().substr(2) + imageURI.getPathFile(); + } + + if (_asset->getEmbedResources()) + { + COLLADABU::URI inputURI(_asset->getInputFilePath().c_str()); + std::string imageFullPath = inputURI.getPathDir() + relPathFile; + + std::ifstream fin(imageFullPath, ios::in | ios::binary); + if (fin.is_open()) + { + std::ostringstream ss; + ss << fin.rdbuf(); + COLLADABU::URI u(imageFullPath); + std::string ext = u.getPathExtension(); + std::transform(ext.begin(), ext.end(), ext.begin(), ::tolower); + std::string contentType = "application/octet-stream"; + if (ext == "png") + { + contentType = "image/png"; + } + else if (ext == "gif") + { + contentType = "image/gif"; + } + else if (ext == "jpg" || ext == "jpeg") + { + contentType = "image/jpeg"; + } + + image->setString(kURI, create_dataUri(ss.str(), contentType)); + + return true; + } + } + + image->setString(kURI, COLLADABU::URI::uriEncode(this->_asset->resourceOuputPathForPath(relPathFile))); return true; } diff --git a/converter/COLLADA2GLTF/COLLADA2GLTFWriter.h b/converter/COLLADA2GLTF/COLLADA2GLTFWriter.h index 4642c2de8f..3c8795f667 100644 --- a/converter/COLLADA2GLTF/COLLADA2GLTFWriter.h +++ b/converter/COLLADA2GLTF/COLLADA2GLTFWriter.h @@ -45,6 +45,7 @@ namespace GLTF { class GLTFObject; class ExtraDataHandler; + class JSONObject; // -- SceneFlattening @@ -196,6 +197,7 @@ namespace GLTF SceneFlatteningInfo _sceneFlatteningInfo; GLTF::ExtraDataHandler *_extraDataHandler; std::ofstream _compressedDataOutputStream; + std::shared_ptr _rootTransform; }; } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAccessor.cpp b/converter/COLLADA2GLTF/GLTF/GLTFAccessor.cpp index b7025771cb..90183d52f5 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAccessor.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFAccessor.cpp @@ -221,4 +221,8 @@ namespace GLTF return this->getUnsignedInt32(kType); } + std::string GLTFAccessor::valueType() { + return "accessor"; + } + } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAccessor.h b/converter/COLLADA2GLTF/GLTF/GLTFAccessor.h index 7e1c93ed5e..ea9e40233c 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAccessor.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFAccessor.h @@ -83,6 +83,9 @@ namespace GLTF bool matchesLayout(GLTFAccessor* meshAttribute); void exposeMinMax(); + + virtual std::string valueType(); + private: void _computeMinMaxIfNeeded(); diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAnimation.cpp b/converter/COLLADA2GLTF/GLTF/GLTFAnimation.cpp index 6d8ae0bdd5..8d52523f6d 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAnimation.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFAnimation.cpp @@ -183,4 +183,9 @@ namespace GLTF free(rotations); } } + + std::string GLTFAnimation::valueType() { + return "animation"; + } + } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAnimation.h b/converter/COLLADA2GLTF/GLTF/GLTFAnimation.h index 3720f44a53..3609fa824b 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAnimation.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFAnimation.h @@ -64,6 +64,8 @@ namespace GLTF void writeAnimationForTargetID(const std::string &targetID, GLTFAsset* asset); + virtual std::string valueType(); + private: std::string _id; std::string _originalID; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAsset.cpp b/converter/COLLADA2GLTF/GLTF/GLTFAsset.cpp index b4db447c38..557e9b4581 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAsset.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFAsset.cpp @@ -13,7 +13,7 @@ using namespace std::tr1; using namespace std; namespace GLTF -{ +{ bool writeMeshIndices(shared_ptr mesh, size_t startOffset, GLTFAsset* asset) { GLTFOutputStream* indicesOutputStream = asset->createOutputStreamIfNeeded(asset->getSharedBufferId()).get(); typedef std::map > IDToBufferDef; @@ -149,7 +149,11 @@ namespace GLTF return id; } - GLTFAsset::GLTFAsset():_isBundle(false) { + GLTFAsset::GLTFAsset() : + _isBundle(false), + _embedResources(false), + _distanceScale(1.0) + { this->_trackedResourcesPath = shared_ptr (new JSONObject()); this->_trackedOutputResourcesPath = shared_ptr (new JSONObject()); this->_converterConfig = shared_ptr (new GLTFConfig()); @@ -191,14 +195,23 @@ namespace GLTF shared_ptr GLTFAsset::createOutputStreamIfNeeded(const std::string& streamName) { - if (this->_nameToOutputStream.count(streamName) == 0) { - COLLADABU::URI inputURI(this->getInputFilePath().c_str()); - COLLADABU::URI outputURI(this->getOutputFilePath().c_str()); - - std::string folder = outputURI.getPathDir(); - std::string fileName = inputURI.getPathFileBase(); - - shared_ptr outputStream = shared_ptr (new GLTFOutputStream(folder, streamName, "")); + if (this->_nameToOutputStream.count(streamName) == 0) + { + shared_ptr outputStream; + if (_embedResources) + { + outputStream = shared_ptr (new GLTFOutputStream()); + } + else + { + COLLADABU::URI inputURI(this->getInputFilePath().c_str()); + COLLADABU::URI outputURI(this->getOutputFilePath().c_str()); + + std::string folder = outputURI.getPathDir(); + std::string fileName = inputURI.getPathFileBase(); + + outputStream = shared_ptr (new GLTFOutputStream(folder, streamName, "")); + } this->_nameToOutputStream[streamName] = outputStream; } @@ -211,8 +224,8 @@ namespace GLTF shared_ptr outputStream = this->_nameToOutputStream[streamName]; outputStream->close(); - if (removeFile) { - remove(outputStream->outputPathCStr()); + if (removeFile) { + outputStream->remove(); } //FIXME: We keep it around as it's informations are still accessed once close @@ -280,13 +293,13 @@ namespace GLTF outputBundlePathURI.setPath(inputPathURI.getPathDir(), outputBundlePathURI.getPathFileBase(), outputBundlePathURI.getPathExtension()); this->_bundleOutputPath = outputBundlePathURI.toNativePath(); - COLLADABU::URI outputPathURI(outputBundlePathURI.getURIString() + "/" + outputBundlePathURI.getPathFileBase() + "." + "json"); + COLLADABU::URI outputPathURI(outputBundlePathURI.getURIString() + "/" + outputBundlePathURI.getPathFileBase() + "." + "gltf"); this->_outputFilePath = outputPathURI.toNativePath(); // this->log("outputBundlePath:%s\n",outputBundlePathURI.toNativePath().c_str()); // this->log("outputPath:%s\n",outputPathURI.toNativePath().c_str()); } else { this->_bundleOutputPath = outputBundlePathURI.toNativePath(); - COLLADABU::URI outputPathURI(outputBundlePathURI.getURIString() + "/" + outputBundlePathURI.getPathFileBase() + "." + "json"); + COLLADABU::URI outputPathURI(outputBundlePathURI.getURIString() + "/" + outputBundlePathURI.getPathFileBase() + "." + "gltf"); this->_outputFilePath = outputPathURI.toNativePath(); } COLLADABU::Utils::createDirectoryIfNeeded(this->_bundleOutputPath.c_str()); @@ -348,6 +361,26 @@ namespace GLTF std::string GLTFAsset::getInputFilePath() { return this->_inputFilePath; } + + void GLTFAsset::setEmbedResources(bool embedResources) + { + this->_embedResources = embedResources; + } + + bool GLTFAsset::getEmbedResources() + { + return this->_embedResources; + } + + void GLTFAsset::setDistanceScale(double distanceScale) + { + this->_distanceScale = distanceScale; + } + + double GLTFAsset::getDistanceScale() + { + return this->_distanceScale; + } std::string GLTFAsset::pathRelativeToInputPath(const std::string& path) { if (GLTFUtils::isAbsolutePath(path) == true) { @@ -368,7 +401,7 @@ namespace GLTF std::vector keys = images->getAllKeys(); for (size_t i = 0 ; i < imagesCount ; i++) { shared_ptr image = images->getObject(keys[i]); - std::string path = image->getString("path"); + std::string path = image->getString(kURI); std::string originalPath = this->_originalResourcesPath->getString(path); @@ -401,10 +434,47 @@ namespace GLTF this->_writer.initWithPath(this->getOutputFilePath().c_str()); } - static void __eval(JSONValue* value, void *context) { + //FIXME:legacy + static void __eval(JSONValue* value, void* context) { value->evaluate(context); } + void GLTFAsset::evaluationWillStart(GLTFAsset* asset) { + } + + void GLTFAsset::evaluate(JSONValue* value, GLTFAsset* asset) { + } + + void GLTFAsset::evaluationDidComplete(GLTFAsset* asset) { + + } + + void GLTFAsset::_performValuesEvaluation() { + + size_t count = this->_evaluators.size(); + for (size_t i = 0 ; i < count ; i++) { + this->_evaluators[i]->evaluationWillStart(this); + } + + //these apply MUST be before the removeValue lightsIds that follows + this->_root->apply(__eval, this); + this->_root->apply(this, this); + this->_root->removeValue("lightsIds"); + + for (size_t i = 0 ; i < count ; i++) { + this->_evaluators[i]->evaluationDidComplete(this); + } + + this->_root->write(&this->_writer, this); + } + + void GLTFAsset::apply(JSONValue* value, void *context) { + size_t count = this->_evaluators.size(); + for (size_t i = 0 ; i < count ; i++) { + this->_evaluators[i]->evaluate(value, (GLTFAsset*)context); + } + } + std::string GLTFAsset::getSharedBufferId() { if (this->_sharedBufferId.length() == 0) { COLLADABU::URI inputURI(this->getInputFilePath().c_str()); @@ -753,6 +823,17 @@ namespace GLTF return true; } + void GLTFAsset::addValueEvaluator(std::shared_ptr evaluator) { + this->_evaluators.push_back(evaluator); + } + + void GLTFAsset::removeValueEvaluator(std::shared_ptr evaluator) { + std::vector >::iterator iter = std::find(this->_evaluators.begin(), this->_evaluators.end(), evaluator); + if (iter != this->_evaluators.end()) { + this->_evaluators.erase(iter); + } + } + void GLTFAsset::write() { ifstream inputCompression; @@ -1040,7 +1121,9 @@ namespace GLTF this->_root->setValue("buffers", buffersObject); if (sharedBuffer->getByteLength() > 0) { - sharedBuffer->setString(kPath, this->getSharedBufferId() + ".bin"); + + COLLADABU::URI uri(rawOutputStream->outputPath()); + sharedBuffer->setString(kURI, COLLADABU::URI::uriEncode(uri.getPathFile())); sharedBuffer->setString(kType, "arraybuffer"); buffersObject->setValue(this->getSharedBufferId(), sharedBuffer); } @@ -1048,7 +1131,7 @@ namespace GLTF if (compressionBuffer->getByteLength() > 0) { std::string compressedBufferID = compressionOutputStream->id(); buffersObject->setValue(compressedBufferID, compressionBuffer); - compressionBuffer->setString(kPath, compressedBufferID + ".bin"); + compressionBuffer->setString(kURI, COLLADABU::URI::uriEncode(compressionOutputStream->outputPath())); if (converterConfig()->config()->getString("compressionMode") == "ascii") compressionBuffer->setString(kType, "text"); else @@ -1072,19 +1155,18 @@ namespace GLTF verticesBufferView->setUnsignedInt32(kTarget, this->_profile->getGLenumForString("ARRAY_BUFFER")); //--- - //this apply MUST be before the removeValue lightsIds that follows - this->_root->apply(__eval, this); - this->_root->removeValue("lightsIds"); + //to run legacy evaluate, to be removed + this->addValueEvaluator(shared_ptr (this)); - this->_root->write(&this->_writer, this); + this->_performValuesEvaluation(); rawOutputStream->close(); if (compressionLength == 0) { this->closeOutputStream(kCompressionOutputStream, true); } - if (sharedBuffer->getByteLength() == 0) - remove(rawOutputStream->outputPathCStr()); + if (sharedBuffer->getByteLength() == 0) + rawOutputStream->remove(); this->convertionResults()->setUnsignedInt32(kGeometry, (unsigned int)this->getGeometryByteLength()); this->convertionResults()->setUnsignedInt32(kAnimation, (unsigned int)this->getAnimationByteLength()); diff --git a/converter/COLLADA2GLTF/GLTF/GLTFAsset.h b/converter/COLLADA2GLTF/GLTF/GLTFAsset.h index 978032095c..fda477849e 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFAsset.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFAsset.h @@ -7,6 +7,18 @@ namespace GLTF { + class GLTFAsset; + + class GLTFAssetValueEvaluator { + public: + //evaluate is mandatory + virtual void evaluationWillStart(GLTFAsset*) {}; + virtual void evaluate(JSONValue* value, GLTFAsset* asset) = 0; + virtual void evaluationDidComplete(GLTFAsset*) {}; + + virtual ~GLTFAssetValueEvaluator() {}; + }; + #define CONFIG_BOOL(asset,X) (asset->converterConfig()->config()->getBool(X)) #define CONFIG_STRING(asset, X) (asset->converterConfig()->config()->getString(X)) #define CONFIG_DOUBLE(asset, X) (asset->converterConfig()->config()->getDouble(X)) @@ -47,7 +59,7 @@ namespace GLTF typedef std::map > MaterialBindingsForMeshUID; typedef std::map > MaterialBindingsForNodeUID; - class COLLADA2GLTF_EXPORT GLTFAsset + class COLLADA2GLTF_EXPORT GLTFAsset : public GLTFAssetValueEvaluator, public JSONValueApplier { public: GLTFAsset(); @@ -84,6 +96,12 @@ namespace GLTF void setInputFilePath(const std::string& inputFilePath); std::string getInputFilePath(); + void setEmbedResources(bool embedResources); + bool getEmbedResources(); + + void setDistanceScale(double distanceScale); + double getDistanceScale(); + std::string pathRelativeToInputPath(const std::string& path); void copyImagesInsideBundleIfNeeded(); @@ -106,9 +124,20 @@ namespace GLTF std::shared_ptr getExtras(); void setExtras(std::shared_ptr); + void addValueEvaluator(std::shared_ptr evaluator); + void removeValueEvaluator(std::shared_ptr evaluator); + + //as an GLTFAssetValueEvaluator + virtual void evaluationWillStart(GLTFAsset*); + virtual void evaluate(JSONValue* value, GLTFAsset* asset); + virtual void evaluationDidComplete(GLTFAsset*); + + void apply(JSONValue* value, void *context); + protected: void launchModifiers(); private: + void _performValuesEvaluation(); bool _applyMaterialBindingsForNode(const std::string& nodeUID); void _applyMaterialBindings(std::shared_ptr mesh, std::shared_ptr materialBindingPrimitiveMap, @@ -153,6 +182,8 @@ namespace GLTF size_t _geometryByteLength; size_t _animationByteLength; bool _isBundle; + bool _embedResources; + double _distanceScale; UniqueIDToJSONValue _uniqueIDToJSONValue; @@ -162,6 +193,8 @@ namespace GLTF std::vector > _assetModifiers; MaterialBindingsForNodeUID _materialBindingsForNodeUID; + + std::vector > _evaluators; }; std::string uniqueIdWithType(std::string type, const COLLADAFW::UniqueId& uniqueId); diff --git a/converter/COLLADA2GLTF/GLTF/GLTFBuffer.cpp b/converter/COLLADA2GLTF/GLTF/GLTFBuffer.cpp index 7eb20b8d2b..5b910ce7e5 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFBuffer.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFBuffer.cpp @@ -69,7 +69,7 @@ namespace GLTF //FIXME:this would be better somewhere else.. GLTFAsset* asset = (GLTFAsset*)context; - this->setString(kPath, asset->resourceOuputPathForPath(this->getString(kPath))); + this->setString(kURI, COLLADABU::URI::uriEncode(asset->resourceOuputPathForPath(this->getString(kURI)))); } size_t GLTFBuffer::getByteLength() { @@ -84,9 +84,11 @@ namespace GLTF return this->_data; } - //--- GLTFBufferView - - + std::string GLTFBuffer::valueType() { + return "buffer"; + } + + //--- GLTFBufferView GLTFBufferView::~GLTFBufferView() { } @@ -159,4 +161,8 @@ namespace GLTF return bufferView; } + std::string GLTFBufferView::valueType() { + return "bufferView"; + } + } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFBuffer.h b/converter/COLLADA2GLTF/GLTF/GLTFBuffer.h index 1a13de2f9a..87839e319c 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFBuffer.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFBuffer.h @@ -50,6 +50,8 @@ namespace GLTF virtual void evaluate(void*); + virtual std::string valueType(); + private: std::string _ID; unsigned char* _data; @@ -75,6 +77,9 @@ namespace GLTF std::string const getID(); void* getBufferDataByApplyingOffset(); + + virtual std::string valueType(); + private: void _setBuffer(std::shared_ptr ); private: diff --git a/converter/COLLADA2GLTF/GLTF/GLTFConfig.cpp b/converter/COLLADA2GLTF/GLTF/GLTFConfig.cpp index ced96aad97..999f60b62b 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFConfig.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFConfig.cpp @@ -61,6 +61,7 @@ namespace GLTF optionsRoot->setBool("outputConvertionResults", false); optionsRoot->setBool("outputConvertionMetaData", false); optionsRoot->setBool("verboseLogging", false); + optionsRoot->setBool("embedResources", false); //create the path "extensions.Open3DGC.quantization" and set default for Open3DGC shared_ptr extensions(new JSONObject()); diff --git a/converter/COLLADA2GLTF/GLTF/GLTFEffect.cpp b/converter/COLLADA2GLTF/GLTF/GLTFEffect.cpp index e3f16a1cb7..d1dc0679e5 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFEffect.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFEffect.cpp @@ -130,5 +130,9 @@ namespace GLTF } instanceTechnique->setValue(kValues, outputs); } + + std::string GLTFEffect::valueType() { + return "effect"; + } } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFEffect.h b/converter/COLLADA2GLTF/GLTF/GLTFEffect.h index fb596045e9..800e90be4a 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFEffect.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFEffect.h @@ -60,7 +60,8 @@ namespace GLTF SemanticArrayPtr getSemanticsForTexcoordName(const std::string &texcoord); void evaluate(void *context); - + virtual std::string valueType(); + private: std::string _ID; std::string _lightingModel; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFMesh.cpp b/converter/COLLADA2GLTF/GLTF/GLTFMesh.cpp index 4216b23c35..187cbeeba8 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFMesh.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFMesh.cpp @@ -205,4 +205,9 @@ namespace GLTF primitivesArray->appendValue(primitive); } } + + std::string GLTFMesh::valueType() { + return "mesh"; + } + } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFMesh.h b/converter/COLLADA2GLTF/GLTF/GLTFMesh.h index c954df0a7f..3d40ad1487 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFMesh.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFMesh.h @@ -83,6 +83,7 @@ namespace GLTF } std::shared_ptr clone(); + virtual std::string valueType(); private: SemanticToMeshAttributeHashmap _semanticToMeshAttributes; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.cpp b/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.cpp index 9ac4bbe417..8300d54778 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.cpp @@ -22,6 +22,7 @@ // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "GLTF.h" +#include "helpers/encodingHelpers.h" #if __cplusplus <= 199711L using namespace std::tr1; @@ -30,23 +31,31 @@ using namespace std; namespace GLTF { - GLTFOutputStream::GLTFOutputStream() { - + GLTFOutputStream::GLTFOutputStream() : + _stream(new std::ostringstream()), + _opened(true), + _embedded(true) + { } - - GLTFOutputStream::GLTFOutputStream(const std::string &folder, const std::string &file, const std::string &kind) { - this->_id = file + kind; - this->_filename = this->_id + ".bin"; - this->_outputPath = folder + this->_filename; - this->_stream.open(this->_outputPath.c_str(), ios::out | ios::ate | ios::binary); + + GLTFOutputStream::GLTFOutputStream(const std::string &folder, const std::string &file, const std::string &kind) : + _id(file + kind), + _opened(false), + _embedded(false) + { + _filename = _id + ".bin"; + _outputPath = folder + _filename; + std::ofstream *fout = new ofstream(); + fout->open(this->_outputPath.c_str(), ios::out | ios::ate | ios::binary); + this->_stream.reset(static_cast(fout)); - if (this->_stream.is_open()) { + if (fout->is_open()) { this->_opened = true; } else { printf("cannot create file :%s\n", this->_outputPath.c_str()); } } - + const std::string& GLTFOutputStream::filename() { return this->_filename; } @@ -55,17 +64,22 @@ namespace GLTF return this->_id; } - const char* GLTFOutputStream::outputPathCStr() { - return this->_outputPath.c_str(); - } + const std::string& GLTFOutputStream::outputPath() { + if (_embedded) + { + this->_outputPath = create_dataUri(dynamic_pointer_cast(this->_stream)->str()); + } + + return this->_outputPath; + } size_t GLTFOutputStream::length() { - return this->_opened ? static_cast (this->_stream.tellp()) : 0; + return this->_opened ? static_cast (this->_stream->tellp()) : 0; } void GLTFOutputStream::write(const char* buffer, size_t length) { if (this->_opened) { - this->_stream.write(buffer, length); + this->_stream->write(buffer, length); } } @@ -79,11 +93,26 @@ namespace GLTF void GLTFOutputStream::close() { if (this->_opened) { - this->_stream.flush(); - this->_stream.close(); + this->_stream->flush(); + if (!_embedded) + { + dynamic_pointer_cast(this->_stream)->close(); + } this->_opened = false; } } + + void GLTFOutputStream::remove() + { + if (_embedded) + { + dynamic_pointer_cast(this->_stream)->clear(); + } + else + { + ::remove(this->_outputPath.c_str()); + } + } GLTFOutputStream::~GLTFOutputStream() { this->close(); diff --git a/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.h b/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.h index 11b61caa96..870bdfc677 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFOutputStream.h @@ -27,9 +27,8 @@ namespace GLTF { class GLTFOutputStream { - private: + public: GLTFOutputStream(); - public: GLTFOutputStream(const std::string &folder, const std::string &file, const std::string &kind); size_t length(); @@ -39,19 +38,21 @@ namespace GLTF const std::string& filename(); const std::string& id(); - - const char* outputPathCStr(); + const std::string& outputPath(); void close(); + void remove(); virtual ~GLTFOutputStream(); private: - std::ofstream _stream; + std::shared_ptr _stream; std::string _outputPath; std::string _filename; std::string _id; bool _opened; + + bool _embedded; }; } diff --git a/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.cpp b/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.cpp index 377ef46e5b..3cecc322ea 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.cpp @@ -123,4 +123,8 @@ namespace GLTF this->_uniqueIndices = indices; } + std::string GLTFPrimitive::valueType() { + return "primitive"; + } + }; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.h b/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.h index b747f3c6c0..4ce8177260 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFPrimitive.h @@ -76,6 +76,7 @@ namespace GLTF void setIndices(std::shared_ptr indices); std::shared_ptr clone(); + virtual std::string valueType(); private: unsigned int _materialObjectID; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFSkin.cpp b/converter/COLLADA2GLTF/GLTF/GLTFSkin.cpp index bbc1322d12..e84e858d78 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFSkin.cpp +++ b/converter/COLLADA2GLTF/GLTF/GLTFSkin.cpp @@ -122,4 +122,8 @@ namespace GLTF return this->_jointsCount; } + std::string GLTFSkin::valueType() { + return getType(); + } + }; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFSkin.h b/converter/COLLADA2GLTF/GLTF/GLTFSkin.h index eb121ea206..4facd30356 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFSkin.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFSkin.h @@ -70,6 +70,8 @@ namespace GLTF void setJointsCount(size_t count); size_t getJointsCount(); + virtual std::string valueType(); + private: std::shared_ptr _inverseBindMatrices; diff --git a/converter/COLLADA2GLTF/GLTF/GLTFTypesAndConstants.h b/converter/COLLADA2GLTF/GLTF/GLTFTypesAndConstants.h index 11beb0b147..754a8f95d1 100644 --- a/converter/COLLADA2GLTF/GLTF/GLTFTypesAndConstants.h +++ b/converter/COLLADA2GLTF/GLTF/GLTFTypesAndConstants.h @@ -29,13 +29,13 @@ #define EXPORT_MATERIALS_AS_EFFECTS 1 -const float glTFVersion = 0.6f; +const float glTFVersion = 0.7f; const std::string kCount = "count"; const std::string kByteOffset = "byteOffset"; const std::string kByteStride = "byteStride"; const std::string kByteLength = "byteLength"; -const std::string kPath = "path"; +const std::string kURI = "uri"; const std::string kType = "type"; const std::string kBufferView = "bufferView"; const std::string kBufferViews = "bufferViews"; diff --git a/converter/COLLADA2GLTF/JSON/JSONArray.cpp b/converter/COLLADA2GLTF/JSON/JSONArray.cpp index e8981ef159..99770acc32 100644 --- a/converter/COLLADA2GLTF/JSON/JSONArray.cpp +++ b/converter/COLLADA2GLTF/JSON/JSONArray.cpp @@ -99,6 +99,10 @@ namespace GLTF return kJSONArray; } + std::string JSONArray::valueType() { + return "array"; + } + void JSONArray::apply(JSONValueApplierFunc func, void* context) { vector > values = this->values(); size_t count = values.size(); @@ -106,7 +110,15 @@ namespace GLTF values[i]->apply(func, context); } } - + + void JSONArray::apply(JSONValueApplier* applier, void* context) { + vector > values = this->values(); + size_t count = values.size(); + for (size_t i = 0 ; i < count ; i++) { + values[i]->apply(applier, context); + } + } + size_t JSONArray::getCount() { return this->_values.size(); } diff --git a/converter/COLLADA2GLTF/JSON/JSONArray.h b/converter/COLLADA2GLTF/JSON/JSONArray.h index 54d2f70206..4c5dd69a8e 100644 --- a/converter/COLLADA2GLTF/JSON/JSONArray.h +++ b/converter/COLLADA2GLTF/JSON/JSONArray.h @@ -45,9 +45,11 @@ namespace GLTF size_t getCount(); virtual JSONType getJSONType(); + virtual std::string valueType(); void apply(JSONValueApplierFunc func, void* context); - + void apply(JSONValueApplier* applier, void* context); + virtual bool isEqualTo(JSONValue* value); bool contains(JSONValue* value); diff --git a/converter/COLLADA2GLTF/JSON/JSONNumber.cpp b/converter/COLLADA2GLTF/JSON/JSONNumber.cpp index 7db7d93867..08bf55813f 100644 --- a/converter/COLLADA2GLTF/JSON/JSONNumber.cpp +++ b/converter/COLLADA2GLTF/JSON/JSONNumber.cpp @@ -170,13 +170,17 @@ namespace GLTF return kJSONNumber; } + std::string JSONNumber::valueType() { + return "number"; + } + bool JSONNumber::isEqualTo(JSONValue* value) { assert(value != nullptr); if (JSONValue::isEqualTo(value) == true) return true; - JSONNumber *numberValue = (JSONNumber*)(value); + //JSONNumber *numberValue = (JSONNumber*)(value); //FIXME:TODO return true; diff --git a/converter/COLLADA2GLTF/JSON/JSONNumber.h b/converter/COLLADA2GLTF/JSON/JSONNumber.h index a4f2623ed6..834552581f 100644 --- a/converter/COLLADA2GLTF/JSON/JSONNumber.h +++ b/converter/COLLADA2GLTF/JSON/JSONNumber.h @@ -58,6 +58,7 @@ namespace GLTF JSONNumber::JSONNumberType getNumberType(); virtual JSONType getJSONType(); + virtual std::string valueType(); virtual bool isEqualTo(JSONValue* value); diff --git a/converter/COLLADA2GLTF/JSON/JSONObject.cpp b/converter/COLLADA2GLTF/JSON/JSONObject.cpp index 904ea842ee..f84a67f84a 100644 --- a/converter/COLLADA2GLTF/JSON/JSONObject.cpp +++ b/converter/COLLADA2GLTF/JSON/JSONObject.cpp @@ -279,6 +279,10 @@ namespace GLTF return kJSONObject; } + std::string JSONObject::valueType() { + return "object"; + } + void JSONObject::apply(JSONValueApplierFunc func, void* context) { JSONValue::apply(func, context); @@ -290,8 +294,19 @@ namespace GLTF value->apply(func, context); } } - + void JSONObject::apply(JSONValueApplier* applier, void* context) { + JSONValue::apply(applier, context); + + vector keys = this->getAllKeys(); + size_t count = keys.size(); + for (size_t i = 0 ; i < count ; i++) { + shared_ptr value = this->getValue(keys[i]); + if (value) + value->apply(applier, context); + } + } + bool JSONObject::isEqualTo(JSONValue* value) { assert(value != nullptr); diff --git a/converter/COLLADA2GLTF/JSON/JSONObject.h b/converter/COLLADA2GLTF/JSON/JSONObject.h index 0131431153..19be9d8f8a 100644 --- a/converter/COLLADA2GLTF/JSON/JSONObject.h +++ b/converter/COLLADA2GLTF/JSON/JSONObject.h @@ -85,11 +85,13 @@ namespace GLTF size_t getKeysCount(); virtual JSONType getJSONType(); - + virtual std::string valueType(); + bool isEmpty(); void apply(JSONValueApplierFunc func, void* context); - + void apply(JSONValueApplier* applier, void* context); + virtual bool isEqualTo(JSONValue* value); protected: diff --git a/converter/COLLADA2GLTF/JSON/JSONString.cpp b/converter/COLLADA2GLTF/JSON/JSONString.cpp index db2a08352e..1411aa3d04 100644 --- a/converter/COLLADA2GLTF/JSON/JSONString.cpp +++ b/converter/COLLADA2GLTF/JSON/JSONString.cpp @@ -58,6 +58,10 @@ namespace GLTF return kJSONString; } + std::string JSONString::valueType() { + return "string"; + } + bool JSONString::isEqualTo(JSONValue* value) { assert(value != nullptr); diff --git a/converter/COLLADA2GLTF/JSON/JSONString.h b/converter/COLLADA2GLTF/JSON/JSONString.h index 2f369364af..d796d2ed59 100644 --- a/converter/COLLADA2GLTF/JSON/JSONString.h +++ b/converter/COLLADA2GLTF/JSON/JSONString.h @@ -45,6 +45,8 @@ namespace GLTF const std::string& getString(); virtual JSONType getJSONType(); + virtual std::string valueType(); + virtual bool isEqualTo(JSONValue* value); private: diff --git a/converter/COLLADA2GLTF/JSON/JSONValue.cpp b/converter/COLLADA2GLTF/JSON/JSONValue.cpp index 2ab0f1bf9f..186ae1e006 100644 --- a/converter/COLLADA2GLTF/JSON/JSONValue.cpp +++ b/converter/COLLADA2GLTF/JSON/JSONValue.cpp @@ -39,8 +39,13 @@ namespace GLTF JSONValue::~JSONValue() { } + +// static void __eval(JSONValue* value, void *context) { + // value->evaluate(context); + //} void JSONValue::write(GLTFWriter* writer, void* context) { + //value->apply(__eval, context); writer->write(this, context); } @@ -78,6 +83,10 @@ namespace GLTF (*func)(this, context); } + void JSONValue::apply(JSONValueApplier* applier, void* context) { + applier->apply(this, context); + } + bool JSONValue::isEqualTo(JSONValue *value) { if (value->getJSONType() != this->getJSONType()) return false; @@ -86,5 +95,4 @@ namespace GLTF return false; } - } \ No newline at end of file diff --git a/converter/COLLADA2GLTF/JSON/JSONValue.h b/converter/COLLADA2GLTF/JSON/JSONValue.h index 06d0f665d5..0455721ab2 100644 --- a/converter/COLLADA2GLTF/JSON/JSONValue.h +++ b/converter/COLLADA2GLTF/JSON/JSONValue.h @@ -30,6 +30,13 @@ namespace GLTF { class JSONValue; + + class JSONValueApplier { + public: + virtual void apply(JSONValue* value, void* context) = 0; + virtual ~JSONValueApplier() {}; + }; + typedef void (*JSONValueApplierFunc)(JSONValue* , void* /*context*/); class GLTFWriter; @@ -47,13 +54,15 @@ namespace GLTF virtual void evaluate(void*); virtual JSONType getJSONType() = 0; - + virtual std::string valueType() = 0; + virtual void apply(JSONValueApplierFunc, void* context); + virtual void apply(JSONValueApplier*, void* context); //consider overloading == later, but for now we are transitioning, so relying on isEqualTo implicitly provides more control over what/when comparaison are done virtual bool isEqualTo(JSONValue* value); - private: + std::string _type; }; } diff --git a/converter/COLLADA2GLTF/convert/animationConverter.cpp b/converter/COLLADA2GLTF/convert/animationConverter.cpp index e91cdc72e0..e102b1f65a 100644 --- a/converter/COLLADA2GLTF/convert/animationConverter.cpp +++ b/converter/COLLADA2GLTF/convert/animationConverter.cpp @@ -132,8 +132,8 @@ namespace GLTF for (size_t k = 0 ; k < cvtAnimation->getCount() ; k++) { size_t offset = k * 3; shared_ptr translate(new COLLADAFW::Translate(translations[offset + 0], - translations[offset + 1], - translations[offset + 2])); + translations[offset + 1], + translations[offset + 2])); animationFlattener->insertTransformAtTime(transformID, translate, timeValues[k]); } } else if (path == "scale") { @@ -144,36 +144,35 @@ namespace GLTF for (size_t k = 0 ; k < cvtAnimation->getCount() ; k++) { size_t offset = k * 3; shared_ptr scale(new COLLADAFW::Scale(scales[offset + 0], - scales[offset + 1], - scales[offset + 2])); + scales[offset + 1], + scales[offset + 2])); animationFlattener->insertTransformAtTime(transformID, scale, timeValues[k]); } } } } - } - + } return true; case COLLADAFW::AnimationList::ANGLE: { //the angles to radians necessary convertion is done within the animationFlattener //but it might be better to make it before... - for (size_t animatedTargetIndex = 0 ; animatedTargetIndex < animatedTargets->size() ; animatedTargetIndex++) { + for (size_t animatedTargetIndex = 0; animatedTargetIndex < animatedTargets->size(); animatedTargetIndex++) { shared_ptr animatedTarget = (*animatedTargets)[animatedTargetIndex]; std::string targetID = animatedTarget->getString(kTarget); if (asset->_uniqueIDToOpenCOLLADAObject.count(targetID) != 0) { cvtAnimation->targets()->setValue(targetID, animatedTarget); - + std::string path = animatedTarget->getString("path"); if (path == "rotation") { std::string transformID = animatedTarget->getString("transformId"); ANIMATIONFLATTENER_FOR_PATH_AND_TARGETID(path, targetID); - + float* timeValues = (float*)timeBufferView->getBufferDataByApplyingOffset(); float* rotations = (float*)bufferView->getBufferDataByApplyingOffset(); - for (size_t k = 0 ; k < cvtAnimation->getCount() ; k++) { + for (size_t k = 0; k < cvtAnimation->getCount(); k++) { animationFlattener->insertValueAtTime(transformID, rotations[k], 3, timeValues[k]); } - } + } } } } @@ -183,19 +182,19 @@ namespace GLTF case COLLADAFW::AnimationList::POSITION_Z: { int index = animationClass - COLLADAFW::AnimationList::POSITION_X; - for (size_t animatedTargetIndex = 0 ; animatedTargetIndex < animatedTargets->size() ; animatedTargetIndex++) { + for (size_t animatedTargetIndex = 0; animatedTargetIndex < animatedTargets->size(); animatedTargetIndex++) { shared_ptr animatedTarget = (*animatedTargets)[animatedTargetIndex]; std::string targetID = animatedTarget->getString(kTarget); if (asset->_uniqueIDToOpenCOLLADAObject.count(targetID) != 0) { cvtAnimation->targets()->setValue(targetID, animatedTarget); std::string path = animatedTarget->getString("path"); std::string transformID = animatedTarget->getString("transformId"); - + ANIMATIONFLATTENER_FOR_PATH_AND_TARGETID(path, targetID); - + float* timeValues = (float*)timeBufferView->getBufferDataByApplyingOffset(); float* values = (float*)bufferView->getBufferDataByApplyingOffset(); - for (size_t k = 0 ; k < cvtAnimation->getCount() ; k++) { + for (size_t k = 0; k < cvtAnimation->getCount(); k++) { animationFlattener->insertValueAtTime(transformID, values[k], index, timeValues[k]); } } @@ -219,30 +218,80 @@ namespace GLTF } break; } - + return false; } - + shared_ptr convertOpenCOLLADAAnimationToGLTFAnimation(const COLLADAFW::Animation* animation, GLTF::GLTFAsset *asset) { shared_ptr cvtAnimation(new GLTFAnimation()); if (animation->getAnimationType() == COLLADAFW::Animation::ANIMATION_CURVE) { shared_ptr animationParameters = cvtAnimation->parameters(); - + const COLLADAFW::AnimationCurve *animationCurve = (const COLLADAFW::AnimationCurve*)animation; - + //This needs to be fixed when re-working: https://github.com/KhronosGroup/glTF/issues/158 //especially, this point: "by default the converter should replicate COLLADA animations layout (not yet done), but an option should allow to have one animation per target. (this is actually the case)." std::string animationID = uniqueIdWithType(kAnimation, animation->getUniqueId()); - + cvtAnimation->setID(animationID); - + cvtAnimation->setCount(animationCurve->getKeyCount()); - + /** Returns the input values of the animation. */ const COLLADAFW::FloatOrDoubleArray &inputArray = animationCurve->getInputValues(); const COLLADAFW::FloatOrDoubleArray &outputArray = animationCurve->getOutputValues(); + + // Scales any distance values if needed + if (asset->getDistanceScale() != 1.0) + { + bool bNeedsScale = false; + const COLLADAFW::PhysicalDimensionArray& dimensions = animationCurve->getOutPhysicalDimensions(); + size_t numDimensions = animationCurve->getOutDimension(); + for (size_t dimIndex = 0; dimIndex < numDimensions; ++dimIndex) + { + if (dimensions[dimIndex] == COLLADAFW::PHYSICAL_DIMENSION_LENGTH) + { + bNeedsScale = true; + break; + } + } + + if (bNeedsScale) + { + switch (outputArray.getType()) { + case COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT: { + COLLADAFW::FloatArray* array = const_cast(outputArray.getFloatValues()); + float* fArray = array->getData(); + for (size_t index = 0; index < array->getCount(); ++index) + { + if (dimensions[index % numDimensions] == COLLADAFW::PHYSICAL_DIMENSION_LENGTH) + { + fArray[index] *= (float)asset->getDistanceScale(); + } + } + } + break; + case COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE: { + COLLADAFW::DoubleArray* array = const_cast(outputArray.getDoubleValues()); + double* dArray = array->getData(); + for (size_t index = 0; index < array->getCount(); ++index) + { + if (dimensions[index % numDimensions] == COLLADAFW::PHYSICAL_DIMENSION_LENGTH) + { + dArray[index] *= asset->getDistanceScale(); + } + } + } + break; + default: + case COLLADAFW::MeshVertexData::DATA_TYPE_UNKNOWN: + //FIXME report error + break; + }; + } + } const std::string originalID = animationCurve->getOriginalId(); diff --git a/converter/COLLADA2GLTF/convert/meshConverter.cpp b/converter/COLLADA2GLTF/convert/meshConverter.cpp index 2a746eff37..c92188611d 100644 --- a/converter/COLLADA2GLTF/convert/meshConverter.cpp +++ b/converter/COLLADA2GLTF/convert/meshConverter.cpp @@ -88,6 +88,73 @@ namespace GLTF return bufferView; } + + static void __ScaleOpenCOLLADAMeshVertexData(const COLLADAFW::MeshVertexData &vertexData, double distanceScale) + { + if (distanceScale == 1.0) + return; + + size_t length; + size_t byteOffset = 0; + size_t inputLength = 0; + + size_t setCount = vertexData.getNumInputInfos(); + bool unpatchedOpenCOLLADA = (setCount == 0); // reliable heuristic to know if the input have not been set + + if (unpatchedOpenCOLLADA) + setCount = 1; + + for (size_t indexOfSet = 0; indexOfSet < setCount; indexOfSet++) { + if (!unpatchedOpenCOLLADA) { + inputLength = vertexData.getLength(indexOfSet); + } + else { + // for unpatched version of OpenCOLLADA we need this work-around. + inputLength = vertexData.getLength(0); + } + + length = inputLength ? inputLength : vertexData.getValuesCount(); + unsigned char *sourceData = 0; + size_t sourceSize = 0; + + switch (vertexData.getType()) { + case COLLADAFW::MeshVertexData::DATA_TYPE_FLOAT: { + const COLLADAFW::FloatArray* array = vertexData.getFloatValues(); + + sourceData = (unsigned char*)array->getData() + byteOffset; + sourceSize = length * sizeof(float); + + float *floatSourceData = (float*)sourceData; + for (size_t indexFloat = 0; indexFloat < length; ++indexFloat) + { + floatSourceData[indexFloat] *= (float)distanceScale; + } + + byteOffset += sourceSize; //Doh! - OpenCOLLADA store all sets contiguously in the same array + } + break; + case COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE: { + const COLLADAFW::DoubleArray* array = vertexData.getDoubleValues(); + + sourceData = (unsigned char*)array->getData() + byteOffset; + sourceSize = length * sizeof(double); + + double *doubleSourceData = (double*)sourceData; + for (size_t indexFloat = 0; indexFloat < length; ++indexFloat) + { + doubleSourceData[indexFloat] *= distanceScale; + } + + byteOffset += sourceSize; //Doh! - OpenCOLLADA store all sets contiguously in the same array + } + break; + default: + case COLLADAFW::MeshVertexData::DATA_TYPE_UNKNOWN: + //FIXME report error + break; + } + } + } static unsigned int __ConvertOpenCOLLADAMeshVertexDataToGLTFAccessors(const COLLADAFW::MeshVertexData &vertexData, GLTFMesh* mesh, @@ -141,20 +208,20 @@ namespace GLTF sourceData = (unsigned char*)array->getData() + byteOffset; sourceSize = length * sizeof(float); - byteOffset += sourceSize; //Doh! - OpenCOLLADA store all sets contiguously in the same array + byteOffset += sourceSize; //Doh! - OpenCOLLADA store all sets contiguously in the same array } break; case COLLADAFW::MeshVertexData::DATA_TYPE_DOUBLE: { - //FIXME: handle this - /* - sourceType = DOUBLE; - - const DoubleArray& array = vertexData.getDoubleValues()[indexOfSet]; - const size_t count = array.getCount(); - sourceData = (void*)array.getData(); - sourceSize = length * sizeof(double); - */ - // Warning if can't make "safe" conversion + /* + componentType = GLTF::DOUBLE; + stride = sizeof(double) * componentsPerElement; + const COLLADAFW::DoubleArray* array = vertexData.getDoubleValues(); + + sourceData = (unsigned char*)array->getData() + byteOffset; + sourceSize = length * sizeof(double); + + byteOffset += sourceSize; //Doh! - OpenCOLLADA store all sets contiguously in the same array + */ } break; @@ -446,20 +513,22 @@ namespace GLTF std::vector< shared_ptr > allPrimitiveIndicesVectors; + __ScaleOpenCOLLADAMeshVertexData(openCOLLADAMesh->getPositions(), asset->getDistanceScale()); + // get all primitives for (size_t i = 0 ; i < primitiveCount ; i++) { - const COLLADAFW::MeshPrimitive::PrimitiveType primitiveType = primitives[i]->getPrimitiveType(); if ((primitiveType != COLLADAFW::MeshPrimitive::TRIANGLES) && //(primitiveType != COLLADAFW::MeshPrimitive::TRIANGLE_STRIPS) && (primitiveType != COLLADAFW::MeshPrimitive::POLYLIST) && - (primitiveType != COLLADAFW::MeshPrimitive::POLYGONS)) { - - + (primitiveType != COLLADAFW::MeshPrimitive::POLYGONS) && + //(primitiveType != COLLADAFW::MeshPrimitive::LINE_STRIPS) && + (primitiveType != COLLADAFW::MeshPrimitive::LINES)) { + static bool printedOnce = false; if (!printedOnce) { if (asset->converterConfig()->boolForKeyPath("verboseLogging")) { - asset->log("WARNING: some primitives failed to convert\nCurrently supported are TRIANGLES, POLYLIST and POLYGONS\nMore: https://github.com/KhronosGroup/glTF/issues/129\nand https://github.com/KhronosGroup/glTF/issues/135\n"); + asset->log("WARNING: some primitives failed to convert\nCurrently supported are TRIANGLES, POLYLIST, POLYGONS and LINES\nMore: https://github.com/KhronosGroup/glTF/issues/129\nand https://github.com/KhronosGroup/glTF/issues/135\n"); printedOnce = true; } } diff --git a/converter/COLLADA2GLTF/dependencies/OpenCOLLADA b/converter/COLLADA2GLTF/dependencies/OpenCOLLADA index 64a260c27b..ddf8f47ab8 160000 --- a/converter/COLLADA2GLTF/dependencies/OpenCOLLADA +++ b/converter/COLLADA2GLTF/dependencies/OpenCOLLADA @@ -1 +1 @@ -Subproject commit 64a260c27be9178b4ebfbd5be8035ee4723e2a7f +Subproject commit ddf8f47ab81a7a6cc4e47f47eb680656ffb6edca diff --git a/converter/COLLADA2GLTF/helpers/encodingHelpers.cpp b/converter/COLLADA2GLTF/helpers/encodingHelpers.cpp new file mode 100644 index 0000000000..8a88d1cfdf --- /dev/null +++ b/converter/COLLADA2GLTF/helpers/encodingHelpers.cpp @@ -0,0 +1,181 @@ +// Copyright (c) Analytical Graphics, Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +#include "GLTF.h" +#include "encodingHelpers.h" + +using namespace rapidjson; +#if __cplusplus <= 199711L +using namespace std::tr1; +#endif +using namespace std; + +namespace GLTF +{ + inline bool base64_valid(char c) + { + if (c >= 'A' && c <= 'Z') + return true; + if (c >= 'a' && c <= 'z') + return true; + if (c >= '0' && c <= '9') + return true; + if (c == '+' || c == '/' || c == '=') + return true; + return false; + } + + inline char base64_encode(unsigned char uc) + { + if (uc < 26) + return 'A' + uc; + if (uc < 52) + return 'a' + (uc - 26); + if (uc < 62) + return '0' + (uc - 52); + if (uc == 62) + return '+'; + return '/'; + } + + inline unsigned char base64_decode(char c) + { + if (c >= 'A' && c <= 'Z') + return c - 'A'; + if (c >= 'a' && c <= 'z') + return c - 'a' + 26; + if (c >= '0' && c <= '9') + return c - '0' + 52; + if (c == '+') + return 62; + return 63; + } + + + std::string base64_encode(const std::string& _data) + { + std::string retval; + if (_data.size() == 0) + return retval; + for (unsigned int i = 0; i<_data.size(); i += 3) + { + unsigned char by1 = 0, by2 = 0, by3 = 0; + by1 = _data[i]; + if (i + 1<_data.size()) + by2 = _data[i + 1]; + if (i + 2<_data.size()) + by3 = _data[i + 2]; + + unsigned char by4 = 0, by5 = 0, by6 = 0, by7 = 0; + by4 = by1 >> 2; + by5 = ((by1 & 0x3) << 4) | (by2 >> 4); + by6 = ((by2 & 0xf) << 2) | (by3 >> 6); + by7 = by3 & 0x3f; + retval += base64_encode(by4); + retval += base64_encode(by5); + if (i + 1<_data.size()) + retval += base64_encode(by6); + else + retval += "="; + + if (i + 2<_data.size()) + retval += base64_encode(by7); + else + retval += "="; + } + return retval; + } + + std::string base64_decode(const std::string& _str) + { + std::string str; + for (unsigned int j = 0; j<_str.length(); j++) + { + if (base64_valid(_str[j])) + str += _str[j]; + } + std::string retval; + if (str.length() == 0) + return retval; + for (unsigned int i = 0; i> 4)); + if (c3 != '=') + retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2)); + if (c4 != '=') + retval.push_back(((by3 & 0x3) << 6) | by4); + } + return retval; + } + + std::string create_dataUri(const std::string& content, const std::string& contentType, bool base64Encode) + { + std::string result = "data:" + contentType; + if (base64Encode) + result += ";base64," + base64_encode(content); + else + result += "," + content; + + return result; + } + + bool is_dataUri(const std::string& _str) + { + return _str.find("data:") == 0; + } + + std::string decode_dataUri(const std::string& uri) + { + std::string result; + if (is_dataUri(uri)) + { + std::string::size_type pos = uri.find(','); + if (pos != std::string::npos) + { + if (uri.find(";base64") < pos) + { + result = base64_decode(uri.substr(pos + 1)); + } + else + { + result = uri.substr(pos + 1); + } + } + } + + return result; + } +} diff --git a/converter/COLLADA2GLTF/helpers/encodingHelpers.h b/converter/COLLADA2GLTF/helpers/encodingHelpers.h new file mode 100644 index 0000000000..bedcf70ca1 --- /dev/null +++ b/converter/COLLADA2GLTF/helpers/encodingHelpers.h @@ -0,0 +1,38 @@ +// Copyright (c) Analytical Graphics, Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +#ifndef __ENCODING_HELPERS__ +#define __ENCODING_HELPERS__ + +#include + +namespace GLTF +{ + std::string base64_encode(const std::string& _data); + std::string base64_decode(const std::string& _str); + std::string create_dataUri(const std::string& content, const std::string& contentType = "application/octet-stream", bool base64Encode = true); + bool is_dataUri(const std::string& _str); + std::string decode_dataUri(const std::string& uri); +} + +#endif \ No newline at end of file diff --git a/converter/COLLADA2GLTF/helpers/geometryHelpers.cpp b/converter/COLLADA2GLTF/helpers/geometryHelpers.cpp index 58d17b393a..c5db19e3f8 100644 --- a/converter/COLLADA2GLTF/helpers/geometryHelpers.cpp +++ b/converter/COLLADA2GLTF/helpers/geometryHelpers.cpp @@ -584,15 +584,11 @@ namespace GLTF { shared_ptr destinationMesh = nullptr; bool splitNeeded = sourceMesh->getMeshAttribute(GLTF::POSITION, 0)->getCount() >= maximumIndicesCount; - GLTF::JSONValueVector primitives = sourceMesh->getPrimitives()->values(); - - for (size_t i = 0 ; i < primitives.size() ; i++) { - shared_ptr primitive = static_pointer_cast(primitives[i]); - } - if (!splitNeeded) return nullptr; + GLTF::JSONValueVector primitives = sourceMesh->getPrimitives()->values(); + SubMeshContext *subMesh = nullptr; bool stillHavePrimitivesElementsToBeProcessed = false; @@ -607,7 +603,6 @@ namespace GLTF continue; if (subMesh == nullptr) { - if (targetMesh == nullptr) { subMesh = __CreateSubMeshContext(sourceMesh->getID()); targetMesh = subMesh->targetMesh; @@ -686,6 +681,32 @@ namespace GLTF } } } + else if (primitive->getPrimitive() == profile->getGLenumForString("LINES")) { + unsigned int indicesPerElementCount = 2; + primitiveCount = (unsigned int)indices->getCount() / indicesPerElementCount; + for (j = nextPrimitiveIndex; j < primitiveCount; j++) { + unsigned int *indicesPtrAtPrimitiveIndex = indicesPtr + (j * indicesPerElementCount); + //will we still have room to store coming indices from this mesh ? + //note: this is tied to the policy described above in (*) + size_t currentSize = subMesh->indexToRemappedIndex.size(); + if ((currentSize + indicesPerElementCount) < maximumIndicesCount) { + __PushAndRemapIndicesInSubMesh(subMesh, indicesPtrAtPrimitiveIndex, indicesPerElementCount); + + //build the indices for the primitive to be added to the subMesh + targetIndicesPtr[targetIndicesCount] = subMesh->indexToRemappedIndex[indicesPtrAtPrimitiveIndex[0]]; + targetIndicesPtr[targetIndicesCount + 1] = subMesh->indexToRemappedIndex[indicesPtrAtPrimitiveIndex[1]]; + + targetIndicesCount += indicesPerElementCount; + + nextPrimitiveIndex++; + } + else { + allNextPrimitiveIndices[i] = -1; + primitiveCompleted = true; + break; + } + } + } allNextPrimitiveIndices[i] = nextPrimitiveIndex; diff --git a/converter/COLLADA2GLTF/main.cpp b/converter/COLLADA2GLTF/main.cpp index 9869d650f0..14ca709c24 100644 --- a/converter/COLLADA2GLTF/main.cpp +++ b/converter/COLLADA2GLTF/main.cpp @@ -84,7 +84,8 @@ static const OptionDescriptor options[] = { { "v", no_argument, "-v -> print version" }, { "s", no_argument, "-s -> experimental mode"}, { "h", no_argument, "-h -> help" }, - { "r", no_argument, "-r -> verbose logging" } + { "r", no_argument, "-r -> verbose logging" }, + { "e", no_argument, "-e -> embed all resources as Data URIs" } }; static void buildOptions() { @@ -143,14 +144,14 @@ static bool processArgs(int argc, char * const * argv, GLTF::GLTFAsset *asset) { if (argc == 2) { if (fileExists(argv[1])) { asset->setInputFilePath(argv[1]); - asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "json")); + asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "gltf")); return true; } } shared_ptr converterConfig = asset->converterConfig(); - while ((ch = getopt_long(argc, argv, "z:f:o:b:a:idpl:c:m:vhsr", opt_options, 0)) != -1) { + while ((ch = getopt_long(argc, argv, "z:f:o:b:a:idpl:c:m:vhsre", opt_options, 0)) != -1) { switch (ch) { case 'z': converterConfig->initWithPath(optarg); @@ -167,7 +168,7 @@ static bool processArgs(int argc, char * const * argv, GLTF::GLTFAsset *asset) { hasOutputPath = true; break; case 'o': - asset->setOutputFilePath(replacePathExtensionWith(optarg, "json")); + asset->setOutputFilePath(replacePathExtensionWith(optarg, "gltf")); hasOutputPath = true; break; case 'i': @@ -223,7 +224,11 @@ static bool processArgs(int argc, char * const * argv, GLTF::GLTFAsset *asset) { case 'r': converterConfig->config()->setBool("verboseLogging", true); break; - + + case 'e': + converterConfig->config()->setBool("embedResources", true); + asset->setEmbedResources(true); + break; default: shouldShowHelp = true; break; @@ -236,7 +241,7 @@ static bool processArgs(int argc, char * const * argv, GLTF::GLTFAsset *asset) { } if (!hasOutputPath & hasInputPath) { - asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "json")); + asset->setOutputFilePath(replacePathExtensionWith(asset->getInputFilePath(), "gltf")); } return true; diff --git a/converter/COLLADA2GLTF/shaders/commonProfileShaders.cpp b/converter/COLLADA2GLTF/shaders/commonProfileShaders.cpp index cbc416e2b6..72a5f8ed7e 100644 --- a/converter/COLLADA2GLTF/shaders/commonProfileShaders.cpp +++ b/converter/COLLADA2GLTF/shaders/commonProfileShaders.cpp @@ -26,7 +26,8 @@ #include "GLTFAsset.h" #include "commonProfileShaders.h" -#ifndef WIN32 +#include "helpers/encodingHelpers.h" +#ifdef USE_LIBPNG #include "png.h" #endif @@ -48,7 +49,7 @@ using namespace std; namespace GLTF { #define PNGSIGSIZE 8 -#ifndef WIN32 +#ifdef USE_LIBPNG void userReadData(png_structp pngPtr, png_bytep data, png_size_t length) { ((std::istream*)png_get_io_ptr(pngPtr))->read((char*)data, length); } @@ -56,16 +57,27 @@ namespace GLTF //thanks to piko3d.com libpng tutorial here static bool imageHasAlpha(const char *path) { -#ifndef WIN32 +#ifdef USE_LIBPNG bool hasAlpha = false; - std::ifstream source; + std::shared_ptr source; + if (is_dataUri(path)) + { + std::stringstream* sin = new std::stringstream(); + sin->str(decode_dataUri(path)); + source.reset(sin); + } + else + { + std::ifstream* fin = new std::ifstream(); + fin->open(path, ios::in | ios::binary); + source.reset(fin); + } - source.open(path, ios::in | ios::binary); // printf("path:%s\n",path); png_byte pngsig[PNGSIGSIZE]; int isPNG = 0; - source.read((char*)pngsig, PNGSIGSIZE); - if (!source.good()) + source->read((char*)pngsig, PNGSIGSIZE); + if (!source->good()) return false; isPNG = png_sig_cmp(pngsig, 0, PNGSIGSIZE) == 0; if (isPNG) { @@ -73,7 +85,7 @@ namespace GLTF if (pngPtr) { png_infop infoPtr = png_create_info_struct(pngPtr); if (infoPtr) { - png_set_read_fn(pngPtr,(png_voidp)&source, userReadData); + png_set_read_fn(pngPtr,(png_voidp)source.get(), userReadData); png_set_sig_bytes(pngPtr, PNGSIGSIZE); png_read_info(pngPtr, infoPtr); png_uint_32 color_type = png_get_color_type(pngPtr, infoPtr); @@ -93,8 +105,6 @@ namespace GLTF } } - source.close(); - return hasAlpha; #else return false; @@ -172,7 +182,7 @@ namespace GLTF if (images->contains(sourceUID)) { shared_ptr image = images->getObject(sourceUID); - std::string imagePath = image->getString("path"); + std::string imagePath = image->getString(kURI); COLLADABU::URI inputURI(asset->getInputFilePath().c_str()); std::string imageFullPath = inputURI.getPathDir() + imagePath; if (imageHasAlpha(imageFullPath.c_str())) @@ -305,19 +315,26 @@ namespace GLTF shared_ptr shaderObject = shadersObject->getObject(shaderId); shaderObject = shared_ptr (new GLTF::JSONObject()); - std::string path = shaderId+".glsl"; shadersObject->setValue(shaderId, shaderObject); - shaderObject->setString("path", asset->resourceOuputPathForPath(path)); - shaderObject->setUnsignedInt32(kType, type); - //also write the file on disk - if (shaderString.size() > 0) { - COLLADABU::URI outputURI(asset->getOutputFilePath()); - std::string shaderPath = outputURI.getPathDir() + path; - GLTF::GLTFUtils::writeData(shaderPath, "w",(unsigned char*)shaderString.c_str(), shaderString.size()); - if (!CONFIG_BOOL(asset, "outputProgress") && asset->converterConfig()->boolForKeyPath("verboseLogging")) { - asset->log("[shader]: %s\n", shaderPath.c_str()); - } - } + shaderObject->setUnsignedInt32("type", type); + if (asset->getEmbedResources()) + { + shaderObject->setString(kURI, create_dataUri(shaderString, "text/plain")); + } + else + { + std::string path = shaderId + ".glsl"; + shaderObject->setString(kURI, COLLADABU::URI::uriEncode(asset->resourceOuputPathForPath(path))); + //also write the file on disk + if (shaderString.size() > 0) { + COLLADABU::URI outputURI(asset->getOutputFilePath()); + std::string shaderPath = outputURI.getPathDir() + path; + GLTF::GLTFUtils::writeData(shaderPath, "w", (unsigned char*)shaderString.c_str(), shaderString.size()); + if (!CONFIG_BOOL(asset, "outputProgress") && asset->converterConfig()->boolForKeyPath("verboseLogging")) { + asset->log("[shader]: %s\n", shaderPath.c_str()); + } + } + } } return true; diff --git a/model/SuperMurdoch/SuperMurdoch.bin b/model/SuperMurdoch/SuperMurdoch.bin old mode 100755 new mode 100644 index 3eb6dfd537..d42ccaa135 Binary files a/model/SuperMurdoch/SuperMurdoch.bin and b/model/SuperMurdoch/SuperMurdoch.bin differ diff --git a/model/SuperMurdoch/SuperMurdoch.json b/model/SuperMurdoch/SuperMurdoch.gltf old mode 100755 new mode 100644 similarity index 60% rename from model/SuperMurdoch/SuperMurdoch.json rename to model/SuperMurdoch/SuperMurdoch.gltf index 5e84a2aefd..7af8eed19f --- a/model/SuperMurdoch/SuperMurdoch.json +++ b/model/SuperMurdoch/SuperMurdoch.gltf @@ -1,8 +1,8 @@ { "accessors": { "accessor_100": { - "bufferView": "bufferView_4848", - "byteOffset": 130272, + "bufferView": "bufferView_5233", + "byteOffset": 130944, "byteStride": 12, "count": 64, "max": [ @@ -18,8 +18,8 @@ "type": 35665 }, "accessor_1000": { - "bufferView": "bufferView_4848", - "byteOffset": 129312, + "bufferView": "bufferView_5233", + "byteOffset": 129984, "byteStride": 12, "count": 4, "max": [ @@ -35,32 +35,32 @@ "type": 35665 }, "accessor_1016": { - "bufferView": "bufferView_4847", - "byteOffset": 25818, + "bufferView": "bufferView_5232", + "byteOffset": 25958, "byteStride": 0, "count": 12, "type": 5123 }, "accessor_1018": { - "bufferView": "bufferView_4848", - "byteOffset": 129360, + "bufferView": "bufferView_5233", + "byteOffset": 130032, "byteStride": 12, "count": 6, "max": [ - 114.036, - 418.633, - 59.1894 + 2.8965, + 10.6333, + 1.50341 ], "min": [ - 114.036, - 368.715, - 38.3036 + 2.8965, + 9.36536, + 0.972912 ], "type": 35665 }, "accessor_1020": { - "bufferView": "bufferView_4848", - "byteOffset": 129432, + "bufferView": "bufferView_5233", + "byteOffset": 130104, "byteStride": 12, "count": 6, "max": [ @@ -76,32 +76,32 @@ "type": 35665 }, "accessor_1036": { - "bufferView": "bufferView_4847", - "byteOffset": 26070, + "bufferView": "bufferView_5232", + "byteOffset": 26210, "byteStride": 0, "count": 39, "type": 5123 }, "accessor_1038": { - "bufferView": "bufferView_4848", - "byteOffset": 131040, + "bufferView": "bufferView_5233", + "byteOffset": 131712, "byteStride": 12, "count": 25, "max": [ - 116.095, - 425.567, - 78.0785 + 2.9488, + 10.8094, + 1.98319 ], "min": [ - 114.036, - 295.596, - 63.7716 + 2.8965, + 7.50813, + 1.6198 ], "type": 35665 }, "accessor_1040": { - "bufferView": "bufferView_4848", - "byteOffset": 131340, + "bufferView": "bufferView_5233", + "byteOffset": 132012, "byteStride": 12, "count": 25, "max": [ @@ -117,32 +117,32 @@ "type": 35665 }, "accessor_1056": { - "bufferView": "bufferView_4847", - "byteOffset": 26148, + "bufferView": "bufferView_5232", + "byteOffset": 26288, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_1058": { - "bufferView": "bufferView_4848", - "byteOffset": 131640, + "bufferView": "bufferView_5233", + "byteOffset": 132312, "byteStride": 12, "count": 4, "max": [ - 97.4956, - 424.016, - 88.6204 + 2.47639, + 10.77, + 2.25096 ], "min": [ - 22.3983, - 271.597, - 88.6204 + 0.568916, + 6.89855, + 2.25096 ], "type": 35665 }, "accessor_1060": { - "bufferView": "bufferView_4848", - "byteOffset": 131688, + "bufferView": "bufferView_5233", + "byteOffset": 132360, "byteStride": 12, "count": 4, "max": [ @@ -157,33 +157,177 @@ ], "type": 35665 }, + "accessor_1070": { + "bufferView": "bufferView_5232", + "byteOffset": 26300, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_1072": { + "bufferView": "bufferView_5233", + "byteOffset": 132408, + "byteStride": 12, + "count": 2, + "max": [ + 2.47639, + 6.89855, + 2.25096 + ], + "min": [ + 2.47639, + 6.85963, + 2.25096 + ], + "type": 35665 + }, "accessor_1082": { - "bufferView": "bufferView_4847", - "byteOffset": 26160, + "bufferView": "bufferView_5232", + "byteOffset": 26304, "byteStride": 0, - "count": 156, + "count": 8, "type": 5123 }, "accessor_1084": { - "bufferView": "bufferView_4848", - "byteOffset": 131736, + "bufferView": "bufferView_5233", + "byteOffset": 132432, + "byteStride": 12, + "count": 4, + "max": [ + 4.78516, + 9.06295, + 2.16092 + ], + "min": [ + 4.68257, + 8.06649, + 1.98319 + ], + "type": 35665 + }, + "accessor_1094": { + "bufferView": "bufferView_5232", + "byteOffset": 26320, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1096": { + "bufferView": "bufferView_5233", + "byteOffset": 132480, + "byteStride": 12, + "count": 4, + "max": [ + 4.78516, + 10.3383, + 2.16092 + ], + "min": [ + 4.68257, + 9.34185, + 1.98319 + ], + "type": 35665 + }, + "accessor_1106": { + "bufferView": "bufferView_5232", + "byteOffset": 26336, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1108": { + "bufferView": "bufferView_5233", + "byteOffset": 132528, + "byteStride": 12, + "count": 4, + "max": [ + 2.8965, + 9.06295, + 2.16092 + ], + "min": [ + 2.8965, + 7.50813, + 1.98319 + ], + "type": 35665 + }, + "accessor_1118": { + "bufferView": "bufferView_5232", + "byteOffset": 26352, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_1120": { + "bufferView": "bufferView_5233", + "byteOffset": 132576, + "byteStride": 12, + "count": 6, + "max": [ + 2.8965, + 10.9136, + 2.16092 + ], + "min": [ + 2.8422, + 9.34185, + 1.98319 + ], + "type": 35665 + }, + "accessor_1130": { + "bufferView": "bufferView_5232", + "byteOffset": 26376, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1132": { + "bufferView": "bufferView_5233", + "byteOffset": 132648, + "byteStride": 12, + "count": 4, + "max": [ + 2.8158, + 10.9219, + 2.16092 + ], + "min": [ + 2.8158, + 7.4829, + 1.98319 + ], + "type": 35665 + }, + "accessor_1148": { + "bufferView": "bufferView_5232", + "byteOffset": 26392, + "byteStride": 0, + "count": 156, + "type": 5123 + }, + "accessor_1150": { + "bufferView": "bufferView_5233", + "byteOffset": 132696, "byteStride": 12, "count": 80, "max": [ - 84.1272, - 113.249, - 11.4213 + 2.13683, + 2.87653, + 0.2901 ], "min": [ -0, - 13.2862, - 5.28346 + 0.33747, + 0.1342 ], "type": 35665 }, - "accessor_1086": { - "bufferView": "bufferView_4848", - "byteOffset": 132696, + "accessor_1152": { + "bufferView": "bufferView_5233", + "byteOffset": 133656, "byteStride": 12, "count": 80, "max": [ @@ -198,33 +342,40 @@ ], "type": 35665 }, - "accessor_1102": { - "bufferView": "bufferView_4847", - "byteOffset": 26472, + "accessor_116": { + "bufferView": "bufferView_5232", + "byteOffset": 27826, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_1168": { + "bufferView": "bufferView_5232", + "byteOffset": 26704, "byteStride": 0, "count": 546, "type": 5123 }, - "accessor_1104": { - "bufferView": "bufferView_4848", - "byteOffset": 133656, + "accessor_1170": { + "bufferView": "bufferView_5233", + "byteOffset": 134616, "byteStride": 12, "count": 202, "max": [ - 155.059, - 110.057, - 108.24 + 3.93849, + 2.79545, + 2.74928 ], "min": [ - 74.9688, - 16.4785, - -3.05278 + 1.90421, + 0.418553, + -0.0775407 ], "type": 35665 }, - "accessor_1106": { - "bufferView": "bufferView_4848", - "byteOffset": 136080, + "accessor_1172": { + "bufferView": "bufferView_5233", + "byteOffset": 137040, "byteStride": 12, "count": 202, "max": [ @@ -239,33 +390,50 @@ ], "type": 35665 }, - "accessor_1122": { - "bufferView": "bufferView_4847", - "byteOffset": 27564, + "accessor_118": { + "bufferView": "bufferView_5233", + "byteOffset": 139632, + "byteStride": 12, + "count": 4, + "max": [ + 3.32293, + 0.681272, + 1.18238 + ], + "min": [ + 1.24117, + 0.681272, + 0.599124 + ], + "type": 35665 + }, + "accessor_1188": { + "bufferView": "bufferView_5232", + "byteOffset": 27796, "byteStride": 0, "count": 15, "type": 5123 }, - "accessor_1124": { - "bufferView": "bufferView_4848", - "byteOffset": 138504, + "accessor_1190": { + "bufferView": "bufferView_5233", + "byteOffset": 139464, "byteStride": 12, "count": 7, "max": [ - 152.611, - 91.3843, - 99.9819 + 3.87633, + 2.32116, + 2.53954 ], "min": [ - 141.872, - 35.1511, - 84.3742 + 3.60354, + 0.892839, + 2.1431 ], "type": 35665 }, - "accessor_1126": { - "bufferView": "bufferView_4848", - "byteOffset": 138588, + "accessor_1192": { + "bufferView": "bufferView_5233", + "byteOffset": 139548, "byteStride": 12, "count": 7, "max": [ @@ -280,33 +448,50 @@ ], "type": 35665 }, - "accessor_1142": { - "bufferView": "bufferView_4847", - "byteOffset": 27606, + "accessor_120": { + "bufferView": "bufferView_5233", + "byteOffset": 139680, + "byteStride": 12, + "count": 4, + "max": [ + 0, + 1, + 0 + ], + "min": [ + 0, + 1, + 0 + ], + "type": 35665 + }, + "accessor_1208": { + "bufferView": "bufferView_5232", + "byteOffset": 27838, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1144": { - "bufferView": "bufferView_4848", - "byteOffset": 138768, + "accessor_1210": { + "bufferView": "bufferView_5233", + "byteOffset": 139728, "byteStride": 12, "count": 4, "max": [ - 138.666, - 104.241, - 79.716 + 3.52212, + 2.64772, + 2.02479 ], "min": [ - 84.8631, - 22.2944, - 1.52523 + 2.15552, + 0.566278, + 0.0387408 ], "type": 35665 }, - "accessor_1146": { - "bufferView": "bufferView_4848", - "byteOffset": 138816, + "accessor_1212": { + "bufferView": "bufferView_5233", + "byteOffset": 139776, "byteStride": 12, "count": 4, "max": [ @@ -321,40 +506,33 @@ ], "type": 35665 }, - "accessor_116": { - "bufferView": "bufferView_4847", - "byteOffset": 27594, - "byteStride": 0, - "count": 6, - "type": 5123 - }, - "accessor_1162": { - "bufferView": "bufferView_4847", - "byteOffset": 27618, + "accessor_1228": { + "bufferView": "bufferView_5232", + "byteOffset": 27850, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1164": { - "bufferView": "bufferView_4848", - "byteOffset": 138864, + "accessor_1230": { + "bufferView": "bufferView_5233", + "byteOffset": 139824, "byteStride": 12, "count": 4, "max": [ - 140.934, - 89.9439, - 97.0579 + 3.57972, + 2.28458, + 2.46527 ], "min": [ - 112.637, - 36.5915, - 55.9354 + 2.86099, + 0.929424, + 1.42076 ], "type": 35665 }, - "accessor_1166": { - "bufferView": "bufferView_4848", - "byteOffset": 138912, + "accessor_1232": { + "bufferView": "bufferView_5233", + "byteOffset": 139872, "byteStride": 12, "count": 4, "max": [ @@ -369,50 +547,33 @@ ], "type": 35665 }, - "accessor_118": { - "bufferView": "bufferView_4848", - "byteOffset": 138672, - "byteStride": 12, - "count": 4, - "max": [ - 130.824, - 26.8217, - 46.5503 - ], - "min": [ - 48.8649, - 26.8217, - 23.5876 - ], - "type": 35665 - }, - "accessor_1182": { - "bufferView": "bufferView_4847", - "byteOffset": 27630, + "accessor_1248": { + "bufferView": "bufferView_5232", + "byteOffset": 27862, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1184": { - "bufferView": "bufferView_4848", - "byteOffset": 138960, + "accessor_1250": { + "bufferView": "bufferView_5233", + "byteOffset": 139920, "byteStride": 12, "count": 4, "max": [ - 107.787, - 96.3254, - 48.8865 + 2.73779, + 2.44667, + 1.24172 ], "min": [ - 84.341, - 30.21, - 14.813 + 2.14226, + 0.767334, + 0.376249 ], "type": 35665 }, - "accessor_1186": { - "bufferView": "bufferView_4848", - "byteOffset": 139008, + "accessor_1252": { + "bufferView": "bufferView_5233", + "byteOffset": 139968, "byteStride": 12, "count": 4, "max": [ @@ -427,39 +588,22 @@ ], "type": 35665 }, - "accessor_120": { - "bufferView": "bufferView_4848", - "byteOffset": 138720, - "byteStride": 12, - "count": 4, - "max": [ - 0, - 1, - 0 - ], - "min": [ - 0, - 1, - 0 - ], - "type": 35665 - }, - "accessor_1202": { - "bufferView": "bufferView_4847", - "byteOffset": 27642, + "accessor_1268": { + "bufferView": "bufferView_5232", + "byteOffset": 27874, "byteStride": 0, "count": 654, "type": 5123 }, - "accessor_1204": { - "bufferView": "bufferView_4848", - "byteOffset": 139056, + "accessor_1270": { + "bufferView": "bufferView_5233", + "byteOffset": 140016, "byteStride": 12, "count": 328, "max": [ - 119.894, - 440.781, - 88.6204 + 3.0453, + 11.1958, + 2.25096 ], "min": [ 0, @@ -468,9 +612,9 @@ ], "type": 35665 }, - "accessor_1206": { - "bufferView": "bufferView_4848", - "byteOffset": 142992, + "accessor_1272": { + "bufferView": "bufferView_5233", + "byteOffset": 143952, "byteStride": 12, "count": 328, "max": [ @@ -485,22 +629,22 @@ ], "type": 35665 }, - "accessor_1222": { - "bufferView": "bufferView_4847", - "byteOffset": 28950, + "accessor_1288": { + "bufferView": "bufferView_5232", + "byteOffset": 29182, "byteStride": 0, "count": 771, "type": 5123 }, - "accessor_1224": { - "bufferView": "bufferView_4848", - "byteOffset": 146928, + "accessor_1290": { + "bufferView": "bufferView_5233", + "byteOffset": 147888, "byteStride": 12, "count": 259, "max": [ - 119.894, - 263.946, - 88.6204 + 3.0453, + 6.70423, + 2.25096 ], "min": [ 0, @@ -509,9 +653,9 @@ ], "type": 35665 }, - "accessor_1226": { - "bufferView": "bufferView_4848", - "byteOffset": 150036, + "accessor_1292": { + "bufferView": "bufferView_5233", + "byteOffset": 150996, "byteStride": 12, "count": 259, "max": [ @@ -526,33 +670,33 @@ ], "type": 35665 }, - "accessor_1242": { - "bufferView": "bufferView_4847", - "byteOffset": 30492, + "accessor_1308": { + "bufferView": "bufferView_5232", + "byteOffset": 30724, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1244": { - "bufferView": "bufferView_4848", - "byteOffset": 153144, + "accessor_1310": { + "bufferView": "bufferView_5233", + "byteOffset": 154104, "byteStride": 12, "count": 4, "max": [ - 93.8884, - 155.242, - 83.9995 + 2.38476, + 3.94313, + 2.13359 ], "min": [ - 70.7752, - 155.242, - 9.53144 + 1.79769, + 3.94313, + 0.242098 ], "type": 35665 }, - "accessor_1246": { - "bufferView": "bufferView_4848", - "byteOffset": 153192, + "accessor_1312": { + "bufferView": "bufferView_5233", + "byteOffset": 154152, "byteStride": 12, "count": 4, "max": [ @@ -567,33 +711,33 @@ ], "type": 35665 }, - "accessor_1262": { - "bufferView": "bufferView_4847", - "byteOffset": 30504, + "accessor_1328": { + "bufferView": "bufferView_5232", + "byteOffset": 30736, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1264": { - "bufferView": "bufferView_4848", - "byteOffset": 153240, + "accessor_1330": { + "bufferView": "bufferView_5233", + "byteOffset": 154200, "byteStride": 12, "count": 4, "max": [ - 93.8884, - 155.242, - 9.53144 + 2.38476, + 3.94313, + 0.242098 ], "min": [ - 70.7752, + 1.79769, 0, - 9.53144 + 0.242098 ], "type": 35665 }, - "accessor_1266": { - "bufferView": "bufferView_4848", - "byteOffset": 153288, + "accessor_1332": { + "bufferView": "bufferView_5233", + "byteOffset": 154248, "byteStride": 12, "count": 4, "max": [ @@ -608,33 +752,33 @@ ], "type": 35665 }, - "accessor_1282": { - "bufferView": "bufferView_4847", - "byteOffset": 30516, + "accessor_1348": { + "bufferView": "bufferView_5232", + "byteOffset": 30748, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1284": { - "bufferView": "bufferView_4848", - "byteOffset": 153336, + "accessor_1350": { + "bufferView": "bufferView_5233", + "byteOffset": 154296, "byteStride": 12, "count": 4, "max": [ - 49.1186, - 155.242, - 83.9995 + 1.24761, + 3.94313, + 2.13359 ], "min": [ - 26.0055, - 155.242, - 9.53144 + 0.660539, + 3.94313, + 0.242098 ], "type": 35665 }, - "accessor_1286": { - "bufferView": "bufferView_4848", - "byteOffset": 153384, + "accessor_1352": { + "bufferView": "bufferView_5233", + "byteOffset": 154344, "byteStride": 12, "count": 4, "max": [ @@ -649,33 +793,40 @@ ], "type": 35665 }, - "accessor_1302": { - "bufferView": "bufferView_4847", - "byteOffset": 30528, + "accessor_136": { + "bufferView": "bufferView_5232", + "byteOffset": 30874, + "byteStride": 0, + "count": 24, + "type": 5123 + }, + "accessor_1368": { + "bufferView": "bufferView_5232", + "byteOffset": 30760, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1304": { - "bufferView": "bufferView_4848", - "byteOffset": 153432, + "accessor_1370": { + "bufferView": "bufferView_5233", + "byteOffset": 154392, "byteStride": 12, "count": 4, "max": [ - 49.1186, - 155.242, - 9.53144 + 1.24761, + 3.94313, + 0.242098 ], "min": [ - 26.0055, + 0.660539, 0, - 9.53144 + 0.242098 ], "type": 35665 }, - "accessor_1306": { - "bufferView": "bufferView_4848", - "byteOffset": 153480, + "accessor_1372": { + "bufferView": "bufferView_5233", + "byteOffset": 154440, "byteStride": 12, "count": 4, "max": [ @@ -690,33 +841,50 @@ ], "type": 35665 }, - "accessor_1322": { - "bufferView": "bufferView_4847", - "byteOffset": 30540, + "accessor_138": { + "bufferView": "bufferView_5233", + "byteOffset": 155232, + "byteStride": 12, + "count": 16, + "max": [ + 3.96089, + 1.4448, + 1.36112 + ], + "min": [ + 0.603209, + 0.681272, + 0.420386 + ], + "type": 35665 + }, + "accessor_1388": { + "bufferView": "bufferView_5232", + "byteOffset": 30772, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_1324": { - "bufferView": "bufferView_4848", - "byteOffset": 153528, + "accessor_1390": { + "bufferView": "bufferView_5233", + "byteOffset": 154488, "byteStride": 12, "count": 6, "max": [ - 114.036, - 418.633, - 59.1894 + 2.8965, + 10.6333, + 1.50341 ], "min": [ - 114.036, - 368.715, - 38.3036 + 2.8965, + 9.36536, + 0.972912 ], "type": 35665 }, - "accessor_1326": { - "bufferView": "bufferView_4848", - "byteOffset": 153600, + "accessor_1392": { + "bufferView": "bufferView_5233", + "byteOffset": 154560, "byteStride": 12, "count": 6, "max": [ @@ -731,33 +899,50 @@ ], "type": 35665 }, - "accessor_1342": { - "bufferView": "bufferView_4847", - "byteOffset": 30564, + "accessor_140": { + "bufferView": "bufferView_5233", + "byteOffset": 155424, + "byteStride": 12, + "count": 16, + "max": [ + 0.767387, + 0.641184, + 0.973677 + ], + "min": [ + -0.767387, + 0.227933, + -0.973677 + ], + "type": 35665 + }, + "accessor_1408": { + "bufferView": "bufferView_5232", + "byteOffset": 30796, "byteStride": 0, "count": 39, "type": 5123 }, - "accessor_1344": { - "bufferView": "bufferView_4848", - "byteOffset": 153672, + "accessor_1410": { + "bufferView": "bufferView_5233", + "byteOffset": 154632, "byteStride": 12, "count": 25, "max": [ - 116.095, - 425.567, - 78.0785 + 2.9488, + 10.8094, + 1.98319 ], "min": [ - 114.036, - 295.596, - 63.7716 + 2.8965, + 7.50813, + 1.6198 ], "type": 35665 }, - "accessor_1346": { - "bufferView": "bufferView_4848", - "byteOffset": 153972, + "accessor_1412": { + "bufferView": "bufferView_5233", + "byteOffset": 154932, "byteStride": 12, "count": 25, "max": [ @@ -772,40 +957,33 @@ ], "type": 35665 }, - "accessor_136": { - "bufferView": "bufferView_4847", - "byteOffset": 30642, - "byteStride": 0, - "count": 24, - "type": 5123 - }, - "accessor_1362": { - "bufferView": "bufferView_4847", - "byteOffset": 30690, + "accessor_1428": { + "bufferView": "bufferView_5232", + "byteOffset": 30922, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1364": { - "bufferView": "bufferView_4848", - "byteOffset": 154656, + "accessor_1430": { + "bufferView": "bufferView_5233", + "byteOffset": 155616, "byteStride": 12, "count": 4, "max": [ - 97.4956, - 424.016, - 88.6204 + 2.47639, + 10.77, + 2.25096 ], "min": [ - 22.3983, - 271.597, - 88.6204 + 0.568916, + 6.89855, + 2.25096 ], "type": 35665 }, - "accessor_1366": { - "bufferView": "bufferView_4848", - "byteOffset": 154704, + "accessor_1432": { + "bufferView": "bufferView_5233", + "byteOffset": 155664, "byteStride": 12, "count": 4, "max": [ @@ -820,149 +998,177 @@ ], "type": 35665 }, - "accessor_138": { - "bufferView": "bufferView_4848", - "byteOffset": 154272, + "accessor_1442": { + "bufferView": "bufferView_5232", + "byteOffset": 30934, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_1444": { + "bufferView": "bufferView_5233", + "byteOffset": 155712, "byteStride": 12, - "count": 16, + "count": 2, "max": [ - 155.941, - 56.8819, - 53.5872 + 2.47639, + 6.89855, + 2.25096 ], "min": [ - 23.7484, - 26.8217, - 16.5506 + 2.47639, + 6.85963, + 2.25096 ], "type": 35665 }, - "accessor_1388": { - "bufferView": "bufferView_4847", - "byteOffset": 30702, + "accessor_1454": { + "bufferView": "bufferView_5232", + "byteOffset": 30938, "byteStride": 0, - "count": 6, + "count": 8, "type": 5123 }, - "accessor_1390": { - "bufferView": "bufferView_4848", - "byteOffset": 154752, + "accessor_1456": { + "bufferView": "bufferView_5233", + "byteOffset": 155736, "byteStride": 12, "count": 4, "max": [ - 9.7184, - 82.709, - 48.0173 + 4.78516, + 9.06295, + 2.16092 ], "min": [ - 9.7184, - 24.277, - 36.1652 + 4.68257, + 8.06649, + 1.98319 ], "type": 35665 }, - "accessor_1392": { - "bufferView": "bufferView_4848", - "byteOffset": 154800, + "accessor_1466": { + "bufferView": "bufferView_5232", + "byteOffset": 30954, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1468": { + "bufferView": "bufferView_5233", + "byteOffset": 155784, "byteStride": 12, "count": 4, "max": [ - 1, - 0, - 0 + 4.78516, + 10.3383, + 2.16092 ], "min": [ - 1, - 0, - 0 + 4.68257, + 9.34185, + 1.98319 ], "type": 35665 }, - "accessor_140": { - "bufferView": "bufferView_4848", - "byteOffset": 154464, + "accessor_1478": { + "bufferView": "bufferView_5232", + "byteOffset": 30970, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1480": { + "bufferView": "bufferView_5233", + "byteOffset": 155832, "byteStride": 12, - "count": 16, + "count": 4, "max": [ - 0.767387, - 0.641184, - 0.973677 + 2.8965, + 9.06295, + 2.16092 ], "min": [ - -0.767387, - 0.227933, - -0.973677 + 2.8965, + 7.50813, + 1.98319 ], "type": 35665 }, - "accessor_1408": { - "bufferView": "bufferView_4847", - "byteOffset": 30714, + "accessor_1490": { + "bufferView": "bufferView_5232", + "byteOffset": 30986, "byteStride": 0, - "count": 6, + "count": 12, "type": 5123 }, - "accessor_1410": { - "bufferView": "bufferView_4848", - "byteOffset": 154848, + "accessor_1492": { + "bufferView": "bufferView_5233", + "byteOffset": 155880, "byteStride": 12, - "count": 4, + "count": 6, "max": [ - 29.0178, - 126.512, - 48.0173 + 2.8965, + 10.9136, + 2.16092 ], "min": [ - 9.7184, - 82.709, - 36.1652 + 2.8422, + 9.34185, + 1.98319 ], "type": 35665 }, - "accessor_1412": { - "bufferView": "bufferView_4848", - "byteOffset": 154896, + "accessor_1502": { + "bufferView": "bufferView_5232", + "byteOffset": 31010, + "byteStride": 0, + "count": 8, + "type": 5123 + }, + "accessor_1504": { + "bufferView": "bufferView_5233", + "byteOffset": 155952, "byteStride": 12, "count": 4, "max": [ - 0.915114, - -0.403196, - 0 + 2.8158, + 10.9219, + 2.16092 ], "min": [ - 0.915114, - -0.403196, - 0 + 2.8158, + 7.4829, + 1.98319 ], "type": 35665 }, - "accessor_1428": { - "bufferView": "bufferView_4847", - "byteOffset": 30726, + "accessor_1520": { + "bufferView": "bufferView_5232", + "byteOffset": 31026, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1430": { - "bufferView": "bufferView_4848", - "byteOffset": 154944, + "accessor_1522": { + "bufferView": "bufferView_5233", + "byteOffset": 156000, "byteStride": 12, "count": 4, "max": [ - 9.7184, - 82.709, - 70.893 + 0.246847, + 2.10081, + 1.21964 ], "min": [ - 9.7184, - 24.277, - 59.0409 + 0.246847, + 0.616636, + 0.918597 ], "type": 35665 }, - "accessor_1432": { - "bufferView": "bufferView_4848", - "byteOffset": 154992, + "accessor_1524": { + "bufferView": "bufferView_5233", + "byteOffset": 156048, "byteStride": 12, "count": 4, "max": [ @@ -977,74 +1183,204 @@ ], "type": 35665 }, - "accessor_1448": { - "bufferView": "bufferView_4847", - "byteOffset": 30738, + "accessor_1540": { + "bufferView": "bufferView_5232", + "byteOffset": 31038, "byteStride": 0, - "count": 87, + "count": 6, "type": 5123 }, - "accessor_1450": { - "bufferView": "bufferView_4848", - "byteOffset": 155040, + "accessor_1542": { + "bufferView": "bufferView_5233", + "byteOffset": 156096, "byteStride": 12, - "count": 45, + "count": 4, "max": [ - 31.2402, - 245.505, - 99.2805 + 0.737053, + 3.2134, + 1.21964 ], "min": [ - 7.49606, - 19.2331, - 7.77774 + 0.246847, + 2.10081, + 0.918597 ], "type": 35665 }, - "accessor_1452": { - "bufferView": "bufferView_4848", - "byteOffset": 155580, + "accessor_1544": { + "bufferView": "bufferView_5233", + "byteOffset": 156144, "byteStride": 12, - "count": 45, + "count": 4, "max": [ - 1, - 0.39943, - 0.720153 + 0.915114, + -0.403196, + 0 ], "min": [ - 0.663506, + 0.915114, -0.403196, - -0.720153 + 0 ], "type": 35665 }, - "accessor_1468": { - "bufferView": "bufferView_4847", - "byteOffset": 30912, + "accessor_156": { + "bufferView": "bufferView_5232", + "byteOffset": 31272, "byteStride": 0, - "count": 18, + "count": 114, "type": 5123 }, - "accessor_1470": { - "bufferView": "bufferView_4848", - "byteOffset": 156120, - "byteStride": 12, + "accessor_1560": { + "bufferView": "bufferView_5232", + "byteOffset": 31050, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_1562": { + "bufferView": "bufferView_5233", + "byteOffset": 156192, + "byteStride": 12, + "count": 4, + "max": [ + 0.246847, + 2.10081, + 1.80068 + ], + "min": [ + 0.246847, + 0.616636, + 1.49964 + ], + "type": 35665 + }, + "accessor_1564": { + "bufferView": "bufferView_5233", + "byteOffset": 156240, + "byteStride": 12, + "count": 4, + "max": [ + 1, + 0, + 0 + ], + "min": [ + 1, + 0, + 0 + ], + "type": 35665 + }, + "accessor_158": { + "bufferView": "bufferView_5233", + "byteOffset": 157656, + "byteStride": 12, + "count": 64, + "max": [ + 4.5641, + 1.4448, + 1.7815 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_1580": { + "bufferView": "bufferView_5232", + "byteOffset": 31062, + "byteStride": 0, + "count": 87, + "type": 5123 + }, + "accessor_1582": { + "bufferView": "bufferView_5233", + "byteOffset": 156288, + "byteStride": 12, + "count": 45, + "max": [ + 0.7935, + 6.23582, + 2.52173 + ], + "min": [ + 0.1904, + 0.488521, + 0.197555 + ], + "type": 35665 + }, + "accessor_1584": { + "bufferView": "bufferView_5233", + "byteOffset": 156828, + "byteStride": 12, + "count": 45, + "max": [ + 1, + 0.39943, + 0.720153 + ], + "min": [ + 0.663506, + -0.403196, + -0.720153 + ], + "type": 35665 + }, + "accessor_16": { + "bufferView": "bufferView_5232", + "byteOffset": 24320, + "byteStride": 0, + "count": 24, + "type": 5123 + }, + "accessor_160": { + "bufferView": "bufferView_5233", + "byteOffset": 158424, + "byteStride": 12, + "count": 64, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1600": { + "bufferView": "bufferView_5232", + "byteOffset": 31236, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_1602": { + "bufferView": "bufferView_5233", + "byteOffset": 157368, + "byteStride": 12, "count": 12, "max": [ - 29.0178, - 126.512, - 48.0173 + 0.737053, + 3.2134, + 1.21964 ], "min": [ - 9.7184, - 24.277, - 36.1652 + 0.246847, + 0.616636, + 0.918597 ], "type": 35665 }, - "accessor_1472": { - "bufferView": "bufferView_4848", - "byteOffset": 156264, + "accessor_1604": { + "bufferView": "bufferView_5233", + "byteOffset": 157512, "byteStride": 12, "count": 12, "max": [ @@ -1059,33 +1395,33 @@ ], "type": 35665 }, - "accessor_1488": { - "bufferView": "bufferView_4847", - "byteOffset": 31176, + "accessor_1620": { + "bufferView": "bufferView_5232", + "byteOffset": 31500, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_1490": { - "bufferView": "bufferView_4848", - "byteOffset": 157944, + "accessor_1622": { + "bufferView": "bufferView_5233", + "byteOffset": 159192, "byteStride": 12, "count": 12, "max": [ - 29.0178, - 126.512, - 70.893 + 0.737053, + 3.2134, + 1.80068 ], "min": [ - 9.7184, - 24.277, - 59.0409 + 0.246847, + 0.616636, + 1.49964 ], "type": 35665 }, - "accessor_1492": { - "bufferView": "bufferView_4848", - "byteOffset": 158088, + "accessor_1624": { + "bufferView": "bufferView_5233", + "byteOffset": 159336, "byteStride": 12, "count": 12, "max": [ @@ -1100,33 +1436,33 @@ ], "type": 35665 }, - "accessor_1508": { - "bufferView": "bufferView_4847", - "byteOffset": 31212, + "accessor_1640": { + "bufferView": "bufferView_5232", + "byteOffset": 31536, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1510": { - "bufferView": "bufferView_4848", - "byteOffset": 158232, + "accessor_1642": { + "bufferView": "bufferView_5233", + "byteOffset": 159480, "byteStride": 12, "count": 4, "max": [ - 29.0178, - 126.512, - 70.893 + 0.737053, + 3.2134, + 1.80068 ], "min": [ - 9.7184, - 82.709, - 59.0409 + 0.246847, + 2.10081, + 1.49964 ], "type": 35665 }, - "accessor_1512": { - "bufferView": "bufferView_4848", - "byteOffset": 158280, + "accessor_1644": { + "bufferView": "bufferView_5233", + "byteOffset": 159528, "byteStride": 12, "count": 4, "max": [ @@ -1141,33 +1477,33 @@ ], "type": 35665 }, - "accessor_1528": { - "bufferView": "bufferView_4847", - "byteOffset": 31224, + "accessor_1660": { + "bufferView": "bufferView_5232", + "byteOffset": 31548, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1530": { - "bufferView": "bufferView_4848", - "byteOffset": 158328, + "accessor_1662": { + "bufferView": "bufferView_5233", + "byteOffset": 159576, "byteStride": 12, "count": 4, "max": [ - 9.7184, - 82.709, - 48.0173 + 0.246847, + 2.10081, + 1.21964 ], "min": [ - 9.7184, - 24.277, - 36.1652 + 0.246847, + 0.616636, + 0.918597 ], "type": 35665 }, - "accessor_1532": { - "bufferView": "bufferView_4848", - "byteOffset": 158376, + "accessor_1664": { + "bufferView": "bufferView_5233", + "byteOffset": 159624, "byteStride": 12, "count": 4, "max": [ @@ -1182,33 +1518,33 @@ ], "type": 35665 }, - "accessor_1548": { - "bufferView": "bufferView_4847", - "byteOffset": 31236, + "accessor_1680": { + "bufferView": "bufferView_5232", + "byteOffset": 31560, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1550": { - "bufferView": "bufferView_4848", - "byteOffset": 158424, + "accessor_1682": { + "bufferView": "bufferView_5233", + "byteOffset": 159672, "byteStride": 12, "count": 4, "max": [ - 29.0178, - 126.512, - 48.0173 + 0.737053, + 3.2134, + 1.21964 ], "min": [ - 9.7184, - 82.709, - 36.1652 + 0.246847, + 2.10081, + 0.918597 ], "type": 35665 }, - "accessor_1552": { - "bufferView": "bufferView_4848", - "byteOffset": 158472, + "accessor_1684": { + "bufferView": "bufferView_5233", + "byteOffset": 159720, "byteStride": 12, "count": 4, "max": [ @@ -1223,40 +1559,33 @@ ], "type": 35665 }, - "accessor_156": { - "bufferView": "bufferView_4847", - "byteOffset": 30948, - "byteStride": 0, - "count": 114, - "type": 5123 - }, - "accessor_1568": { - "bufferView": "bufferView_4847", - "byteOffset": 31248, + "accessor_1700": { + "bufferView": "bufferView_5232", + "byteOffset": 31572, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1570": { - "bufferView": "bufferView_4848", - "byteOffset": 158520, + "accessor_1702": { + "bufferView": "bufferView_5233", + "byteOffset": 159768, "byteStride": 12, "count": 4, "max": [ - 9.7184, - 82.709, - 70.893 + 0.246847, + 2.10081, + 1.80068 ], "min": [ - 9.7184, - 24.277, - 59.0409 + 0.246847, + 0.616636, + 1.49964 ], "type": 35665 }, - "accessor_1572": { - "bufferView": "bufferView_4848", - "byteOffset": 158568, + "accessor_1704": { + "bufferView": "bufferView_5233", + "byteOffset": 159816, "byteStride": 12, "count": 4, "max": [ @@ -1271,50 +1600,33 @@ ], "type": 35665 }, - "accessor_158": { - "bufferView": "bufferView_4848", - "byteOffset": 156408, - "byteStride": 12, - "count": 64, - "max": [ - 179.689, - 56.8819, - 70.1378 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_1588": { - "bufferView": "bufferView_4847", - "byteOffset": 31260, + "accessor_1720": { + "bufferView": "bufferView_5232", + "byteOffset": 31584, "byteStride": 0, "count": 108, "type": 5123 }, - "accessor_1590": { - "bufferView": "bufferView_4848", - "byteOffset": 158616, + "accessor_1722": { + "bufferView": "bufferView_5233", + "byteOffset": 159864, "byteStride": 12, "count": 48, "max": [ - 31.2402, - 245.505, - 99.2805 + 0.7935, + 6.23582, + 2.52173 ], "min": [ - 7.49606, - 19.2331, - 7.77774 + 0.1904, + 0.488521, + 0.197555 ], "type": 35665 }, - "accessor_1592": { - "bufferView": "bufferView_4848", - "byteOffset": 159192, + "accessor_1724": { + "bufferView": "bufferView_5233", + "byteOffset": 160440, "byteStride": 12, "count": 48, "max": [ @@ -1329,57 +1641,33 @@ ], "type": 35665 }, - "accessor_16": { - "bufferView": "bufferView_4847", - "byteOffset": 24180, - "byteStride": 0, - "count": 24, - "type": 5123 - }, - "accessor_160": { - "bufferView": "bufferView_4848", - "byteOffset": 157176, - "byteStride": 12, - "count": 64, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1608": { - "bufferView": "bufferView_4847", - "byteOffset": 31476, + "accessor_1740": { + "bufferView": "bufferView_5232", + "byteOffset": 31800, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_1610": { - "bufferView": "bufferView_4848", - "byteOffset": 159768, + "accessor_1742": { + "bufferView": "bufferView_5233", + "byteOffset": 161016, "byteStride": 12, "count": 12, "max": [ - 29.0178, - 126.512, - 48.0173 + 0.737053, + 3.2134, + 1.21964 ], "min": [ - 9.7184, - 24.277, - 36.1652 + 0.246847, + 0.616636, + 0.918597 ], "type": 35665 }, - "accessor_1612": { - "bufferView": "bufferView_4848", - "byteOffset": 159912, + "accessor_1744": { + "bufferView": "bufferView_5233", + "byteOffset": 161160, "byteStride": 12, "count": 12, "max": [ @@ -1394,33 +1682,40 @@ ], "type": 35665 }, - "accessor_1628": { - "bufferView": "bufferView_4847", - "byteOffset": 31512, + "accessor_176": { + "bufferView": "bufferView_5232", + "byteOffset": 31896, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_1760": { + "bufferView": "bufferView_5232", + "byteOffset": 31836, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_1630": { - "bufferView": "bufferView_4848", - "byteOffset": 160056, + "accessor_1762": { + "bufferView": "bufferView_5233", + "byteOffset": 161304, "byteStride": 12, "count": 12, "max": [ - 29.0178, - 126.512, - 70.893 + 0.737053, + 3.2134, + 1.80068 ], "min": [ - 9.7184, - 24.277, - 59.0409 + 0.246847, + 0.616636, + 1.49964 ], "type": 35665 }, - "accessor_1632": { - "bufferView": "bufferView_4848", - "byteOffset": 160200, + "accessor_1764": { + "bufferView": "bufferView_5233", + "byteOffset": 161448, "byteStride": 12, "count": 12, "max": [ @@ -1435,33 +1730,50 @@ ], "type": 35665 }, - "accessor_1648": { - "bufferView": "bufferView_4847", - "byteOffset": 31548, + "accessor_178": { + "bufferView": "bufferView_5233", + "byteOffset": 161784, + "byteStride": 12, + "count": 4, + "max": [ + 3.32293, + 0.681272, + 1.18238 + ], + "min": [ + 1.24117, + 0.681272, + 0.599124 + ], + "type": 35665 + }, + "accessor_1780": { + "bufferView": "bufferView_5232", + "byteOffset": 31872, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1650": { - "bufferView": "bufferView_4848", - "byteOffset": 160344, + "accessor_1782": { + "bufferView": "bufferView_5233", + "byteOffset": 161592, "byteStride": 12, "count": 4, "max": [ - 29.0178, - 126.512, - 70.893 + 0.737053, + 3.2134, + 1.80068 ], "min": [ - 9.7184, - 82.709, - 59.0409 + 0.246847, + 2.10081, + 1.49964 ], "type": 35665 }, - "accessor_1652": { - "bufferView": "bufferView_4848", - "byteOffset": 160392, + "accessor_1784": { + "bufferView": "bufferView_5233", + "byteOffset": 161640, "byteStride": 12, "count": 4, "max": [ @@ -1476,33 +1788,67 @@ ], "type": 35665 }, - "accessor_1668": { - "bufferView": "bufferView_4847", - "byteOffset": 31560, + "accessor_18": { + "bufferView": "bufferView_5233", + "byteOffset": 123048, + "byteStride": 12, + "count": 16, + "max": [ + 3.96089, + 1.4448, + 1.36112 + ], + "min": [ + 0.603209, + 0.681272, + 0.420386 + ], + "type": 35665 + }, + "accessor_180": { + "bufferView": "bufferView_5233", + "byteOffset": 161832, + "byteStride": 12, + "count": 4, + "max": [ + 0, + 1, + 0 + ], + "min": [ + 0, + 1, + 0 + ], + "type": 35665 + }, + "accessor_1800": { + "bufferView": "bufferView_5232", + "byteOffset": 31884, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1670": { - "bufferView": "bufferView_4848", - "byteOffset": 160440, + "accessor_1802": { + "bufferView": "bufferView_5233", + "byteOffset": 161688, "byteStride": 12, "count": 4, "max": [ - 628.113, - 883.238, - 212.797 + 15.9541, + 22.4342, + 5.40504 ], "min": [ - 626.215, - 876.434, - 204.273 + 15.9059, + 22.2614, + 5.18854 ], "type": 35665 }, - "accessor_1672": { - "bufferView": "bufferView_4848", - "byteOffset": 160488, + "accessor_1804": { + "bufferView": "bufferView_5233", + "byteOffset": 161736, "byteStride": 12, "count": 4, "max": [ @@ -1517,33 +1863,33 @@ ], "type": 35665 }, - "accessor_1688": { - "bufferView": "bufferView_4847", - "byteOffset": 31584, + "accessor_1820": { + "bufferView": "bufferView_5232", + "byteOffset": 31908, "byteStride": 0, "count": 126, "type": 5123 }, - "accessor_1690": { - "bufferView": "bufferView_4848", - "byteOffset": 160632, + "accessor_1822": { + "bufferView": "bufferView_5233", + "byteOffset": 161880, "byteStride": 12, "count": 72, "max": [ - 600.884, - 1409.32, - 163.036 + 15.2625, + 35.7966, + 4.1411 ], "min": [ - 436.213, - 1196.67, - 116.019 + 11.0798, + 30.3954, + 2.94689 ], "type": 35665 }, - "accessor_1692": { - "bufferView": "bufferView_4848", - "byteOffset": 161496, + "accessor_1824": { + "bufferView": "bufferView_5233", + "byteOffset": 162744, "byteStride": 12, "count": 72, "max": [ @@ -1558,33 +1904,33 @@ ], "type": 35665 }, - "accessor_1708": { - "bufferView": "bufferView_4847", - "byteOffset": 31836, + "accessor_1840": { + "bufferView": "bufferView_5232", + "byteOffset": 32160, "byteStride": 0, "count": 696, "type": 5123 }, - "accessor_1710": { - "bufferView": "bufferView_4848", - "byteOffset": 162360, + "accessor_1842": { + "bufferView": "bufferView_5233", + "byteOffset": 163608, "byteStride": 12, "count": 304, "max": [ - 769.697, - 873.919, - 201.991 + 19.5503, + 22.1976, + 5.13057 ], "min": [ - 627.43, - 822.213, - 199.882 + 15.9367, + 20.8842, + 5.07701 ], "type": 35665 }, - "accessor_1712": { - "bufferView": "bufferView_4848", - "byteOffset": 166008, + "accessor_1844": { + "bufferView": "bufferView_5233", + "byteOffset": 167256, "byteStride": 12, "count": 304, "max": [ @@ -1599,33 +1945,33 @@ ], "type": 35665 }, - "accessor_1728": { - "bufferView": "bufferView_4847", - "byteOffset": 33228, + "accessor_1860": { + "bufferView": "bufferView_5232", + "byteOffset": 33552, "byteStride": 0, "count": 18423, "type": 5123 }, - "accessor_1730": { - "bufferView": "bufferView_4848", - "byteOffset": 169656, + "accessor_1862": { + "bufferView": "bufferView_5233", + "byteOffset": 170904, "byteStride": 12, "count": 6678, "max": [ - 1120.03, - 1812.29, - 296.689 + 28.4489, + 46.0321, + 7.53589 ], "min": [ - 277.093, + 7.03817, 0, 0 ], "type": 35665 }, - "accessor_1732": { - "bufferView": "bufferView_4848", - "byteOffset": 249792, + "accessor_1864": { + "bufferView": "bufferView_5233", + "byteOffset": 251040, "byteStride": 12, "count": 6678, "max": [ @@ -1640,33 +1986,33 @@ ], "type": 35665 }, - "accessor_1748": { - "bufferView": "bufferView_4847", - "byteOffset": 70074, + "accessor_1880": { + "bufferView": "bufferView_5232", + "byteOffset": 70398, "byteStride": 0, "count": 168, "type": 5123 }, - "accessor_1750": { - "bufferView": "bufferView_4848", - "byteOffset": 329928, + "accessor_1882": { + "bufferView": "bufferView_5233", + "byteOffset": 331176, "byteStride": 12, "count": 66, "max": [ - 618.085, - 654.282, - 107.472 + 15.6994, + 16.6188, + 2.72978 ], "min": [ - 508.418, - 505.491, - 16.2887 + 12.9138, + 12.8395, + 0.413732 ], "type": 35665 }, - "accessor_1752": { - "bufferView": "bufferView_4848", - "byteOffset": 330720, + "accessor_1884": { + "bufferView": "bufferView_5233", + "byteOffset": 331968, "byteStride": 12, "count": 66, "max": [ @@ -1681,40 +2027,33 @@ ], "type": 35665 }, - "accessor_176": { - "bufferView": "bufferView_4847", - "byteOffset": 31572, - "byteStride": 0, - "count": 6, - "type": 5123 - }, - "accessor_1768": { - "bufferView": "bufferView_4847", - "byteOffset": 70410, + "accessor_1900": { + "bufferView": "bufferView_5232", + "byteOffset": 70734, "byteStride": 0, "count": 168, "type": 5123 }, - "accessor_1770": { - "bufferView": "bufferView_4848", - "byteOffset": 331512, + "accessor_1902": { + "bufferView": "bufferView_5233", + "byteOffset": 332760, "byteStride": 12, "count": 68, "max": [ - 605.346, - 1763.96, - 159.768 + 15.3758, + 44.8047, + 4.05812 ], "min": [ - 421.615, - 1737.14, - 19.4928 + 10.709, + 44.1234, + 0.495116 ], "type": 35665 }, - "accessor_1772": { - "bufferView": "bufferView_4848", - "byteOffset": 332328, + "accessor_1904": { + "bufferView": "bufferView_5233", + "byteOffset": 333576, "byteStride": 12, "count": 68, "max": [ @@ -1729,50 +2068,33 @@ ], "type": 35665 }, - "accessor_178": { - "bufferView": "bufferView_4848", - "byteOffset": 160536, - "byteStride": 12, - "count": 4, - "max": [ - 130.824, - 26.8217, - 46.5503 - ], - "min": [ - 48.8649, - 26.8217, - 23.5876 - ], - "type": 35665 - }, - "accessor_1788": { - "bufferView": "bufferView_4847", - "byteOffset": 70746, + "accessor_1920": { + "bufferView": "bufferView_5232", + "byteOffset": 71070, "byteStride": 0, "count": 351, "type": 5123 }, - "accessor_1790": { - "bufferView": "bufferView_4848", - "byteOffset": 333144, + "accessor_1922": { + "bufferView": "bufferView_5233", + "byteOffset": 334392, "byteStride": 12, "count": 189, "max": [ - 618.085, - 661.693, - 107.472 + 15.6994, + 16.807, + 2.72978 ], "min": [ - 510.919, - 527.251, - 16.2887 + 12.9773, + 13.3922, + 0.413732 ], "type": 35665 }, - "accessor_1792": { - "bufferView": "bufferView_4848", - "byteOffset": 335412, + "accessor_1924": { + "bufferView": "bufferView_5233", + "byteOffset": 336660, "byteStride": 12, "count": 189, "max": [ @@ -1787,67 +2109,33 @@ ], "type": 35665 }, - "accessor_18": { - "bufferView": "bufferView_4848", - "byteOffset": 122376, - "byteStride": 12, - "count": 16, - "max": [ - 155.941, - 56.8819, - 53.5872 - ], - "min": [ - 23.7484, - 26.8217, - 16.5506 - ], - "type": 35665 - }, - "accessor_180": { - "bufferView": "bufferView_4848", - "byteOffset": 160584, - "byteStride": 12, - "count": 4, - "max": [ - 0, - 1, - 0 - ], - "min": [ - 0, - 1, - 0 - ], - "type": 35665 - }, - "accessor_1808": { - "bufferView": "bufferView_4847", - "byteOffset": 71448, + "accessor_1940": { + "bufferView": "bufferView_5232", + "byteOffset": 71772, "byteStride": 0, "count": 336, "type": 5123 }, - "accessor_1810": { - "bufferView": "bufferView_4848", - "byteOffset": 337680, + "accessor_1942": { + "bufferView": "bufferView_5233", + "byteOffset": 338928, "byteStride": 12, "count": 198, "max": [ - 699.915, - 1152.9, - 316.839 + 17.7778, + 29.2837, + 8.04772 ], "min": [ - 697.212, - 1055.27, - 244.003 + 17.7092, + 26.804, + 6.19767 ], "type": 35665 }, - "accessor_1812": { - "bufferView": "bufferView_4848", - "byteOffset": 340056, + "accessor_1944": { + "bufferView": "bufferView_5233", + "byteOffset": 341304, "byteStride": 12, "count": 198, "max": [ @@ -1862,33 +2150,40 @@ ], "type": 35665 }, - "accessor_1828": { - "bufferView": "bufferView_4847", - "byteOffset": 72120, + "accessor_196": { + "bufferView": "bufferView_5232", + "byteOffset": 73536, + "byteStride": 0, + "count": 24, + "type": 5123 + }, + "accessor_1960": { + "bufferView": "bufferView_5232", + "byteOffset": 72444, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1830": { - "bufferView": "bufferView_4848", - "byteOffset": 342432, + "accessor_1962": { + "bufferView": "bufferView_5233", + "byteOffset": 343680, "byteStride": 12, "count": 4, "max": [ - 305.791, - 1390.67, - 144.385 + 7.76709, + 35.3231, + 3.66737 ], "min": [ - 282.158, - 1390.67, - 84.0246 + 7.1668, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_1832": { - "bufferView": "bufferView_4848", - "byteOffset": 342480, + "accessor_1964": { + "bufferView": "bufferView_5233", + "byteOffset": 343728, "byteStride": 12, "count": 4, "max": [ @@ -1903,33 +2198,50 @@ ], "type": 35665 }, - "accessor_1848": { - "bufferView": "bufferView_4847", - "byteOffset": 72132, + "accessor_198": { + "bufferView": "bufferView_5233", + "byteOffset": 349680, + "byteStride": 12, + "count": 16, + "max": [ + 3.96089, + 1.4448, + 1.36112 + ], + "min": [ + 0.603209, + 0.681272, + 0.420386 + ], + "type": 35665 + }, + "accessor_1980": { + "bufferView": "bufferView_5232", + "byteOffset": 72456, "byteStride": 0, "count": 168, "type": 5123 }, - "accessor_1850": { - "bufferView": "bufferView_4848", - "byteOffset": 342528, + "accessor_1982": { + "bufferView": "bufferView_5233", + "byteOffset": 343776, "byteStride": 12, "count": 68, "max": [ - 975.513, - 1763.96, - 159.768 + 24.778, + 44.8047, + 4.05812 ], "min": [ - 791.781, - 1737.14, - 19.4928 + 20.1112, + 44.1234, + 0.495116 ], "type": 35665 }, - "accessor_1852": { - "bufferView": "bufferView_4848", - "byteOffset": 343344, + "accessor_1984": { + "bufferView": "bufferView_5233", + "byteOffset": 344592, "byteStride": 12, "count": 68, "max": [ @@ -1944,33 +2256,67 @@ ], "type": 35665 }, - "accessor_1868": { - "bufferView": "bufferView_4847", - "byteOffset": 72468, - "byteStride": 0, - "count": 30, - "type": 5123 - }, - "accessor_1870": { - "bufferView": "bufferView_4848", - "byteOffset": 344160, + "accessor_20": { + "bufferView": "bufferView_5233", + "byteOffset": 123240, "byteStride": 12, - "count": 20, + "count": 16, "max": [ - 931.418, - 1207.91, - 170.281 + 0.767387, + 0.641184, + 0.973677 ], "min": [ - 922.344, - 1142.62, - 168.797 + -0.767387, + 0.227933, + -0.973677 ], "type": 35665 }, - "accessor_1872": { - "bufferView": "bufferView_4848", - "byteOffset": 344400, + "accessor_200": { + "bufferView": "bufferView_5233", + "byteOffset": 349872, + "byteStride": 12, + "count": 16, + "max": [ + 0.767387, + 0.641184, + 0.973677 + ], + "min": [ + -0.767387, + 0.227933, + -0.973677 + ], + "type": 35665 + }, + "accessor_2000": { + "bufferView": "bufferView_5232", + "byteOffset": 72792, + "byteStride": 0, + "count": 30, + "type": 5123 + }, + "accessor_2002": { + "bufferView": "bufferView_5233", + "byteOffset": 345408, + "byteStride": 12, + "count": 20, + "max": [ + 23.658, + 30.681, + 4.32514 + ], + "min": [ + 23.4275, + 29.0226, + 4.28743 + ], + "type": 35665 + }, + "accessor_2004": { + "bufferView": "bufferView_5233", + "byteOffset": 345648, "byteStride": 12, "count": 20, "max": [ @@ -1985,40 +2331,40 @@ ], "type": 35665 }, - "accessor_1900": { - "bufferView": "bufferView_4847", - "byteOffset": 72528, + "accessor_2032": { + "bufferView": "bufferView_5232", + "byteOffset": 72852, "byteStride": 0, "count": 333, "type": 5123 }, - "accessor_1903": { - "bufferView": "bufferView_4847", - "byteOffset": 73194, + "accessor_2035": { + "bufferView": "bufferView_5232", + "byteOffset": 73518, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_1905": { - "bufferView": "bufferView_4848", - "byteOffset": 344640, + "accessor_2037": { + "bufferView": "bufferView_5233", + "byteOffset": 345888, "byteStride": 12, "count": 158, "max": [ - 277.093, - 1777.33, - 134.554 + 7.03817, + 45.1441, + 3.41767 ], "min": [ 0, - 1391.72, - 105.862 + 35.3497, + 2.6889 ], "type": 35665 }, - "accessor_1907": { - "bufferView": "bufferView_4848", - "byteOffset": 346536, + "accessor_2039": { + "bufferView": "bufferView_5233", + "byteOffset": 347784, "byteStride": 12, "count": 158, "max": [ @@ -2033,33 +2379,33 @@ ], "type": 35665 }, - "accessor_1923": { - "bufferView": "bufferView_4847", - "byteOffset": 73260, + "accessor_2055": { + "bufferView": "bufferView_5232", + "byteOffset": 73584, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_1925": { - "bufferView": "bufferView_4848", - "byteOffset": 348816, + "accessor_2057": { + "bufferView": "bufferView_5233", + "byteOffset": 350064, "byteStride": 12, "count": 12, "max": [ - 268.08, - 1750.88, - 133.435 + 6.80923, + 44.4723, + 3.38926 ], "min": [ - 35.5641, - 1685.1, - 106.398 + 0.903328, + 42.8017, + 2.7025 ], "type": 35665 }, - "accessor_1927": { - "bufferView": "bufferView_4848", - "byteOffset": 348960, + "accessor_2059": { + "bufferView": "bufferView_5233", + "byteOffset": 350208, "byteStride": 12, "count": 12, "max": [ @@ -2074,33 +2420,33 @@ ], "type": 35665 }, - "accessor_1943": { - "bufferView": "bufferView_4847", - "byteOffset": 73296, + "accessor_2075": { + "bufferView": "bufferView_5232", + "byteOffset": 73620, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_1945": { - "bufferView": "bufferView_4848", - "byteOffset": 349104, + "accessor_2077": { + "bufferView": "bufferView_5233", + "byteOffset": 350352, "byteStride": 12, "count": 4, "max": [ - 373.315, - 1390.67, - 144.385 + 9.48221, + 35.3231, + 3.66737 ], "min": [ - 349.682, - 1390.67, - 84.0246 + 8.88192, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_1947": { - "bufferView": "bufferView_4848", - "byteOffset": 349152, + "accessor_2079": { + "bufferView": "bufferView_5233", + "byteOffset": 350400, "byteStride": 12, "count": 4, "max": [ @@ -2115,64 +2461,40 @@ ], "type": 35665 }, - "accessor_196": { - "bufferView": "bufferView_4847", - "byteOffset": 73212, - "byteStride": 0, - "count": 24, - "type": 5123 - }, - "accessor_1975": { - "bufferView": "bufferView_4847", - "byteOffset": 73308, + "accessor_2107": { + "bufferView": "bufferView_5232", + "byteOffset": 73632, "byteStride": 0, "count": 333, "type": 5123 }, - "accessor_1978": { - "bufferView": "bufferView_4847", - "byteOffset": 73974, + "accessor_2110": { + "bufferView": "bufferView_5232", + "byteOffset": 74298, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_198": { - "bufferView": "bufferView_4848", - "byteOffset": 348432, - "byteStride": 12, - "count": 16, - "max": [ - 155.941, - 56.8819, - 53.5872 - ], - "min": [ - 23.7484, - 26.8217, - 16.5506 - ], - "type": 35665 - }, - "accessor_1980": { - "bufferView": "bufferView_4848", - "byteOffset": 349200, + "accessor_2112": { + "bufferView": "bufferView_5233", + "byteOffset": 350448, "byteStride": 12, "count": 158, "max": [ - 1397.13, - 1777.33, - 134.554 + 35.487, + 45.1441, + 3.41767 ], "min": [ - 1120.03, - 1391.72, - 105.862 + 28.4489, + 35.3497, + 2.6889 ], "type": 35665 }, - "accessor_1982": { - "bufferView": "bufferView_4848", - "byteOffset": 351096, + "accessor_2114": { + "bufferView": "bufferView_5233", + "byteOffset": 352344, "byteStride": 12, "count": 158, "max": [ @@ -2187,67 +2509,33 @@ ], "type": 35665 }, - "accessor_1998": { - "bufferView": "bufferView_4847", - "byteOffset": 73992, + "accessor_2130": { + "bufferView": "bufferView_5232", + "byteOffset": 74316, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_20": { - "bufferView": "bufferView_4848", - "byteOffset": 122568, - "byteStride": 12, - "count": 16, - "max": [ - 0.767387, - 0.641184, - 0.973677 - ], - "min": [ - -0.767387, - 0.227933, - -0.973677 - ], - "type": 35665 - }, - "accessor_200": { - "bufferView": "bufferView_4848", - "byteOffset": 348624, - "byteStride": 12, - "count": 16, - "max": [ - 0.767387, - 0.641184, - 0.973677 - ], - "min": [ - -0.767387, - 0.227933, - -0.973677 - ], - "type": 35665 - }, - "accessor_2000": { - "bufferView": "bufferView_4848", - "byteOffset": 352992, + "accessor_2132": { + "bufferView": "bufferView_5233", + "byteOffset": 354240, "byteStride": 12, "count": 20, "max": [ - 571.387, - 1207.91, - 170.281 + 14.5132, + 30.681, + 4.32514 ], "min": [ - 562.313, - 1142.62, - 168.797 + 14.2828, + 29.0226, + 4.28743 ], "type": 35665 }, - "accessor_2002": { - "bufferView": "bufferView_4848", - "byteOffset": 353232, + "accessor_2134": { + "bufferView": "bufferView_5233", + "byteOffset": 354480, "byteStride": 12, "count": 20, "max": [ @@ -2262,33 +2550,33 @@ ], "type": 35665 }, - "accessor_2018": { - "bufferView": "bufferView_4847", - "byteOffset": 74052, + "accessor_2150": { + "bufferView": "bufferView_5232", + "byteOffset": 74376, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_2020": { - "bufferView": "bufferView_4848", - "byteOffset": 353472, + "accessor_2152": { + "bufferView": "bufferView_5233", + "byteOffset": 354720, "byteStride": 12, "count": 14, "max": [ - 373.315, - 1390.67, - 144.385 + 9.48221, + 35.3231, + 3.66737 ], "min": [ - 349.682, - 1149.65, - 84.0246 + 8.88192, + 29.201, + 2.13422 ], "type": 35665 }, - "accessor_2022": { - "bufferView": "bufferView_4848", - "byteOffset": 353640, + "accessor_2154": { + "bufferView": "bufferView_5233", + "byteOffset": 354888, "byteStride": 12, "count": 14, "max": [ @@ -2303,33 +2591,40 @@ ], "type": 35665 }, - "accessor_2038": { - "bufferView": "bufferView_4847", - "byteOffset": 74100, + "accessor_216": { + "bufferView": "bufferView_5232", + "byteOffset": 75630, + "byteStride": 0, + "count": 114, + "type": 5123 + }, + "accessor_2170": { + "bufferView": "bufferView_5232", + "byteOffset": 74424, "byteStride": 0, "count": 438, "type": 5123 }, - "accessor_2040": { - "bufferView": "bufferView_4848", - "byteOffset": 353808, + "accessor_2172": { + "bufferView": "bufferView_5233", + "byteOffset": 355056, "byteStride": 12, "count": 188, "max": [ - 899.959, - 657.191, - 117.407 + 22.859, + 16.6926, + 2.98214 ], "min": [ - 497.169, - 505.491, - 7.74088 + 12.6281, + 12.8395, + 0.196618 ], "type": 35665 }, - "accessor_2042": { - "bufferView": "bufferView_4848", - "byteOffset": 356064, + "accessor_2174": { + "bufferView": "bufferView_5233", + "byteOffset": 357312, "byteStride": 12, "count": 188, "max": [ @@ -2344,33 +2639,50 @@ ], "type": 35665 }, - "accessor_2058": { - "bufferView": "bufferView_4847", - "byteOffset": 74976, + "accessor_218": { + "bufferView": "bufferView_5233", + "byteOffset": 361320, + "byteStride": 12, + "count": 64, + "max": [ + 4.5641, + 1.4448, + 1.7815 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_2190": { + "bufferView": "bufferView_5232", + "byteOffset": 75300, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_2060": { - "bufferView": "bufferView_4848", - "byteOffset": 358320, + "accessor_2192": { + "bufferView": "bufferView_5233", + "byteOffset": 359568, "byteStride": 12, "count": 5, "max": [ - 407.077, - 1390.67, - 84.0246 + 10.3398, + 35.3231, + 2.13422 ], "min": [ - 383.444, - 1117.53, - 84.0246 + 9.73948, + 28.3852, + 2.13422 ], "type": 35665 }, - "accessor_2062": { - "bufferView": "bufferView_4848", - "byteOffset": 358380, + "accessor_2194": { + "bufferView": "bufferView_5233", + "byteOffset": 359628, "byteStride": 12, "count": 5, "max": [ @@ -2385,33 +2697,50 @@ ], "type": 35665 }, - "accessor_2078": { - "bufferView": "bufferView_4847", - "byteOffset": 74994, + "accessor_220": { + "bufferView": "bufferView_5233", + "byteOffset": 362088, + "byteStride": 12, + "count": 64, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_2210": { + "bufferView": "bufferView_5232", + "byteOffset": 75318, "byteStride": 0, "count": 126, "type": 5123 }, - "accessor_2080": { - "bufferView": "bufferView_4848", - "byteOffset": 358440, + "accessor_2212": { + "bufferView": "bufferView_5233", + "byteOffset": 359688, "byteStride": 12, "count": 50, "max": [ - 671.469, - 1129.4, - 179.034 + 17.0553, + 28.6868, + 4.54746 ], "min": [ - 615.386, - 653.326, - 131.914 + 15.6308, + 16.5945, + 3.35062 ], "type": 35665 }, - "accessor_2082": { - "bufferView": "bufferView_4848", - "byteOffset": 359040, + "accessor_2214": { + "bufferView": "bufferView_5233", + "byteOffset": 360288, "byteStride": 12, "count": 50, "max": [ @@ -2426,33 +2755,33 @@ ], "type": 35665 }, - "accessor_2098": { - "bufferView": "bufferView_4847", - "byteOffset": 75246, + "accessor_2230": { + "bufferView": "bufferView_5232", + "byteOffset": 75570, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2100": { - "bufferView": "bufferView_4848", - "byteOffset": 359640, + "accessor_2232": { + "bufferView": "bufferView_5233", + "byteOffset": 360888, "byteStride": 12, "count": 4, "max": [ - 407.077, - 1390.67, - 144.385 + 10.3398, + 35.3231, + 3.66737 ], "min": [ - 383.444, - 1390.67, - 84.0246 + 9.73948, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_2102": { - "bufferView": "bufferView_4848", - "byteOffset": 359688, + "accessor_2234": { + "bufferView": "bufferView_5233", + "byteOffset": 360936, "byteStride": 12, "count": 4, "max": [ @@ -2467,33 +2796,33 @@ ], "type": 35665 }, - "accessor_2118": { - "bufferView": "bufferView_4847", - "byteOffset": 75258, + "accessor_2250": { + "bufferView": "bufferView_5232", + "byteOffset": 75582, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_2120": { - "bufferView": "bufferView_4848", - "byteOffset": 359736, + "accessor_2252": { + "bufferView": "bufferView_5233", + "byteOffset": 360984, "byteStride": 12, "count": 14, "max": [ - 1114.97, - 1390.67, - 144.385 + 28.3202, + 35.3231, + 3.66737 ], "min": [ - 1091.34, - 1215.64, - 84.0246 + 27.7199, + 30.8773, + 2.13422 ], "type": 35665 }, - "accessor_2122": { - "bufferView": "bufferView_4848", - "byteOffset": 359904, + "accessor_2254": { + "bufferView": "bufferView_5233", + "byteOffset": 361152, "byteStride": 12, "count": 14, "max": [ @@ -2508,33 +2837,33 @@ ], "type": 35665 }, - "accessor_2138": { - "bufferView": "bufferView_4847", - "byteOffset": 75534, + "accessor_2270": { + "bufferView": "bufferView_5232", + "byteOffset": 75858, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_2140": { - "bufferView": "bufferView_4848", - "byteOffset": 361608, + "accessor_2272": { + "bufferView": "bufferView_5233", + "byteOffset": 362856, "byteStride": 12, "count": 14, "max": [ - 305.791, - 1390.67, - 144.385 + 7.76709, + 35.3231, + 3.66737 ], "min": [ - 282.158, - 1215.64, - 84.0246 + 7.1668, + 30.8773, + 2.13422 ], "type": 35665 }, - "accessor_2142": { - "bufferView": "bufferView_4848", - "byteOffset": 361776, + "accessor_2274": { + "bufferView": "bufferView_5233", + "byteOffset": 363024, "byteStride": 12, "count": 14, "max": [ @@ -2549,40 +2878,33 @@ ], "type": 35665 }, - "accessor_2158": { - "bufferView": "bufferView_4847", - "byteOffset": 75582, + "accessor_2290": { + "bufferView": "bufferView_5232", + "byteOffset": 75906, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_216": { - "bufferView": "bufferView_4847", - "byteOffset": 75306, - "byteStride": 0, - "count": 114, - "type": 5123 - }, - "accessor_2160": { - "bufferView": "bufferView_4848", - "byteOffset": 361944, + "accessor_2292": { + "bufferView": "bufferView_5233", + "byteOffset": 363192, "byteStride": 12, "count": 14, "max": [ - 1081.21, - 1390.67, - 144.385 + 27.4627, + 35.3231, + 3.66737 ], "min": [ - 1057.57, - 1182.64, - 84.0246 + 26.8624, + 30.0391, + 2.13422 ], "type": 35665 }, - "accessor_2162": { - "bufferView": "bufferView_4848", - "byteOffset": 362112, + "accessor_2294": { + "bufferView": "bufferView_5233", + "byteOffset": 363360, "byteStride": 12, "count": 14, "max": [ @@ -2597,50 +2919,33 @@ ], "type": 35665 }, - "accessor_2178": { - "bufferView": "bufferView_4847", - "byteOffset": 75630, + "accessor_2310": { + "bufferView": "bufferView_5232", + "byteOffset": 75954, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_218": { - "bufferView": "bufferView_4848", - "byteOffset": 360072, - "byteStride": 12, - "count": 64, - "max": [ - 179.689, - 56.8819, - 70.1378 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_2180": { - "bufferView": "bufferView_4848", - "byteOffset": 362280, + "accessor_2312": { + "bufferView": "bufferView_5233", + "byteOffset": 363528, "byteStride": 12, "count": 4, "max": [ - 305.791, - 1390.67, - 84.0246 + 7.76709, + 35.3231, + 2.13422 ], "min": [ - 282.158, - 1215.64, - 84.0246 + 7.1668, + 30.8773, + 2.13422 ], "type": 35665 }, - "accessor_2182": { - "bufferView": "bufferView_4848", - "byteOffset": 362328, + "accessor_2314": { + "bufferView": "bufferView_5233", + "byteOffset": 363576, "byteStride": 12, "count": 4, "max": [ @@ -2655,50 +2960,33 @@ ], "type": 35665 }, - "accessor_2198": { - "bufferView": "bufferView_4847", - "byteOffset": 75642, + "accessor_2330": { + "bufferView": "bufferView_5232", + "byteOffset": 75966, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_220": { - "bufferView": "bufferView_4848", - "byteOffset": 360840, - "byteStride": 12, - "count": 64, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_2200": { - "bufferView": "bufferView_4848", - "byteOffset": 362376, + "accessor_2332": { + "bufferView": "bufferView_5233", + "byteOffset": 363624, "byteStride": 12, "count": 14, "max": [ - 1047.45, - 1390.67, - 144.385 + 26.6051, + 35.3231, + 3.66737 ], "min": [ - 1023.81, - 1149.65, - 84.0246 + 26.0048, + 29.201, + 2.13422 ], "type": 35665 }, - "accessor_2202": { - "bufferView": "bufferView_4848", - "byteOffset": 362544, + "accessor_2334": { + "bufferView": "bufferView_5233", + "byteOffset": 363792, "byteStride": 12, "count": 14, "max": [ @@ -2713,33 +3001,33 @@ ], "type": 35665 }, - "accessor_2218": { - "bufferView": "bufferView_4847", - "byteOffset": 75690, + "accessor_2350": { + "bufferView": "bufferView_5232", + "byteOffset": 76014, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_2220": { - "bufferView": "bufferView_4848", - "byteOffset": 362712, + "accessor_2352": { + "bufferView": "bufferView_5233", + "byteOffset": 363960, "byteStride": 12, "count": 13, "max": [ - 407.077, - 1390.67, - 144.385 + 10.3398, + 35.3231, + 3.66737 ], "min": [ - 383.444, - 1117.53, - 84.0246 + 9.73948, + 28.3852, + 2.13422 ], "type": 35665 }, - "accessor_2222": { - "bufferView": "bufferView_4848", - "byteOffset": 362868, + "accessor_2354": { + "bufferView": "bufferView_5233", + "byteOffset": 364116, "byteStride": 12, "count": 13, "max": [ @@ -2754,33 +3042,40 @@ ], "type": 35665 }, - "accessor_2238": { - "bufferView": "bufferView_4847", - "byteOffset": 75732, + "accessor_236": { + "bufferView": "bufferView_5232", + "byteOffset": 76188, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_2370": { + "bufferView": "bufferView_5232", + "byteOffset": 76056, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_2240": { - "bufferView": "bufferView_4848", - "byteOffset": 363024, + "accessor_2372": { + "bufferView": "bufferView_5233", + "byteOffset": 364272, "byteStride": 12, "count": 8, "max": [ - 960.915, - 1139.52, - 166.052 + 24.4072, + 28.9438, + 4.21771 ], "min": [ - 796.243, - 1122.14, - 163.036 + 20.2246, + 28.5024, + 4.1411 ], "type": 35665 }, - "accessor_2242": { - "bufferView": "bufferView_4848", - "byteOffset": 363120, + "accessor_2374": { + "bufferView": "bufferView_5233", + "byteOffset": 364368, "byteStride": 12, "count": 8, "max": [ @@ -2795,33 +3090,50 @@ ], "type": 35665 }, - "accessor_2258": { - "bufferView": "bufferView_4847", - "byteOffset": 75756, + "accessor_238": { + "bufferView": "bufferView_5233", + "byteOffset": 365136, + "byteStride": 12, + "count": 4, + "max": [ + 3.32293, + 0.681272, + 1.18238 + ], + "min": [ + 1.24117, + 0.681272, + 0.599124 + ], + "type": 35665 + }, + "accessor_2390": { + "bufferView": "bufferView_5232", + "byteOffset": 76080, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_2260": { - "bufferView": "bufferView_4848", - "byteOffset": 363216, + "accessor_2392": { + "bufferView": "bufferView_5233", + "byteOffset": 364464, "byteStride": 12, "count": 12, "max": [ - 1361.56, - 1750.88, - 133.435 + 34.5837, + 44.4723, + 3.38926 ], "min": [ - 1129.05, - 1685.1, - 106.398 + 28.6778, + 42.8017, + 2.7025 ], "type": 35665 }, - "accessor_2262": { - "bufferView": "bufferView_4848", - "byteOffset": 363360, + "accessor_2394": { + "bufferView": "bufferView_5233", + "byteOffset": 364608, "byteStride": 12, "count": 12, "max": [ @@ -2836,33 +3148,50 @@ ], "type": 35665 }, - "accessor_2278": { - "bufferView": "bufferView_4847", - "byteOffset": 75792, + "accessor_240": { + "bufferView": "bufferView_5233", + "byteOffset": 365184, + "byteStride": 12, + "count": 4, + "max": [ + 0, + 1, + 0 + ], + "min": [ + 0, + 1, + 0 + ], + "type": 35665 + }, + "accessor_2410": { + "bufferView": "bufferView_5232", + "byteOffset": 76116, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2280": { - "bufferView": "bufferView_4848", - "byteOffset": 363504, + "accessor_2412": { + "bufferView": "bufferView_5233", + "byteOffset": 364752, "byteStride": 12, "count": 4, "max": [ - 1081.21, - 1390.67, - 144.385 + 27.4627, + 35.3231, + 3.66737 ], "min": [ - 1057.57, - 1390.67, - 84.0246 + 26.8624, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_2282": { - "bufferView": "bufferView_4848", - "byteOffset": 363552, + "accessor_2414": { + "bufferView": "bufferView_5233", + "byteOffset": 364800, "byteStride": 12, "count": 4, "max": [ @@ -2877,33 +3206,33 @@ ], "type": 35665 }, - "accessor_2298": { - "bufferView": "bufferView_4847", - "byteOffset": 75804, + "accessor_2430": { + "bufferView": "bufferView_5232", + "byteOffset": 76128, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_2300": { - "bufferView": "bufferView_4848", - "byteOffset": 363600, + "accessor_2432": { + "bufferView": "bufferView_5233", + "byteOffset": 364848, "byteStride": 12, "count": 8, "max": [ - 867.62, - 818.629, - 116.019 + 22.0375, + 20.7932, + 2.94689 ], "min": [ - 808.763, - 682.534, - 116.019 + 20.5426, + 17.3364, + 2.94689 ], "type": 35665 }, - "accessor_2302": { - "bufferView": "bufferView_4848", - "byteOffset": 363696, + "accessor_2434": { + "bufferView": "bufferView_5233", + "byteOffset": 364944, "byteStride": 12, "count": 8, "max": [ @@ -2918,33 +3247,33 @@ ], "type": 35665 }, - "accessor_2318": { - "bufferView": "bufferView_4847", - "byteOffset": 75852, + "accessor_2450": { + "bufferView": "bufferView_5232", + "byteOffset": 76176, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2320": { - "bufferView": "bufferView_4848", - "byteOffset": 363792, + "accessor_2452": { + "bufferView": "bufferView_5233", + "byteOffset": 365040, "byteStride": 12, "count": 4, "max": [ - 1013.68, - 1390.67, - 144.385 + 25.7476, + 35.3231, + 3.66737 ], "min": [ - 990.05, - 1390.67, - 84.0246 + 25.1473, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_2322": { - "bufferView": "bufferView_4848", - "byteOffset": 363840, + "accessor_2454": { + "bufferView": "bufferView_5233", + "byteOffset": 365088, "byteStride": 12, "count": 4, "max": [ @@ -2959,33 +3288,33 @@ ], "type": 35665 }, - "accessor_2338": { - "bufferView": "bufferView_4847", - "byteOffset": 75876, + "accessor_2470": { + "bufferView": "bufferView_5232", + "byteOffset": 76200, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_2340": { - "bufferView": "bufferView_4848", - "byteOffset": 363984, + "accessor_2472": { + "bufferView": "bufferView_5233", + "byteOffset": 365232, "byteStride": 12, "count": 6, "max": [ - 862.274, - 1192.11, - 116.019 + 21.9018, + 30.2796, + 2.94689 ], "min": [ - 802.042, - 1067.45, - 116.019 + 20.3719, + 27.1132, + 2.94689 ], "type": 35665 }, - "accessor_2342": { - "bufferView": "bufferView_4848", - "byteOffset": 364056, + "accessor_2474": { + "bufferView": "bufferView_5233", + "byteOffset": 365304, "byteStride": 12, "count": 6, "max": [ @@ -3000,40 +3329,33 @@ ], "type": 35665 }, - "accessor_2358": { - "bufferView": "bufferView_4847", - "byteOffset": 75900, + "accessor_2490": { + "bufferView": "bufferView_5232", + "byteOffset": 76224, "byteStride": 0, "count": 189, "type": 5123 }, - "accessor_236": { - "bufferView": "bufferView_4847", - "byteOffset": 75864, - "byteStride": 0, - "count": 6, - "type": 5123 - }, - "accessor_2360": { - "bufferView": "bufferView_4848", - "byteOffset": 364128, + "accessor_2492": { + "bufferView": "bufferView_5233", + "byteOffset": 365376, "byteStride": 12, "count": 75, "max": [ - 960.915, - 1405.6, - 163.036 + 24.4072, + 35.7023, + 4.1411 ], "min": [ - 796.243, - 1062.89, - 116.019 + 20.2246, + 26.9974, + 2.94689 ], "type": 35665 }, - "accessor_2362": { - "bufferView": "bufferView_4848", - "byteOffset": 365028, + "accessor_2494": { + "bufferView": "bufferView_5233", + "byteOffset": 366276, "byteStride": 12, "count": 75, "max": [ @@ -3048,50 +3370,33 @@ ], "type": 35665 }, - "accessor_2378": { - "bufferView": "bufferView_4847", - "byteOffset": 76278, + "accessor_2510": { + "bufferView": "bufferView_5232", + "byteOffset": 76602, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_238": { - "bufferView": "bufferView_4848", - "byteOffset": 363888, - "byteStride": 12, - "count": 4, - "max": [ - 130.824, - 26.8217, - 46.5503 - ], - "min": [ - 48.8649, - 26.8217, - 23.5876 - ], - "type": 35665 - }, - "accessor_2380": { - "bufferView": "bufferView_4848", - "byteOffset": 365928, + "accessor_2512": { + "bufferView": "bufferView_5233", + "byteOffset": 367176, "byteStride": 12, "count": 9, "max": [ - 894.884, - 1076.35, - 116.019 + 22.7301, + 27.3393, + 2.94689 ], "min": [ - 862.274, - 938.934, - 116.019 + 21.9018, + 23.8489, + 2.94689 ], "type": 35665 }, - "accessor_2382": { - "bufferView": "bufferView_4848", - "byteOffset": 366036, + "accessor_2514": { + "bufferView": "bufferView_5233", + "byteOffset": 367284, "byteStride": 12, "count": 9, "max": [ @@ -3106,50 +3411,33 @@ ], "type": 35665 }, - "accessor_2398": { - "bufferView": "bufferView_4847", - "byteOffset": 76320, + "accessor_2530": { + "bufferView": "bufferView_5232", + "byteOffset": 76644, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_240": { - "bufferView": "bufferView_4848", - "byteOffset": 363936, - "byteStride": 12, - "count": 4, - "max": [ - 0, - 1, - 0 - ], - "min": [ - 0, - 1, - 0 - ], - "type": 35665 - }, - "accessor_2400": { - "bufferView": "bufferView_4848", - "byteOffset": 366144, + "accessor_2532": { + "bufferView": "bufferView_5233", + "byteOffset": 367392, "byteStride": 12, "count": 4, "max": [ - 728.786, - 350.536, - 1.23535 + 18.5112, + 8.9036, + 0.0313778 ], "min": [ - 702.955, - 126.455, - 1.23535 + 17.8551, + 3.21196, + 0.0313778 ], "type": 35665 }, - "accessor_2402": { - "bufferView": "bufferView_4848", - "byteOffset": 366192, + "accessor_2534": { + "bufferView": "bufferView_5233", + "byteOffset": 367440, "byteStride": 12, "count": 4, "max": [ @@ -3164,33 +3452,33 @@ ], "type": 35665 }, - "accessor_2418": { - "bufferView": "bufferView_4847", - "byteOffset": 76332, + "accessor_2550": { + "bufferView": "bufferView_5232", + "byteOffset": 76656, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2420": { - "bufferView": "bufferView_4848", - "byteOffset": 366240, + "accessor_2552": { + "bufferView": "bufferView_5233", + "byteOffset": 367488, "byteStride": 12, "count": 4, "max": [ - 758.466, - 377.288, - 1.23535 + 19.265, + 9.58311, + 0.0313778 ], "min": [ - 742.698, - 362.281, - 1.23535 + 18.8645, + 9.20194, + 0.0313778 ], "type": 35665 }, - "accessor_2422": { - "bufferView": "bufferView_4848", - "byteOffset": 366288, + "accessor_2554": { + "bufferView": "bufferView_5233", + "byteOffset": 367536, "byteStride": 12, "count": 4, "max": [ @@ -3205,33 +3493,40 @@ ], "type": 35665 }, - "accessor_2438": { - "bufferView": "bufferView_4847", - "byteOffset": 76344, + "accessor_256": { + "bufferView": "bufferView_5232", + "byteOffset": 77688, + "byteStride": 0, + "count": 1332, + "type": 5123 + }, + "accessor_2570": { + "bufferView": "bufferView_5232", + "byteOffset": 76668, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_2440": { - "bufferView": "bufferView_4848", - "byteOffset": 366336, + "accessor_2572": { + "bufferView": "bufferView_5233", + "byteOffset": 367584, "byteStride": 12, "count": 20, "max": [ - 834.814, - 1207.91, - 170.281 + 21.2043, + 30.681, + 4.32514 ], "min": [ - 825.74, - 1142.62, - 168.797 + 20.9738, + 29.0226, + 4.28743 ], "type": 35665 }, - "accessor_2442": { - "bufferView": "bufferView_4848", - "byteOffset": 366576, + "accessor_2574": { + "bufferView": "bufferView_5233", + "byteOffset": 367824, "byteStride": 12, "count": 20, "max": [ @@ -3246,33 +3541,50 @@ ], "type": 35665 }, - "accessor_2458": { - "bufferView": "bufferView_4847", - "byteOffset": 76404, + "accessor_258": { + "bufferView": "bufferView_5233", + "byteOffset": 374064, + "byteStride": 12, + "count": 334, + "max": [ + 4.29056, + 2.16304, + 0.195 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_2590": { + "bufferView": "bufferView_5232", + "byteOffset": 76728, "byteStride": 0, "count": 351, "type": 5123 }, - "accessor_2460": { - "bufferView": "bufferView_4848", - "byteOffset": 366816, + "accessor_2592": { + "bufferView": "bufferView_5233", + "byteOffset": 368064, "byteStride": 12, "count": 189, "max": [ - 886.208, - 661.693, - 107.472 + 22.5097, + 16.807, + 2.72978 ], "min": [ - 779.042, - 527.251, - 16.2887 + 19.7877, + 13.3922, + 0.413732 ], "type": 35665 }, - "accessor_2462": { - "bufferView": "bufferView_4848", - "byteOffset": 369084, + "accessor_2594": { + "bufferView": "bufferView_5233", + "byteOffset": 370332, "byteStride": 12, "count": 189, "max": [ @@ -3287,33 +3599,50 @@ ], "type": 35665 }, - "accessor_2478": { - "bufferView": "bufferView_4847", - "byteOffset": 77106, + "accessor_260": { + "bufferView": "bufferView_5233", + "byteOffset": 378072, + "byteStride": 12, + "count": 334, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -0.982692, + -1 + ], + "type": 35665 + }, + "accessor_2610": { + "bufferView": "bufferView_5232", + "byteOffset": 77430, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2480": { - "bufferView": "bufferView_4848", - "byteOffset": 371352, + "accessor_2612": { + "bufferView": "bufferView_5233", + "byteOffset": 372600, "byteStride": 12, "count": 4, "max": [ - 969.703, - 1104.05, - 10.4646 + 24.6304, + 28.0428, + 0.265801 ], "min": [ - 883.726, - 1066.94, - 10.4646 + 22.4466, + 27.1002, + 0.265801 ], "type": 35665 }, - "accessor_2482": { - "bufferView": "bufferView_4848", - "byteOffset": 371400, + "accessor_2614": { + "bufferView": "bufferView_5233", + "byteOffset": 372648, "byteStride": 12, "count": 4, "max": [ @@ -3328,33 +3657,33 @@ ], "type": 35665 }, - "accessor_2498": { - "bufferView": "bufferView_4847", - "byteOffset": 77118, + "accessor_2630": { + "bufferView": "bufferView_5232", + "byteOffset": 77442, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2500": { - "bufferView": "bufferView_4848", - "byteOffset": 371448, + "accessor_2632": { + "bufferView": "bufferView_5233", + "byteOffset": 372696, "byteStride": 12, "count": 4, "max": [ - 873.432, - 1104.05, - 10.4646 + 22.1852, + 28.0428, + 0.265801 ], "min": [ - 787.455, - 1066.94, - 10.4646 + 20.0014, + 27.1002, + 0.265801 ], "type": 35665 }, - "accessor_2502": { - "bufferView": "bufferView_4848", - "byteOffset": 371496, + "accessor_2634": { + "bufferView": "bufferView_5233", + "byteOffset": 372744, "byteStride": 12, "count": 4, "max": [ @@ -3369,33 +3698,33 @@ ], "type": 35665 }, - "accessor_2518": { - "bufferView": "bufferView_4847", - "byteOffset": 77130, + "accessor_2650": { + "bufferView": "bufferView_5232", + "byteOffset": 77454, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_2520": { - "bufferView": "bufferView_4848", - "byteOffset": 371544, + "accessor_2652": { + "bufferView": "bufferView_5233", + "byteOffset": 372792, "byteStride": 12, "count": 9, "max": [ - 955.392, - 1051.09, - 10.4646 + 24.2669, + 26.6976, + 0.265801 ], "min": [ - 797.313, - 950.736, - 10.4646 + 20.2517, + 24.1487, + 0.265801 ], "type": 35665 }, - "accessor_2522": { - "bufferView": "bufferView_4848", - "byteOffset": 371652, + "accessor_2654": { + "bufferView": "bufferView_5233", + "byteOffset": 372900, "byteStride": 12, "count": 9, "max": [ @@ -3410,33 +3739,33 @@ ], "type": 35665 }, - "accessor_2538": { - "bufferView": "bufferView_4847", - "byteOffset": 77172, + "accessor_2670": { + "bufferView": "bufferView_5232", + "byteOffset": 77496, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_2540": { - "bufferView": "bufferView_4848", - "byteOffset": 371760, + "accessor_2672": { + "bufferView": "bufferView_5233", + "byteOffset": 373008, "byteStride": 12, "count": 20, "max": [ - 497.565, - 648.511, - 104.754 + 12.6381, + 16.4722, + 2.66075 ], "min": [ - 497.169, - 602.996, - 20.394 + 12.6281, + 15.3161, + 0.518008 ], "type": 35665 }, - "accessor_2542": { - "bufferView": "bufferView_4848", - "byteOffset": 372000, + "accessor_2674": { + "bufferView": "bufferView_5233", + "byteOffset": 373248, "byteStride": 12, "count": 20, "max": [ @@ -3451,40 +3780,33 @@ ], "type": 35665 }, - "accessor_2558": { - "bufferView": "bufferView_4847", - "byteOffset": 77232, + "accessor_2690": { + "bufferView": "bufferView_5232", + "byteOffset": 77556, "byteStride": 0, "count": 57, "type": 5123 }, - "accessor_256": { - "bufferView": "bufferView_4847", - "byteOffset": 77364, - "byteStride": 0, - "count": 1332, - "type": 5123 - }, - "accessor_2560": { - "bufferView": "bufferView_4848", - "byteOffset": 372240, + "accessor_2692": { + "bufferView": "bufferView_5233", + "byteOffset": 373488, "byteStride": 12, "count": 19, "max": [ - 961.109, - 1054.33, - 10.4646 + 24.4122, + 26.7799, + 0.265801 ], "min": [ - 793.191, - 947.494, - 10.4646 + 20.147, + 24.0663, + 0.265801 ], "type": 35665 }, - "accessor_2562": { - "bufferView": "bufferView_4848", - "byteOffset": 372468, + "accessor_2694": { + "bufferView": "bufferView_5233", + "byteOffset": 373716, "byteStride": 12, "count": 19, "max": [ @@ -3499,50 +3821,33 @@ ], "type": 35665 }, - "accessor_2578": { - "bufferView": "bufferView_4847", - "byteOffset": 77346, + "accessor_2710": { + "bufferView": "bufferView_5232", + "byteOffset": 77670, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_258": { - "bufferView": "bufferView_4848", - "byteOffset": 372816, + "accessor_2712": { + "bufferView": "bufferView_5233", + "byteOffset": 373944, "byteStride": 12, - "count": 334, + "count": 5, "max": [ - 168.92, - 85.1591, - 7.67717 + 25.7476, + 35.3231, + 2.13422 ], "min": [ - 0, - 0, - 0 + 25.1473, + 28.3852, + 2.13422 ], "type": 35665 }, - "accessor_2580": { - "bufferView": "bufferView_4848", - "byteOffset": 372696, - "byteStride": 12, - "count": 5, - "max": [ - 1013.68, - 1390.67, - 84.0246 - ], - "min": [ - 990.05, - 1117.53, - 84.0246 - ], - "type": 35665 - }, - "accessor_2582": { - "bufferView": "bufferView_4848", - "byteOffset": 372756, + "accessor_2714": { + "bufferView": "bufferView_5233", + "byteOffset": 374004, "byteStride": 12, "count": 5, "max": [ @@ -3557,50 +3862,33 @@ ], "type": 35665 }, - "accessor_2598": { - "bufferView": "bufferView_4847", - "byteOffset": 80028, + "accessor_2730": { + "bufferView": "bufferView_5232", + "byteOffset": 80352, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_260": { - "bufferView": "bufferView_4848", - "byteOffset": 376824, - "byteStride": 12, - "count": 334, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -0.982692, - -1 - ], - "type": 35665 - }, - "accessor_2600": { - "bufferView": "bufferView_4848", - "byteOffset": 380832, + "accessor_2732": { + "bufferView": "bufferView_5233", + "byteOffset": 382080, "byteStride": 12, "count": 6, "max": [ - 732.224, - 1305, - 190.758 + 18.5985, + 33.147, + 4.84524 ], "min": [ - 664.903, - 1217.91, - 190.758 + 16.8885, + 30.935, + 4.84524 ], "type": 35665 }, - "accessor_2602": { - "bufferView": "bufferView_4848", - "byteOffset": 380904, + "accessor_2734": { + "bufferView": "bufferView_5233", + "byteOffset": 382152, "byteStride": 12, "count": 6, "max": [ @@ -3615,33 +3903,33 @@ ], "type": 35665 }, - "accessor_2618": { - "bufferView": "bufferView_4847", - "byteOffset": 80052, + "accessor_2750": { + "bufferView": "bufferView_5232", + "byteOffset": 80376, "byteStride": 0, "count": 126, "type": 5123 }, - "accessor_2620": { - "bufferView": "bufferView_4848", - "byteOffset": 380976, + "accessor_2752": { + "bufferView": "bufferView_5233", + "byteOffset": 382224, "byteStride": 12, "count": 50, "max": [ - 781.741, - 1129.4, - 179.034 + 19.8562, + 28.6868, + 4.54746 ], "min": [ - 725.66, - 653.326, - 131.914 + 18.4318, + 16.5945, + 3.35062 ], "type": 35665 }, - "accessor_2622": { - "bufferView": "bufferView_4848", - "byteOffset": 381576, + "accessor_2754": { + "bufferView": "bufferView_5233", + "byteOffset": 382824, "byteStride": 12, "count": 50, "max": [ @@ -3656,33 +3944,40 @@ ], "type": 35665 }, - "accessor_2638": { - "bufferView": "bufferView_4847", - "byteOffset": 80304, + "accessor_276": { + "bufferView": "bufferView_5232", + "byteOffset": 81300, + "byteStride": 0, + "count": 39, + "type": 5123 + }, + "accessor_2770": { + "bufferView": "bufferView_5232", + "byteOffset": 80628, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2640": { - "bufferView": "bufferView_4848", - "byteOffset": 382176, + "accessor_2772": { + "bufferView": "bufferView_5233", + "byteOffset": 383424, "byteStride": 12, "count": 4, "max": [ - 894.884, - 1151.61, - 116.019 + 22.7301, + 29.2508, + 2.94689 ], "min": [ - 889.048, - 1095.42, - 116.019 + 22.5818, + 27.8236, + 2.94689 ], "type": 35665 }, - "accessor_2642": { - "bufferView": "bufferView_4848", - "byteOffset": 382224, + "accessor_2774": { + "bufferView": "bufferView_5233", + "byteOffset": 383472, "byteStride": 12, "count": 4, "max": [ @@ -3697,33 +3992,50 @@ ], "type": 35665 }, - "accessor_2658": { - "bufferView": "bufferView_4847", - "byteOffset": 80316, + "accessor_278": { + "bufferView": "bufferView_5233", + "byteOffset": 387696, + "byteStride": 12, + "count": 15, + "max": [ + 4.04668, + 1.94081, + 0 + ], + "min": [ + 0.140534, + 0.249615, + 0 + ], + "type": 35665 + }, + "accessor_2790": { + "bufferView": "bufferView_5232", + "byteOffset": 80640, "byteStride": 0, "count": 78, "type": 5123 }, - "accessor_2660": { - "bufferView": "bufferView_4848", - "byteOffset": 382272, + "accessor_2792": { + "bufferView": "bufferView_5233", + "byteOffset": 383520, "byteStride": 12, "count": 28, "max": [ - 975.513, - 1737.14, - 159.768 + 24.778, + 44.1234, + 4.05812 ], "min": [ - 791.781, - 1737.14, - 19.4928 + 20.1112, + 44.1234, + 0.495116 ], "type": 35665 }, - "accessor_2662": { - "bufferView": "bufferView_4848", - "byteOffset": 382608, + "accessor_2794": { + "bufferView": "bufferView_5233", + "byteOffset": 383856, "byteStride": 12, "count": 28, "max": [ @@ -3738,33 +4050,50 @@ ], "type": 35665 }, - "accessor_2678": { - "bufferView": "bufferView_4847", - "byteOffset": 80472, + "accessor_280": { + "bufferView": "bufferView_5233", + "byteOffset": 387876, + "byteStride": 12, + "count": 15, + "max": [ + 0, + 0, + -1 + ], + "min": [ + 0, + 0, + -1 + ], + "type": 35665 + }, + "accessor_2810": { + "bufferView": "bufferView_5232", + "byteOffset": 80796, "byteStride": 0, "count": 126, "type": 5123 }, - "accessor_2680": { - "bufferView": "bufferView_4848", - "byteOffset": 382944, + "accessor_2812": { + "bufferView": "bufferView_5233", + "byteOffset": 384192, "byteStride": 12, "count": 72, "max": [ - 960.915, - 1409.32, - 163.036 + 24.4072, + 35.7966, + 4.1411 ], "min": [ - 796.243, - 1196.67, - 116.019 + 20.2246, + 30.3954, + 2.94689 ], "type": 35665 }, - "accessor_2682": { - "bufferView": "bufferView_4848", - "byteOffset": 383808, + "accessor_2814": { + "bufferView": "bufferView_5233", + "byteOffset": 385056, "byteStride": 12, "count": 72, "max": [ @@ -3779,33 +4108,33 @@ ], "type": 35665 }, - "accessor_2698": { - "bufferView": "bufferView_4847", - "byteOffset": 80724, + "accessor_2830": { + "bufferView": "bufferView_5232", + "byteOffset": 81048, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2700": { - "bufferView": "bufferView_4848", - "byteOffset": 384672, + "accessor_2832": { + "bufferView": "bufferView_5233", + "byteOffset": 385920, "byteStride": 12, "count": 4, "max": [ - 1047.45, - 1390.67, - 144.385 + 26.6051, + 35.3231, + 3.66737 ], "min": [ - 1023.81, - 1390.67, - 84.0246 + 26.0048, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_2702": { - "bufferView": "bufferView_4848", - "byteOffset": 384720, + "accessor_2834": { + "bufferView": "bufferView_5233", + "byteOffset": 385968, "byteStride": 12, "count": 4, "max": [ @@ -3820,33 +4149,33 @@ ], "type": 35665 }, - "accessor_2718": { - "bufferView": "bufferView_4847", - "byteOffset": 80736, + "accessor_2850": { + "bufferView": "bufferView_5232", + "byteOffset": 81060, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_2720": { - "bufferView": "bufferView_4848", - "byteOffset": 384768, + "accessor_2852": { + "bufferView": "bufferView_5233", + "byteOffset": 386016, "byteStride": 12, "count": 13, "max": [ - 1013.68, - 1390.67, - 144.385 + 25.7476, + 35.3231, + 3.66737 ], "min": [ - 990.05, - 1117.53, - 84.0246 + 25.1473, + 28.3852, + 2.13422 ], "type": 35665 }, - "accessor_2722": { - "bufferView": "bufferView_4848", - "byteOffset": 384924, + "accessor_2854": { + "bufferView": "bufferView_5233", + "byteOffset": 386172, "byteStride": 12, "count": 13, "max": [ @@ -3861,33 +4190,33 @@ ], "type": 35665 }, - "accessor_2738": { - "bufferView": "bufferView_4847", - "byteOffset": 80778, + "accessor_2870": { + "bufferView": "bufferView_5232", + "byteOffset": 81102, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2740": { - "bufferView": "bufferView_4848", - "byteOffset": 385080, + "accessor_2872": { + "bufferView": "bufferView_5233", + "byteOffset": 386328, "byteStride": 12, "count": 4, "max": [ - 864.936, - 816.058, - 116.019 + 21.9694, + 20.7279, + 2.94689 ], "min": [ - 811.447, - 685.105, - 116.019 + 20.6107, + 17.4017, + 2.94689 ], "type": 35665 }, - "accessor_2742": { - "bufferView": "bufferView_4848", - "byteOffset": 385128, + "accessor_2874": { + "bufferView": "bufferView_5233", + "byteOffset": 386376, "byteStride": 12, "count": 4, "max": [ @@ -3902,40 +4231,33 @@ ], "type": 35665 }, - "accessor_2758": { - "bufferView": "bufferView_4847", - "byteOffset": 80790, + "accessor_2890": { + "bufferView": "bufferView_5232", + "byteOffset": 81114, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_276": { - "bufferView": "bufferView_4847", - "byteOffset": 80976, - "byteStride": 0, - "count": 39, - "type": 5123 - }, - "accessor_2760": { - "bufferView": "bufferView_4848", - "byteOffset": 385176, + "accessor_2892": { + "bufferView": "bufferView_5233", + "byteOffset": 386424, "byteStride": 12, "count": 5, "max": [ - 1091.45, - 1719.04, - 126.569 + 27.7229, + 43.6637, + 3.21484 ], "min": [ - 1013.57, - 1719.04, - 76.7926 + 25.7446, + 43.6637, + 1.95053 ], "type": 35665 }, - "accessor_2762": { - "bufferView": "bufferView_4848", - "byteOffset": 385236, + "accessor_2894": { + "bufferView": "bufferView_5233", + "byteOffset": 386484, "byteStride": 12, "count": 5, "max": [ @@ -3950,50 +4272,33 @@ ], "type": 35665 }, - "accessor_2778": { - "bufferView": "bufferView_4847", - "byteOffset": 80808, + "accessor_2910": { + "bufferView": "bufferView_5232", + "byteOffset": 81132, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_278": { - "bufferView": "bufferView_4848", - "byteOffset": 386448, - "byteStride": 12, - "count": 15, - "max": [ - 159.318, - 76.4099, - 0 - ], - "min": [ - 5.53284, - 9.82736, - 0 - ], - "type": 35665 - }, - "accessor_2780": { - "bufferView": "bufferView_4848", - "byteOffset": 385296, + "accessor_2912": { + "bufferView": "bufferView_5233", + "byteOffset": 386544, "byteStride": 12, "count": 16, "max": [ - 796.243, - 1193.55, - 159.334 + 20.2246, + 30.3163, + 4.04709 ], "min": [ - 794.792, - 1073.16, - 119.721 + 20.1877, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_2782": { - "bufferView": "bufferView_4848", - "byteOffset": 385488, + "accessor_2914": { + "bufferView": "bufferView_5233", + "byteOffset": 386736, "byteStride": 12, "count": 16, "max": [ @@ -4008,50 +4313,33 @@ ], "type": 35665 }, - "accessor_2798": { - "bufferView": "bufferView_4847", - "byteOffset": 80856, + "accessor_2930": { + "bufferView": "bufferView_5232", + "byteOffset": 81180, "byteStride": 0, "count": 48, "type": 5123 }, - "accessor_280": { - "bufferView": "bufferView_4848", - "byteOffset": 386628, - "byteStride": 12, - "count": 15, - "max": [ - 0, - 0, - -1 - ], - "min": [ - 0, - 0, - -1 - ], - "type": 35665 - }, - "accessor_2800": { - "bufferView": "bufferView_4848", - "byteOffset": 385680, + "accessor_2932": { + "bufferView": "bufferView_5233", + "byteOffset": 386928, "byteStride": 12, "count": 24, "max": [ - 497.565, - 651.581, - 108.399 + 12.6381, + 16.5502, + 2.75333 ], "min": [ - 497.169, - 599.926, - 16.7492 + 12.6281, + 15.2381, + 0.425429 ], "type": 35665 }, - "accessor_2802": { - "bufferView": "bufferView_4848", - "byteOffset": 385968, + "accessor_2934": { + "bufferView": "bufferView_5233", + "byteOffset": 387216, "byteStride": 12, "count": 24, "max": [ @@ -4066,33 +4354,33 @@ ], "type": 35665 }, - "accessor_2818": { - "bufferView": "bufferView_4847", - "byteOffset": 80952, + "accessor_2950": { + "bufferView": "bufferView_5232", + "byteOffset": 81276, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2820": { - "bufferView": "bufferView_4848", - "byteOffset": 386256, + "accessor_2952": { + "bufferView": "bufferView_5233", + "byteOffset": 387504, "byteStride": 12, "count": 4, "max": [ - 794.792, - 1193.55, - 159.334 + 20.1877, + 30.3163, + 4.04709 ], "min": [ - 794.792, - 1073.16, - 119.721 + 20.1877, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_2822": { - "bufferView": "bufferView_4848", - "byteOffset": 386304, + "accessor_2954": { + "bufferView": "bufferView_5233", + "byteOffset": 387552, "byteStride": 12, "count": 4, "max": [ @@ -4107,33 +4395,40 @@ ], "type": 35665 }, - "accessor_2838": { - "bufferView": "bufferView_4847", - "byteOffset": 80964, + "accessor_296": { + "bufferView": "bufferView_5232", + "byteOffset": 0, + "byteStride": 0, + "count": 3, + "type": 5123 + }, + "accessor_2970": { + "bufferView": "bufferView_5232", + "byteOffset": 81288, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2840": { - "bufferView": "bufferView_4848", - "byteOffset": 386352, + "accessor_2972": { + "bufferView": "bufferView_5233", + "byteOffset": 387600, "byteStride": 12, "count": 4, "max": [ - 960.915, - 1196.67, - 163.036 + 24.4072, + 30.3954, + 4.1411 ], "min": [ - 796.243, - 1139.52, - 163.036 + 20.2246, + 28.9438, + 4.1411 ], "type": 35665 }, - "accessor_2842": { - "bufferView": "bufferView_4848", - "byteOffset": 386400, + "accessor_2974": { + "bufferView": "bufferView_5233", + "byteOffset": 387648, "byteStride": 12, "count": 4, "max": [ @@ -4148,33 +4443,50 @@ ], "type": 35665 }, - "accessor_2858": { - "bufferView": "bufferView_4847", - "byteOffset": 81054, + "accessor_298": { + "bufferView": "bufferView_5233", + "byteOffset": 0, + "byteStride": 12, + "count": 3, + "max": [ + 3.99896, + 0.976969, + 0 + ], + "min": [ + 3.99819, + 0.976668, + 0 + ], + "type": 35665 + }, + "accessor_2990": { + "bufferView": "bufferView_5232", + "byteOffset": 81378, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_2860": { - "bufferView": "bufferView_4848", - "byteOffset": 386808, + "accessor_2992": { + "bufferView": "bufferView_5233", + "byteOffset": 388056, "byteStride": 12, "count": 4, "max": [ - 868.11, - 1151.61, - 116.019 + 22.05, + 29.2508, + 2.94689 ], "min": [ - 862.274, - 1095.42, - 116.019 + 21.9018, + 27.8236, + 2.94689 ], "type": 35665 }, - "accessor_2862": { - "bufferView": "bufferView_4848", - "byteOffset": 386856, + "accessor_2994": { + "bufferView": "bufferView_5233", + "byteOffset": 388104, "byteStride": 12, "count": 4, "max": [ @@ -4189,33 +4501,50 @@ ], "type": 35665 }, - "accessor_2878": { - "bufferView": "bufferView_4847", - "byteOffset": 81066, + "accessor_300": { + "bufferView": "bufferView_5233", + "byteOffset": 36, + "byteStride": 12, + "count": 3, + "max": [ + 0, + 0, + -1 + ], + "min": [ + 0, + 0, + -1 + ], + "type": 35665 + }, + "accessor_3010": { + "bufferView": "bufferView_5232", + "byteOffset": 81390, "byteStride": 0, "count": 162, "type": 5123 }, - "accessor_2880": { - "bufferView": "bufferView_4848", - "byteOffset": 386904, + "accessor_3012": { + "bufferView": "bufferView_5233", + "byteOffset": 388152, "byteStride": 12, "count": 56, "max": [ - 766.89, - 869.697, - 212.023 + 19.479, + 22.0903, + 5.38537 ], "min": [ - 630.237, - 834.833, - 203.585 + 16.008, + 21.2047, + 5.17107 ], "type": 35665 }, - "accessor_2882": { - "bufferView": "bufferView_4848", - "byteOffset": 387576, + "accessor_3014": { + "bufferView": "bufferView_5233", + "byteOffset": 388824, "byteStride": 12, "count": 56, "max": [ @@ -4230,33 +4559,33 @@ ], "type": 35665 }, - "accessor_2898": { - "bufferView": "bufferView_4847", - "byteOffset": 81390, + "accessor_3030": { + "bufferView": "bufferView_5232", + "byteOffset": 81714, "byteStride": 0, "count": 33, "type": 5123 }, - "accessor_2900": { - "bufferView": "bufferView_4848", - "byteOffset": 388248, + "accessor_3032": { + "bufferView": "bufferView_5233", + "byteOffset": 389496, "byteStride": 12, "count": 11, "max": [ - 406.008, - 1739.99, - 143.498 + 10.3126, + 44.1958, + 3.64484 ], "min": [ - 283.227, - 1739.99, - 59.8634 + 7.19396, + 44.1958, + 1.52053 ], "type": 35665 }, - "accessor_2902": { - "bufferView": "bufferView_4848", - "byteOffset": 388380, + "accessor_3034": { + "bufferView": "bufferView_5233", + "byteOffset": 389628, "byteStride": 12, "count": 11, "max": [ @@ -4271,33 +4600,33 @@ ], "type": 35665 }, - "accessor_2918": { - "bufferView": "bufferView_4847", - "byteOffset": 81456, + "accessor_3050": { + "bufferView": "bufferView_5232", + "byteOffset": 81780, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_2920": { - "bufferView": "bufferView_4848", - "byteOffset": 388512, + "accessor_3052": { + "bufferView": "bufferView_5233", + "byteOffset": 389760, "byteStride": 12, "count": 18, "max": [ - 629.86, - 884.13, - 213.732 + 15.9984, + 22.4569, + 5.4288 ], "min": [ - 625.617, - 875.623, - 203.164 + 15.8907, + 22.2408, + 5.16037 ], "type": 35665 }, - "accessor_2922": { - "bufferView": "bufferView_4848", - "byteOffset": 388728, + "accessor_3054": { + "bufferView": "bufferView_5233", + "byteOffset": 389976, "byteStride": 12, "count": 18, "max": [ @@ -4312,33 +4641,33 @@ ], "type": 35665 }, - "accessor_2938": { - "bufferView": "bufferView_4847", - "byteOffset": 81516, + "accessor_3070": { + "bufferView": "bufferView_5232", + "byteOffset": 81840, "byteStride": 0, "count": 39, "type": 5123 }, - "accessor_2940": { - "bufferView": "bufferView_4848", - "byteOffset": 388944, + "accessor_3072": { + "bufferView": "bufferView_5233", + "byteOffset": 390192, "byteStride": 12, "count": 17, "max": [ - 624.087, - 1812.29, - 231.164 + 15.8518, + 46.0321, + 5.87158 ], "min": [ - 624.087, - 1537.87, - 66.7596 + 15.8518, + 39.0619, + 1.69569 ], "type": 35665 }, - "accessor_2942": { - "bufferView": "bufferView_4848", - "byteOffset": 389148, + "accessor_3074": { + "bufferView": "bufferView_5233", + "byteOffset": 390396, "byteStride": 12, "count": 17, "max": [ @@ -4353,40 +4682,33 @@ ], "type": 35665 }, - "accessor_2958": { - "bufferView": "bufferView_4847", - "byteOffset": 81594, + "accessor_3090": { + "bufferView": "bufferView_5232", + "byteOffset": 81918, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_296": { - "bufferView": "bufferView_4847", - "byteOffset": 0, - "byteStride": 0, - "count": 3, - "type": 5123 - }, - "accessor_2960": { - "bufferView": "bufferView_4848", - "byteOffset": 389352, + "accessor_3092": { + "bufferView": "bufferView_5233", + "byteOffset": 390600, "byteStride": 12, "count": 12, "max": [ - 397.244, - 1739.99, - 135.313 + 10.09, + 44.1958, + 3.43695 ], "min": [ - 291.991, - 1719.04, - 68.0481 + 7.41657, + 43.6637, + 1.72842 ], "type": 35665 }, - "accessor_2962": { - "bufferView": "bufferView_4848", - "byteOffset": 389496, + "accessor_3094": { + "bufferView": "bufferView_5233", + "byteOffset": 390744, "byteStride": 12, "count": 12, "max": [ @@ -4401,50 +4723,33 @@ ], "type": 35665 }, - "accessor_2978": { - "bufferView": "bufferView_4847", - "byteOffset": 81654, + "accessor_3110": { + "bufferView": "bufferView_5232", + "byteOffset": 81978, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_298": { - "bufferView": "bufferView_4848", - "byteOffset": 0, - "byteStride": 12, - "count": 3, - "max": [ - 157.439, - 38.4633, - 0 - ], - "min": [ - 157.409, - 38.4515, - 0 - ], - "type": 35665 - }, - "accessor_2980": { - "bufferView": "bufferView_4848", - "byteOffset": 389640, + "accessor_3112": { + "bufferView": "bufferView_5233", + "byteOffset": 390888, "byteStride": 12, "count": 5, "max": [ - 383.561, - 1719.04, - 126.569 + 9.74246, + 43.6637, + 3.21484 ], "min": [ - 305.674, - 1719.04, - 76.7926 + 7.76411, + 43.6637, + 1.95053 ], "type": 35665 }, - "accessor_2982": { - "bufferView": "bufferView_4848", - "byteOffset": 389700, + "accessor_3114": { + "bufferView": "bufferView_5233", + "byteOffset": 390948, "byteStride": 12, "count": 5, "max": [ @@ -4459,50 +4764,33 @@ ], "type": 35665 }, - "accessor_2998": { - "bufferView": "bufferView_4847", - "byteOffset": 81672, + "accessor_3130": { + "bufferView": "bufferView_5232", + "byteOffset": 81996, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_300": { - "bufferView": "bufferView_4848", - "byteOffset": 36, - "byteStride": 12, - "count": 3, - "max": [ - 0, - 0, - -1 - ], - "min": [ - 0, - 0, - -1 - ], - "type": 35665 - }, - "accessor_3000": { - "bufferView": "bufferView_4848", - "byteOffset": 389760, + "accessor_3132": { + "bufferView": "bufferView_5233", + "byteOffset": 391008, "byteStride": 12, "count": 4, "max": [ - 585.681, - 816.058, - 116.019 + 14.8763, + 20.7279, + 2.94689 ], "min": [ - 532.191, - 685.105, - 116.019 + 13.5176, + 17.4017, + 2.94689 ], "type": 35665 }, - "accessor_3002": { - "bufferView": "bufferView_4848", - "byteOffset": 389808, + "accessor_3134": { + "bufferView": "bufferView_5233", + "byteOffset": 391056, "byteStride": 12, "count": 4, "max": [ @@ -4517,33 +4805,33 @@ ], "type": 35665 }, - "accessor_3018": { - "bufferView": "bufferView_4847", - "byteOffset": 81684, + "accessor_3150": { + "bufferView": "bufferView_5232", + "byteOffset": 82008, "byteStride": 0, "count": 36, "type": 5123 }, - "accessor_3020": { - "bufferView": "bufferView_4848", - "byteOffset": 389856, + "accessor_3152": { + "bufferView": "bufferView_5233", + "byteOffset": 391104, "byteStride": 12, "count": 24, "max": [ - 406.008, - 1750.88, - 143.498 + 10.3126, + 44.4723, + 3.64484 ], "min": [ - 283.227, - 1739.99, - 59.8634 + 7.19396, + 44.1958, + 1.52053 ], "type": 35665 }, - "accessor_3022": { - "bufferView": "bufferView_4848", - "byteOffset": 390144, + "accessor_3154": { + "bufferView": "bufferView_5233", + "byteOffset": 391392, "byteStride": 12, "count": 24, "max": [ @@ -4558,33 +4846,40 @@ ], "type": 35665 }, - "accessor_3038": { - "bufferView": "bufferView_4847", - "byteOffset": 81756, + "accessor_316": { + "bufferView": "bufferView_5232", + "byteOffset": 786, + "byteStride": 0, + "count": 1332, + "type": 5123 + }, + "accessor_3170": { + "bufferView": "bufferView_5232", + "byteOffset": 82080, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_3040": { - "bufferView": "bufferView_4848", - "byteOffset": 390432, + "accessor_3172": { + "bufferView": "bufferView_5233", + "byteOffset": 391680, "byteStride": 12, "count": 18, "max": [ - 629.86, - 884.13, - 213.573 + 15.9984, + 22.4569, + 5.42476 ], "min": [ - 626.019, - 875.638, - 203.164 + 15.9009, + 22.2412, + 5.16037 ], "type": 35665 }, - "accessor_3042": { - "bufferView": "bufferView_4848", - "byteOffset": 390648, + "accessor_3174": { + "bufferView": "bufferView_5233", + "byteOffset": 391896, "byteStride": 12, "count": 18, "max": [ @@ -4599,32 +4894,49 @@ ], "type": 35665 }, - "accessor_3058": { - "bufferView": "bufferView_4847", + "accessor_318": { + "bufferView": "bufferView_5233", + "byteOffset": 5568, + "byteStride": 12, + "count": 334, + "max": [ + 4.29056, + 2.16304, + 0.195 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3190": { + "bufferView": "bufferView_5232", "byteOffset": 6, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_3060": { - "bufferView": "bufferView_4848", + "accessor_3192": { + "bufferView": "bufferView_5233", "byteOffset": 72, "byteStride": 12, "count": 6, "max": [ - 628.299, - 884.023, - 213.573 + 15.9588, + 22.4542, + 5.42476 ], "min": [ - 626.019, - 875.638, - 203.426 + 15.9009, + 22.2412, + 5.16703 ], "type": 35665 }, - "accessor_3062": { - "bufferView": "bufferView_4848", + "accessor_3194": { + "bufferView": "bufferView_5233", "byteOffset": 144, "byteStride": 12, "count": 6, @@ -4640,32 +4952,49 @@ ], "type": 35665 }, - "accessor_3078": { - "bufferView": "bufferView_4847", + "accessor_320": { + "bufferView": "bufferView_5233", + "byteOffset": 9576, + "byteStride": 12, + "count": 334, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -0.982692, + -1 + ], + "type": 35665 + }, + "accessor_3210": { + "bufferView": "bufferView_5232", "byteOffset": 30, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_3080": { - "bufferView": "bufferView_4848", + "accessor_3212": { + "bufferView": "bufferView_5233", "byteOffset": 216, "byteStride": 12, "count": 20, "max": [ - 474.784, - 1207.91, - 170.281 + 12.0595, + 30.681, + 4.32514 ], "min": [ - 465.71, - 1142.62, - 168.797 + 11.829, + 29.0226, + 4.28743 ], "type": 35665 }, - "accessor_3082": { - "bufferView": "bufferView_4848", + "accessor_3214": { + "bufferView": "bufferView_5233", "byteOffset": 456, "byteStride": 12, "count": 20, @@ -4681,32 +5010,32 @@ ], "type": 35665 }, - "accessor_3098": { - "bufferView": "bufferView_4847", + "accessor_3230": { + "bufferView": "bufferView_5232", "byteOffset": 90, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3100": { - "bufferView": "bufferView_4848", + "accessor_3232": { + "bufferView": "bufferView_5233", "byteOffset": 696, "byteStride": 12, "count": 4, "max": [ - 654.429, - 377.288, - 1.23535 + 16.6225, + 9.58311, + 0.0313778 ], "min": [ - 638.661, - 362.281, - 1.23535 + 16.222, + 9.20194, + 0.0313778 ], "type": 35665 }, - "accessor_3102": { - "bufferView": "bufferView_4848", + "accessor_3234": { + "bufferView": "bufferView_5233", "byteOffset": 744, "byteStride": 12, "count": 4, @@ -4722,32 +5051,32 @@ ], "type": 35665 }, - "accessor_3118": { - "bufferView": "bufferView_4847", + "accessor_3250": { + "bufferView": "bufferView_5232", "byteOffset": 102, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3120": { - "bufferView": "bufferView_4848", + "accessor_3252": { + "bufferView": "bufferView_5233", "byteOffset": 792, "byteStride": 12, "count": 4, "max": [ - 694.172, - 350.536, - 1.23535 + 17.632, + 8.9036, + 0.0313778 ], "min": [ - 668.341, - 126.455, - 1.23535 + 16.9759, + 3.21196, + 0.0313778 ], "type": 35665 }, - "accessor_3122": { - "bufferView": "bufferView_4848", + "accessor_3254": { + "bufferView": "bufferView_5233", "byteOffset": 840, "byteStride": 12, "count": 4, @@ -4763,32 +5092,32 @@ ], "type": 35665 }, - "accessor_3138": { - "bufferView": "bufferView_4847", + "accessor_3270": { + "bufferView": "bufferView_5232", "byteOffset": 114, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_3140": { - "bufferView": "bufferView_4848", + "accessor_3272": { + "bufferView": "bufferView_5233", "byteOffset": 888, "byteStride": 12, "count": 5, "max": [ - 645.778, - 19.6105, - 1.23535 + 16.4028, + 0.498106, + 0.0313778 ], "min": [ - 645.702, - 19.5844, - 1.23535 + 16.4008, + 0.497444, + 0.0313778 ], "type": 35665 }, - "accessor_3142": { - "bufferView": "bufferView_4848", + "accessor_3274": { + "bufferView": "bufferView_5233", "byteOffset": 948, "byteStride": 12, "count": 5, @@ -4804,39 +5133,32 @@ ], "type": 35665 }, - "accessor_3158": { - "bufferView": "bufferView_4847", + "accessor_3290": { + "bufferView": "bufferView_5232", "byteOffset": 132, "byteStride": 0, "count": 153, "type": 5123 }, - "accessor_316": { - "bufferView": "bufferView_4847", - "byteOffset": 786, - "byteStride": 0, - "count": 1332, - "type": 5123 - }, - "accessor_3160": { - "bufferView": "bufferView_4848", + "accessor_3292": { + "bufferView": "bufferView_5233", "byteOffset": 1008, "byteStride": 12, "count": 98, "max": [ - 618.085, - 661.693, - 107.472 + 15.6994, + 16.807, + 2.72978 ], "min": [ - 510.044, - 639.72, - 16.2887 + 12.9551, + 16.2489, + 0.413732 ], "type": 35665 }, - "accessor_3162": { - "bufferView": "bufferView_4848", + "accessor_3294": { + "bufferView": "bufferView_5233", "byteOffset": 2184, "byteStride": 12, "count": 98, @@ -4852,49 +5174,32 @@ ], "type": 35665 }, - "accessor_3178": { - "bufferView": "bufferView_4847", + "accessor_3310": { + "bufferView": "bufferView_5232", "byteOffset": 438, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_318": { - "bufferView": "bufferView_4848", - "byteOffset": 5568, - "byteStride": 12, - "count": 334, - "max": [ - 168.92, - 85.1591, - 7.67717 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3180": { - "bufferView": "bufferView_4848", + "accessor_3312": { + "bufferView": "bufferView_5233", "byteOffset": 3360, "byteStride": 12, "count": 24, "max": [ - 696.89, - 353.122, - 1.23535 + 17.701, + 8.9693, + 0.0313778 ], "min": [ - 630.368, - 19.6105, - 1.23535 + 16.0113, + 0.498106, + 0.0313778 ], "type": 35665 }, - "accessor_3182": { - "bufferView": "bufferView_4848", + "accessor_3314": { + "bufferView": "bufferView_5233", "byteOffset": 3648, "byteStride": 12, "count": 24, @@ -4910,49 +5215,32 @@ ], "type": 35665 }, - "accessor_3198": { - "bufferView": "bufferView_4847", + "accessor_3330": { + "bufferView": "bufferView_5232", "byteOffset": 570, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_320": { - "bufferView": "bufferView_4848", - "byteOffset": 9576, - "byteStride": 12, - "count": 334, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -0.982692, - -1 - ], - "type": 35665 - }, - "accessor_3200": { - "bufferView": "bufferView_4848", + "accessor_3332": { + "bufferView": "bufferView_5233", "byteOffset": 3936, "byteStride": 12, "count": 4, "max": [ - 339.553, - 1390.67, - 84.0246 + 8.62465, + 35.3231, + 2.13422 ], "min": [ - 315.92, - 1182.64, - 84.0246 + 8.02436, + 30.0391, + 2.13422 ], "type": 35665 }, - "accessor_3202": { - "bufferView": "bufferView_4848", + "accessor_3334": { + "bufferView": "bufferView_5233", "byteOffset": 3984, "byteStride": 12, "count": 4, @@ -4968,32 +5256,32 @@ ], "type": 35665 }, - "accessor_3218": { - "bufferView": "bufferView_4847", + "accessor_3350": { + "bufferView": "bufferView_5232", "byteOffset": 582, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_3220": { - "bufferView": "bufferView_4848", + "accessor_3352": { + "bufferView": "bufferView_5233", "byteOffset": 4032, "byteStride": 12, "count": 14, "max": [ - 339.553, - 1390.67, - 144.385 + 8.62465, + 35.3231, + 3.66737 ], "min": [ - 315.92, - 1182.64, - 84.0246 + 8.02436, + 30.0391, + 2.13422 ], "type": 35665 }, - "accessor_3222": { - "bufferView": "bufferView_4848", + "accessor_3354": { + "bufferView": "bufferView_5233", "byteOffset": 4200, "byteStride": 12, "count": 14, @@ -5009,32 +5297,39 @@ ], "type": 35665 }, - "accessor_3238": { - "bufferView": "bufferView_4847", + "accessor_336": { + "bufferView": "bufferView_5232", + "byteOffset": 3966, + "byteStride": 0, + "count": 39, + "type": 5123 + }, + "accessor_3370": { + "bufferView": "bufferView_5232", "byteOffset": 630, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_3240": { - "bufferView": "bufferView_4848", + "accessor_3372": { + "bufferView": "bufferView_5233", "byteOffset": 4368, "byteStride": 12, "count": 12, "max": [ - 655.151, - 927.554, - 1.23535 + 16.6408, + 23.5599, + 0.0313778 ], "min": [ - 636.738, - 627.133, - 1.23535 + 16.1731, + 15.9292, + 0.0313778 ], "type": 35665 }, - "accessor_3242": { - "bufferView": "bufferView_4848", + "accessor_3374": { + "bufferView": "bufferView_5233", "byteOffset": 4512, "byteStride": 12, "count": 12, @@ -5050,32 +5345,49 @@ ], "type": 35665 }, - "accessor_3258": { - "bufferView": "bufferView_4847", + "accessor_338": { + "bufferView": "bufferView_5233", + "byteOffset": 16848, + "byteStride": 12, + "count": 15, + "max": [ + 4.04668, + 1.94081, + 0 + ], + "min": [ + 0.140534, + 0.249615, + 0 + ], + "type": 35665 + }, + "accessor_3390": { + "bufferView": "bufferView_5232", "byteOffset": 666, "byteStride": 0, "count": 60, "type": 5123 }, - "accessor_3260": { - "bufferView": "bufferView_4848", + "accessor_3392": { + "bufferView": "bufferView_5233", "byteOffset": 4656, "byteStride": 12, "count": 38, "max": [ - 397.86, - 1730.5, - 44.0336 + 10.1056, + 43.9546, + 1.11845 ], "min": [ - 291.375, - 1403.36, - 43.0611 + 7.40093, + 35.6454, + 1.09375 ], "type": 35665 }, - "accessor_3262": { - "bufferView": "bufferView_4848", + "accessor_3394": { + "bufferView": "bufferView_5233", "byteOffset": 5112, "byteStride": 12, "count": 38, @@ -5091,32 +5403,49 @@ ], "type": 35665 }, - "accessor_3278": { - "bufferView": "bufferView_4847", - "byteOffset": 3450, + "accessor_340": { + "bufferView": "bufferView_5233", + "byteOffset": 17028, + "byteStride": 12, + "count": 15, + "max": [ + 0, + 0, + -1 + ], + "min": [ + 0, + 0, + -1 + ], + "type": 35665 + }, + "accessor_3410": { + "bufferView": "bufferView_5232", + "byteOffset": 3450, "byteStride": 0, "count": 42, "type": 5123 }, - "accessor_3280": { - "bufferView": "bufferView_4848", + "accessor_3412": { + "bufferView": "bufferView_5233", "byteOffset": 13584, "byteStride": 12, "count": 16, "max": [ - 1361.56, - 1685.1, - 134.554 + 34.5837, + 42.8017, + 3.41767 ], "min": [ - 1361.56, - 1571.3, - 120.208 + 34.5837, + 39.911, + 3.05329 ], "type": 35665 }, - "accessor_3282": { - "bufferView": "bufferView_4848", + "accessor_3414": { + "bufferView": "bufferView_5233", "byteOffset": 13776, "byteStride": 12, "count": 16, @@ -5132,32 +5461,32 @@ ], "type": 35665 }, - "accessor_3298": { - "bufferView": "bufferView_4847", + "accessor_3430": { + "bufferView": "bufferView_5232", "byteOffset": 3534, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3300": { - "bufferView": "bufferView_4848", + "accessor_3432": { + "bufferView": "bufferView_5233", "byteOffset": 13968, "byteStride": 12, "count": 4, "max": [ - 1081.21, - 1390.67, - 84.0246 + 27.4627, + 35.3231, + 2.13422 ], "min": [ - 1057.57, - 1182.64, - 84.0246 + 26.8624, + 30.0391, + 2.13422 ], "type": 35665 }, - "accessor_3302": { - "bufferView": "bufferView_4848", + "accessor_3434": { + "bufferView": "bufferView_5233", "byteOffset": 14016, "byteStride": 12, "count": 4, @@ -5173,32 +5502,32 @@ ], "type": 35665 }, - "accessor_3318": { - "bufferView": "bufferView_4847", + "accessor_3450": { + "bufferView": "bufferView_5232", "byteOffset": 3546, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3320": { - "bufferView": "bufferView_4848", + "accessor_3452": { + "bufferView": "bufferView_5233", "byteOffset": 14064, "byteStride": 12, "count": 4, "max": [ - 373.315, - 1390.67, - 84.0246 + 9.48221, + 35.3231, + 2.13422 ], "min": [ - 349.682, - 1149.65, - 84.0246 + 8.88192, + 29.201, + 2.13422 ], "type": 35665 }, - "accessor_3322": { - "bufferView": "bufferView_4848", + "accessor_3454": { + "bufferView": "bufferView_5233", "byteOffset": 14112, "byteStride": 12, "count": 4, @@ -5214,32 +5543,32 @@ ], "type": 35665 }, - "accessor_3338": { - "bufferView": "bufferView_4847", + "accessor_3470": { + "bufferView": "bufferView_5232", "byteOffset": 3558, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3340": { - "bufferView": "bufferView_4848", + "accessor_3472": { + "bufferView": "bufferView_5233", "byteOffset": 14160, "byteStride": 12, "count": 4, "max": [ - 1114.97, - 1390.67, - 84.0246 + 28.3202, + 35.3231, + 2.13422 ], "min": [ - 1091.34, - 1215.64, - 84.0246 + 27.7199, + 30.8773, + 2.13422 ], "type": 35665 }, - "accessor_3342": { - "bufferView": "bufferView_4848", + "accessor_3474": { + "bufferView": "bufferView_5233", "byteOffset": 14208, "byteStride": 12, "count": 4, @@ -5255,39 +5584,32 @@ ], "type": 35665 }, - "accessor_3358": { - "bufferView": "bufferView_4847", + "accessor_3490": { + "bufferView": "bufferView_5232", "byteOffset": 3570, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_336": { - "bufferView": "bufferView_4847", - "byteOffset": 3966, - "byteStride": 0, - "count": 39, - "type": 5123 - }, - "accessor_3360": { - "bufferView": "bufferView_4848", + "accessor_3492": { + "bufferView": "bufferView_5233", "byteOffset": 14256, "byteStride": 12, "count": 8, "max": [ - 600.884, - 1139.52, - 166.052 + 15.2625, + 28.9438, + 4.21771 ], "min": [ - 436.213, - 1122.14, - 163.036 + 11.0798, + 28.5024, + 4.1411 ], "type": 35665 }, - "accessor_3362": { - "bufferView": "bufferView_4848", + "accessor_3494": { + "bufferView": "bufferView_5233", "byteOffset": 14352, "byteStride": 12, "count": 8, @@ -5303,49 +5625,32 @@ ], "type": 35665 }, - "accessor_3378": { - "bufferView": "bufferView_4847", + "accessor_3510": { + "bufferView": "bufferView_5232", "byteOffset": 3822, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_338": { - "bufferView": "bufferView_4848", - "byteOffset": 16848, - "byteStride": 12, - "count": 15, - "max": [ - 159.318, - 76.4099, - 0 - ], - "min": [ - 5.53284, - 9.82736, - 0 - ], - "type": 35665 - }, - "accessor_3380": { - "bufferView": "bufferView_4848", + "accessor_3512": { + "bufferView": "bufferView_5233", "byteOffset": 15984, "byteStride": 12, "count": 4, "max": [ - 339.553, - 1390.67, - 144.385 + 8.62465, + 35.3231, + 3.66737 ], "min": [ - 315.92, - 1390.67, - 84.0246 + 8.02436, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_3382": { - "bufferView": "bufferView_4848", + "accessor_3514": { + "bufferView": "bufferView_5233", "byteOffset": 16032, "byteStride": 12, "count": 4, @@ -5361,49 +5666,32 @@ ], "type": 35665 }, - "accessor_3398": { - "bufferView": "bufferView_4847", + "accessor_3530": { + "bufferView": "bufferView_5232", "byteOffset": 3834, "byteStride": 0, "count": 42, "type": 5123 }, - "accessor_340": { - "bufferView": "bufferView_4848", - "byteOffset": 17028, - "byteStride": 12, - "count": 15, - "max": [ - 0, - 0, - -1 - ], - "min": [ - 0, - 0, - -1 - ], - "type": 35665 - }, - "accessor_3400": { - "bufferView": "bufferView_4848", + "accessor_3532": { + "bufferView": "bufferView_5233", "byteOffset": 16080, "byteStride": 12, "count": 16, "max": [ - 35.5641, - 1685.1, - 134.554 + 0.903328, + 42.8017, + 3.41767 ], "min": [ - 35.5641, - 1571.3, - 120.208 + 0.903328, + 39.911, + 3.05329 ], "type": 35665 }, - "accessor_3402": { - "bufferView": "bufferView_4848", + "accessor_3534": { + "bufferView": "bufferView_5233", "byteOffset": 16272, "byteStride": 12, "count": 16, @@ -5419,32 +5707,32 @@ ], "type": 35665 }, - "accessor_3418": { - "bufferView": "bufferView_4847", + "accessor_3550": { + "bufferView": "bufferView_5232", "byteOffset": 3918, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3420": { - "bufferView": "bufferView_4848", + "accessor_3552": { + "bufferView": "bufferView_5233", "byteOffset": 16464, "byteStride": 12, "count": 4, "max": [ - 397.86, - 1380.89, - 44.0336 + 10.1056, + 35.0747, + 1.11845 ], "min": [ - 291.375, - 1135.9, - 44.0336 + 7.40093, + 28.8518, + 1.11845 ], "type": 35665 }, - "accessor_3422": { - "bufferView": "bufferView_4848", + "accessor_3554": { + "bufferView": "bufferView_5233", "byteOffset": 16512, "byteStride": 12, "count": 4, @@ -5460,32 +5748,39 @@ ], "type": 35665 }, - "accessor_3438": { - "bufferView": "bufferView_4847", + "accessor_356": { + "bufferView": "bufferView_5232", + "byteOffset": 6756, + "byteStride": 0, + "count": 3, + "type": 5123 + }, + "accessor_3570": { + "bufferView": "bufferView_5232", "byteOffset": 3930, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3440": { - "bufferView": "bufferView_4848", + "accessor_3572": { + "bufferView": "bufferView_5233", "byteOffset": 16560, "byteStride": 12, "count": 4, "max": [ - 1114.97, - 1390.67, - 144.385 + 28.3202, + 35.3231, + 3.66737 ], "min": [ - 1091.34, - 1390.67, - 84.0246 + 27.7199, + 35.3231, + 2.13422 ], "type": 35665 }, - "accessor_3442": { - "bufferView": "bufferView_4848", + "accessor_3574": { + "bufferView": "bufferView_5233", "byteOffset": 16608, "byteStride": 12, "count": 4, @@ -5501,32 +5796,49 @@ ], "type": 35665 }, - "accessor_3458": { - "bufferView": "bufferView_4847", + "accessor_358": { + "bufferView": "bufferView_5233", + "byteOffset": 30744, + "byteStride": 12, + "count": 3, + "max": [ + 3.99896, + 0.976969, + 0 + ], + "min": [ + 3.99819, + 0.976668, + 0 + ], + "type": 35665 + }, + "accessor_3590": { + "bufferView": "bufferView_5232", "byteOffset": 3942, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_3460": { - "bufferView": "bufferView_4848", + "accessor_3592": { + "bufferView": "bufferView_5233", "byteOffset": 16656, "byteStride": 12, "count": 8, "max": [ - 261.907, - 1673.16, - 134.554 + 6.65245, + 42.4983, + 3.41767 ], "min": [ - 50.7501, - 1433.85, - 134.554 + 1.28905, + 36.4198, + 3.41767 ], "type": 35665 }, - "accessor_3462": { - "bufferView": "bufferView_4848", + "accessor_3594": { + "bufferView": "bufferView_5233", "byteOffset": 16752, "byteStride": 12, "count": 8, @@ -5542,32 +5854,56 @@ ], "type": 35665 }, - "accessor_3478": { - "bufferView": "bufferView_4847", + "accessor_36": { + "bufferView": "bufferView_5232", + "byteOffset": 3594, + "byteStride": 0, + "count": 114, + "type": 5123 + }, + "accessor_360": { + "bufferView": "bufferView_5233", + "byteOffset": 30780, + "byteStride": 12, + "count": 3, + "max": [ + 0, + 0, + -1 + ], + "min": [ + 0, + 0, + -1 + ], + "type": 35665 + }, + "accessor_3610": { + "bufferView": "bufferView_5232", "byteOffset": 4044, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3480": { - "bufferView": "bufferView_4848", + "accessor_3612": { + "bufferView": "bufferView_5233", "byteOffset": 17208, "byteStride": 12, "count": 4, "max": [ - 618.085, - 661.693, - 107.472 + 15.6994, + 16.807, + 2.72978 ], "min": [ - 511.684, - 654.282, - 16.2887 + 12.9968, + 16.6188, + 0.413732 ], "type": 35665 }, - "accessor_3482": { - "bufferView": "bufferView_4848", + "accessor_3614": { + "bufferView": "bufferView_5233", "byteOffset": 17256, "byteStride": 12, "count": 4, @@ -5583,32 +5919,32 @@ ], "type": 35665 }, - "accessor_3498": { - "bufferView": "bufferView_4847", + "accessor_3630": { + "bufferView": "bufferView_5232", "byteOffset": 4056, "byteStride": 0, "count": 3, "type": 5123 }, - "accessor_3500": { - "bufferView": "bufferView_4848", + "accessor_3632": { + "bufferView": "bufferView_5233", "byteOffset": 17304, "byteStride": 12, "count": 3, "max": [ - 510.854, - 645.823, - 107.472 + 12.9757, + 16.4039, + 2.72978 ], "min": [ - 508.616, - 603.015, - 107.472 + 12.9188, + 15.3166, + 2.72978 ], "type": 35665 }, - "accessor_3502": { - "bufferView": "bufferView_4848", + "accessor_3634": { + "bufferView": "bufferView_5233", "byteOffset": 17340, "byteStride": 12, "count": 3, @@ -5624,32 +5960,32 @@ ], "type": 35665 }, - "accessor_3518": { - "bufferView": "bufferView_4847", + "accessor_3650": { + "bufferView": "bufferView_5232", "byteOffset": 4062, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_3520": { - "bufferView": "bufferView_4848", + "accessor_3652": { + "bufferView": "bufferView_5233", "byteOffset": 17376, "byteStride": 12, "count": 9, "max": [ - 534.854, - 1076.35, - 116.019 + 13.5853, + 27.3393, + 2.94689 ], "min": [ - 502.243, - 938.934, - 116.019 + 12.757, + 23.8489, + 2.94689 ], "type": 35665 }, - "accessor_3522": { - "bufferView": "bufferView_4848", + "accessor_3654": { + "bufferView": "bufferView_5233", "byteOffset": 17484, "byteStride": 12, "count": 9, @@ -5665,32 +6001,32 @@ ], "type": 35665 }, - "accessor_3538": { - "bufferView": "bufferView_4847", + "accessor_3670": { + "bufferView": "bufferView_5232", "byteOffset": 4104, "byteStride": 0, "count": 312, "type": 5123 }, - "accessor_3540": { - "bufferView": "bufferView_4848", + "accessor_3672": { + "bufferView": "bufferView_5233", "byteOffset": 17592, "byteStride": 12, "count": 174, "max": [ - 777.282, - 652.947, - 118.293 + 19.743, + 16.5849, + 3.00464 ], "min": [ - 619.845, - 537.693, - 117.407 + 15.7441, + 13.6574, + 2.98214 ], "type": 35665 }, - "accessor_3542": { - "bufferView": "bufferView_4848", + "accessor_3674": { + "bufferView": "bufferView_5233", "byteOffset": 19680, "byteStride": 12, "count": 174, @@ -5706,39 +6042,32 @@ ], "type": 35665 }, - "accessor_3558": { - "bufferView": "bufferView_4847", + "accessor_3690": { + "bufferView": "bufferView_5232", "byteOffset": 4728, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_356": { - "bufferView": "bufferView_4847", - "byteOffset": 6756, - "byteStride": 0, - "count": 3, - "type": 5123 - }, - "accessor_3560": { - "bufferView": "bufferView_4848", + "accessor_3692": { + "bufferView": "bufferView_5233", "byteOffset": 21768, "byteStride": 12, "count": 8, "max": [ - 771.097, - 884.023, - 213.573 + 19.5859, + 22.4542, + 5.42476 ], "min": [ - 768.83, - 875.648, - 203.497 + 19.5283, + 22.2415, + 5.16882 ], "type": 35665 }, - "accessor_3562": { - "bufferView": "bufferView_4848", + "accessor_3694": { + "bufferView": "bufferView_5233", "byteOffset": 21864, "byteStride": 12, "count": 8, @@ -5754,49 +6083,32 @@ ], "type": 35665 }, - "accessor_3578": { - "bufferView": "bufferView_4847", + "accessor_3710": { + "bufferView": "bufferView_5232", "byteOffset": 4776, "byteStride": 0, "count": 45, "type": 5123 }, - "accessor_358": { - "bufferView": "bufferView_4848", - "byteOffset": 30744, - "byteStride": 12, - "count": 3, - "max": [ - 157.439, - 38.4633, - 0 - ], - "min": [ - 157.409, - 38.4515, - 0 - ], - "type": 35665 - }, - "accessor_3580": { - "bufferView": "bufferView_4848", + "accessor_3712": { + "bufferView": "bufferView_5233", "byteOffset": 21960, "byteStride": 12, "count": 13, "max": [ - 733.498, - 354.715, - 1.23535 + 18.6309, + 9.00976, + 0.0313778 ], "min": [ - 663.629, - 122.276, - 1.23535 + 16.8562, + 3.10581, + 0.0313778 ], "type": 35665 }, - "accessor_3582": { - "bufferView": "bufferView_4848", + "accessor_3714": { + "bufferView": "bufferView_5233", "byteOffset": 22116, "byteStride": 12, "count": 13, @@ -5812,56 +6124,32 @@ ], "type": 35665 }, - "accessor_3598": { - "bufferView": "bufferView_4847", + "accessor_3730": { + "bufferView": "bufferView_5232", "byteOffset": 4866, "byteStride": 0, "count": 234, "type": 5123 }, - "accessor_36": { - "bufferView": "bufferView_4847", - "byteOffset": 3594, - "byteStride": 0, - "count": 114, - "type": 5123 - }, - "accessor_360": { - "bufferView": "bufferView_4848", - "byteOffset": 30780, - "byteStride": 12, - "count": 3, - "max": [ - 0, - 0, - -1 - ], - "min": [ - 0, - 0, - -1 - ], - "type": 35665 - }, - "accessor_3600": { - "bufferView": "bufferView_4848", + "accessor_3732": { + "bufferView": "bufferView_5233", "byteOffset": 22272, "byteStride": 12, "count": 102, "max": [ - 769.6, - 873.919, - 214.514 + 19.5478, + 22.1976, + 5.44866 ], "min": [ - 627.527, - 857.854, - 200.174 + 15.9392, + 21.7895, + 5.08441 ], "type": 35665 }, - "accessor_3602": { - "bufferView": "bufferView_4848", + "accessor_3734": { + "bufferView": "bufferView_5233", "byteOffset": 23496, "byteStride": 12, "count": 102, @@ -5877,32 +6165,32 @@ ], "type": 35665 }, - "accessor_3618": { - "bufferView": "bufferView_4847", + "accessor_3750": { + "bufferView": "bufferView_5232", "byteOffset": 5334, "byteStride": 0, "count": 531, "type": 5123 }, - "accessor_3620": { - "bufferView": "bufferView_4848", + "accessor_3752": { + "bufferView": "bufferView_5233", "byteOffset": 24720, "byteStride": 12, "count": 183, "max": [ - 769.6, - 873.911, - 214.514 + 19.5478, + 22.1973, + 5.44866 ], "min": [ - 627.527, - 827.009, - 200.469 + 15.9392, + 21.006, + 5.09191 ], "type": 35665 }, - "accessor_3622": { - "bufferView": "bufferView_4848", + "accessor_3754": { + "bufferView": "bufferView_5233", "byteOffset": 26916, "byteStride": 12, "count": 183, @@ -5918,32 +6206,39 @@ ], "type": 35665 }, - "accessor_3638": { - "bufferView": "bufferView_4847", + "accessor_376": { + "bufferView": "bufferView_5232", + "byteOffset": 7890, + "byteStride": 0, + "count": 210, + "type": 5123 + }, + "accessor_3770": { + "bufferView": "bufferView_5232", "byteOffset": 6396, "byteStride": 0, "count": 174, "type": 5123 }, - "accessor_3640": { - "bufferView": "bufferView_4848", + "accessor_3772": { + "bufferView": "bufferView_5233", "byteOffset": 29112, "byteStride": 12, "count": 64, "max": [ - 767.008, - 869.697, - 212.131 + 19.482, + 22.0903, + 5.38814 ], "min": [ - 630.119, - 852.773, - 203.585 + 16.005, + 21.6604, + 5.17107 ], "type": 35665 }, - "accessor_3642": { - "bufferView": "bufferView_4848", + "accessor_3774": { + "bufferView": "bufferView_5233", "byteOffset": 29880, "byteStride": 12, "count": 64, @@ -5959,32 +6254,49 @@ ], "type": 35665 }, - "accessor_3658": { - "bufferView": "bufferView_4847", + "accessor_378": { + "bufferView": "bufferView_5233", + "byteOffset": 37920, + "byteStride": 12, + "count": 72, + "max": [ + 2.991, + 0.674251, + 2.991 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3790": { + "bufferView": "bufferView_5232", "byteOffset": 6744, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3660": { - "bufferView": "bufferView_4848", + "accessor_3792": { + "bufferView": "bufferView_5233", "byteOffset": 30648, "byteStride": 12, "count": 4, "max": [ - 962.366, - 1193.55, - 159.334 + 24.4441, + 30.3163, + 4.04709 ], "min": [ - 962.366, - 1073.16, - 119.721 + 24.4441, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_3662": { - "bufferView": "bufferView_4848", + "accessor_3794": { + "bufferView": "bufferView_5233", "byteOffset": 30696, "byteStride": 12, "count": 4, @@ -6000,32 +6312,66 @@ ], "type": 35665 }, - "accessor_3678": { - "bufferView": "bufferView_4847", + "accessor_38": { + "bufferView": "bufferView_5233", + "byteOffset": 14448, + "byteStride": 12, + "count": 64, + "max": [ + 4.5641, + 1.4448, + 1.7815 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_380": { + "bufferView": "bufferView_5233", + "byteOffset": 38784, + "byteStride": 12, + "count": 72, + "max": [ + 1, + 0, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_3810": { + "bufferView": "bufferView_5232", "byteOffset": 6762, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_3680": { - "bufferView": "bufferView_4848", + "accessor_3812": { + "bufferView": "bufferView_5233", "byteOffset": 30816, "byteStride": 12, "count": 20, "max": [ - 758.275, - 917.698, - 235.617 + 19.2602, + 23.3095, + 5.98468 ], "min": [ - 755.098, - 906.363, - 234.25 + 19.1795, + 23.0216, + 5.94994 ], "type": 35665 }, - "accessor_3682": { - "bufferView": "bufferView_4848", + "accessor_3814": { + "bufferView": "bufferView_5233", "byteOffset": 31056, "byteStride": 12, "count": 20, @@ -6041,32 +6387,32 @@ ], "type": 35665 }, - "accessor_3698": { - "bufferView": "bufferView_4847", + "accessor_3830": { + "bufferView": "bufferView_5232", "byteOffset": 6822, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_3700": { - "bufferView": "bufferView_4848", + "accessor_3832": { + "bufferView": "bufferView_5233", "byteOffset": 31296, "byteStride": 12, "count": 20, "max": [ - 642.03, - 917.698, - 235.617 + 16.3076, + 23.3095, + 5.98468 ], "min": [ - 638.852, - 906.363, - 234.25 + 16.2269, + 23.0216, + 5.94994 ], "type": 35665 }, - "accessor_3702": { - "bufferView": "bufferView_4848", + "accessor_3834": { + "bufferView": "bufferView_5233", "byteOffset": 31536, "byteStride": 12, "count": 20, @@ -6082,32 +6428,32 @@ ], "type": 35665 }, - "accessor_3718": { - "bufferView": "bufferView_4847", + "accessor_3850": { + "bufferView": "bufferView_5232", "byteOffset": 6882, "byteStride": 0, "count": 162, "type": 5123 }, - "accessor_3720": { - "bufferView": "bufferView_4848", + "accessor_3852": { + "bufferView": "bufferView_5233", "byteOffset": 31776, "byteStride": 12, "count": 108, "max": [ - 769.697, - 872.337, - 200.174 + 19.5503, + 22.1574, + 5.08441 ], "min": [ - 627.43, - 822.213, - 199.882 + 15.9367, + 20.8842, + 5.07701 ], "type": 35665 }, - "accessor_3722": { - "bufferView": "bufferView_4848", + "accessor_3854": { + "bufferView": "bufferView_5233", "byteOffset": 33072, "byteStride": 12, "count": 108, @@ -6123,32 +6469,32 @@ ], "type": 35665 }, - "accessor_3738": { - "bufferView": "bufferView_4847", + "accessor_3870": { + "bufferView": "bufferView_5232", "byteOffset": 7206, "byteStride": 0, "count": 45, "type": 5123 }, - "accessor_3740": { - "bufferView": "bufferView_4848", + "accessor_3872": { + "bufferView": "bufferView_5233", "byteOffset": 34368, "byteStride": 12, "count": 17, "max": [ - 753.098, - 280.718, - 107.36 + 19.1287, + 7.13023, + 2.72694 ], "min": [ - 644.029, - 36.8759, - 37.0136 + 16.3583, + 0.936648, + 0.940146 ], "type": 35665 }, - "accessor_3742": { - "bufferView": "bufferView_4848", + "accessor_3874": { + "bufferView": "bufferView_5233", "byteOffset": 34572, "byteStride": 12, "count": 17, @@ -6164,39 +6510,32 @@ ], "type": 35665 }, - "accessor_3758": { - "bufferView": "bufferView_4847", + "accessor_3890": { + "bufferView": "bufferView_5232", "byteOffset": 7296, "byteStride": 0, "count": 36, "type": 5123 }, - "accessor_376": { - "bufferView": "bufferView_4847", - "byteOffset": 7890, - "byteStride": 0, - "count": 210, - "type": 5123 - }, - "accessor_3760": { - "bufferView": "bufferView_4848", + "accessor_3892": { + "bufferView": "bufferView_5233", "byteOffset": 34776, "byteStride": 12, "count": 24, "max": [ - 1113.9, - 1750.88, - 143.498 + 28.2931, + 44.4723, + 3.64484 ], "min": [ - 991.119, - 1739.99, - 59.8634 + 25.1744, + 44.1958, + 1.52053 ], "type": 35665 }, - "accessor_3762": { - "bufferView": "bufferView_4848", + "accessor_3894": { + "bufferView": "bufferView_5233", "byteOffset": 35064, "byteStride": 12, "count": 24, @@ -6212,49 +6551,32 @@ ], "type": 35665 }, - "accessor_3778": { - "bufferView": "bufferView_4847", + "accessor_3910": { + "bufferView": "bufferView_5232", "byteOffset": 7368, "byteStride": 0, "count": 9, "type": 5123 }, - "accessor_378": { - "bufferView": "bufferView_4848", - "byteOffset": 37920, - "byteStride": 12, - "count": 72, - "max": [ - 117.756, - 26.5453, - 117.756 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3780": { - "bufferView": "bufferView_4848", + "accessor_3912": { + "bufferView": "bufferView_5233", "byteOffset": 35352, "byteStride": 12, "count": 5, "max": [ - 751.425, - 19.6105, - 1.23535 + 19.0862, + 0.498106, + 0.0313778 ], "min": [ - 751.349, - 19.5844, - 1.23535 + 19.0843, + 0.497444, + 0.0313778 ], "type": 35665 }, - "accessor_3782": { - "bufferView": "bufferView_4848", + "accessor_3914": { + "bufferView": "bufferView_5233", "byteOffset": 35412, "byteStride": 12, "count": 5, @@ -6270,66 +6592,32 @@ ], "type": 35665 }, - "accessor_3798": { - "bufferView": "bufferView_4847", + "accessor_3930": { + "bufferView": "bufferView_5232", "byteOffset": 7386, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_38": { - "bufferView": "bufferView_4848", - "byteOffset": 14448, - "byteStride": 12, - "count": 64, - "max": [ - 179.689, - 56.8819, - 70.1378 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_380": { - "bufferView": "bufferView_4848", - "byteOffset": 38784, - "byteStride": 12, - "count": 72, - "max": [ - 1, - 0, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3800": { - "bufferView": "bufferView_4848", + "accessor_3932": { + "bufferView": "bufferView_5233", "byteOffset": 35472, "byteStride": 12, "count": 4, "max": [ - 1047.45, - 1390.67, - 84.0246 + 26.6051, + 35.3231, + 2.13422 ], "min": [ - 1023.81, - 1149.65, - 84.0246 + 26.0048, + 29.201, + 2.13422 ], "type": 35665 }, - "accessor_3802": { - "bufferView": "bufferView_4848", + "accessor_3934": { + "bufferView": "bufferView_5233", "byteOffset": 35520, "byteStride": 12, "count": 4, @@ -6345,32 +6633,32 @@ ], "type": 35665 }, - "accessor_3818": { - "bufferView": "bufferView_4847", + "accessor_3950": { + "bufferView": "bufferView_5232", "byteOffset": 7398, "byteStride": 0, "count": 189, "type": 5123 }, - "accessor_3820": { - "bufferView": "bufferView_4848", + "accessor_3952": { + "bufferView": "bufferView_5233", "byteOffset": 35568, "byteStride": 12, "count": 73, "max": [ - 600.884, - 1405.6, - 163.036 + 15.2625, + 35.7023, + 4.1411 ], "min": [ - 436.213, - 1062.89, - 116.019 + 11.0798, + 26.9974, + 2.94689 ], "type": 35665 }, - "accessor_3822": { - "bufferView": "bufferView_4848", + "accessor_3954": { + "bufferView": "bufferView_5233", "byteOffset": 36444, "byteStride": 12, "count": 73, @@ -6386,32 +6674,39 @@ ], "type": 35665 }, - "accessor_3838": { - "bufferView": "bufferView_4847", + "accessor_396": { + "bufferView": "bufferView_5232", + "byteOffset": 8664, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_3970": { + "bufferView": "bufferView_5232", "byteOffset": 7776, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_3840": { - "bufferView": "bufferView_4848", + "accessor_3972": { + "bufferView": "bufferView_5233", "byteOffset": 37320, "byteStride": 12, "count": 8, "max": [ - 588.364, - 818.629, - 116.019 + 14.9445, + 20.7932, + 2.94689 ], "min": [ - 529.507, - 682.534, - 116.019 + 13.4495, + 17.3364, + 2.94689 ], "type": 35665 }, - "accessor_3842": { - "bufferView": "bufferView_4848", + "accessor_3974": { + "bufferView": "bufferView_5233", "byteOffset": 37416, "byteStride": 12, "count": 8, @@ -6427,32 +6722,49 @@ ], "type": 35665 }, - "accessor_3858": { - "bufferView": "bufferView_4847", + "accessor_398": { + "bufferView": "bufferView_5233", + "byteOffset": 41928, + "byteStride": 12, + "count": 48, + "max": [ + 2.4685, + 4.31611, + 2.4685 + ], + "min": [ + 0.522503, + 4.21261, + 0.522503 + ], + "type": 35665 + }, + "accessor_3990": { + "bufferView": "bufferView_5232", "byteOffset": 7824, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_3860": { - "bufferView": "bufferView_4848", + "accessor_3992": { + "bufferView": "bufferView_5233", "byteOffset": 37512, "byteStride": 12, "count": 4, "max": [ - 513.401, - 1104.05, - 10.4646 + 13.0404, + 28.0428, + 0.265801 ], "min": [ - 427.425, - 1066.94, - 10.4646 + 10.8566, + 27.1002, + 0.265801 ], "type": 35665 }, - "accessor_3862": { - "bufferView": "bufferView_4848", + "accessor_3994": { + "bufferView": "bufferView_5233", "byteOffset": 37560, "byteStride": 12, "count": 4, @@ -6468,32 +6780,66 @@ ], "type": 35665 }, - "accessor_3878": { - "bufferView": "bufferView_4847", - "byteOffset": 7836, - "byteStride": 0, - "count": 6, - "type": 5123 - }, - "accessor_3880": { - "bufferView": "bufferView_4848", - "byteOffset": 37608, + "accessor_40": { + "bufferView": "bufferView_5233", + "byteOffset": 15216, "byteStride": 12, - "count": 4, + "count": 64, "max": [ - 609.672, - 1104.05, - 10.4646 + 1, + 1, + 1 ], "min": [ - 523.696, - 1066.94, - 10.4646 + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_400": { + "bufferView": "bufferView_5233", + "byteOffset": 42504, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 0, + 1 + ], + "min": [ + -1, + 0, + -1 + ], + "type": 35665 + }, + "accessor_4010": { + "bufferView": "bufferView_5232", + "byteOffset": 7836, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_4012": { + "bufferView": "bufferView_5233", + "byteOffset": 37608, + "byteStride": 12, + "count": 4, + "max": [ + 15.4857, + 28.0428, + 0.265801 + ], + "min": [ + 13.3019, + 27.1002, + 0.265801 ], "type": 35665 }, - "accessor_3882": { - "bufferView": "bufferView_4848", + "accessor_4014": { + "bufferView": "bufferView_5233", "byteOffset": 37656, "byteStride": 12, "count": 4, @@ -6509,32 +6855,32 @@ ], "type": 35665 }, - "accessor_3898": { - "bufferView": "bufferView_4847", + "accessor_4030": { + "bufferView": "bufferView_5232", "byteOffset": 7848, "byteStride": 0, "count": 21, "type": 5123 }, - "accessor_3900": { - "bufferView": "bufferView_4848", + "accessor_4032": { + "bufferView": "bufferView_5233", "byteOffset": 37704, "byteStride": 12, "count": 9, "max": [ - 599.815, - 1051.09, - 10.4646 + 15.2353, + 26.6976, + 0.265801 ], "min": [ - 441.736, - 950.736, - 10.4646 + 11.2201, + 24.1487, + 0.265801 ], "type": 35665 }, - "accessor_3902": { - "bufferView": "bufferView_4848", + "accessor_4034": { + "bufferView": "bufferView_5233", "byteOffset": 37812, "byteStride": 12, "count": 9, @@ -6550,32 +6896,32 @@ ], "type": 35665 }, - "accessor_3918": { - "bufferView": "bufferView_4847", + "accessor_4050": { + "bufferView": "bufferView_5232", "byteOffset": 8310, "byteStride": 0, "count": 57, "type": 5123 }, - "accessor_3920": { - "bufferView": "bufferView_4848", + "accessor_4052": { + "bufferView": "bufferView_5233", "byteOffset": 39648, "byteStride": 12, "count": 19, "max": [ - 603.937, - 1054.33, - 10.4646 + 15.34, + 26.7799, + 0.265801 ], "min": [ - 436.018, - 947.494, - 10.4646 + 11.0749, + 24.0663, + 0.265801 ], "type": 35665 }, - "accessor_3922": { - "bufferView": "bufferView_4848", + "accessor_4054": { + "bufferView": "bufferView_5233", "byteOffset": 39876, "byteStride": 12, "count": 19, @@ -6591,32 +6937,32 @@ ], "type": 35665 }, - "accessor_3938": { - "bufferView": "bufferView_4847", + "accessor_4070": { + "bufferView": "bufferView_5232", "byteOffset": 8424, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_3940": { - "bufferView": "bufferView_4848", + "accessor_4072": { + "bufferView": "bufferView_5233", "byteOffset": 40104, "byteStride": 12, "count": 16, "max": [ - 436.213, - 1193.55, - 159.334 + 11.0798, + 30.3163, + 4.04709 ], "min": [ - 434.761, - 1073.16, - 119.721 + 11.0429, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_3942": { - "bufferView": "bufferView_4848", + "accessor_4074": { + "bufferView": "bufferView_5233", "byteOffset": 40296, "byteStride": 12, "count": 16, @@ -6632,39 +6978,32 @@ ], "type": 35665 }, - "accessor_3958": { - "bufferView": "bufferView_4847", + "accessor_4090": { + "bufferView": "bufferView_5232", "byteOffset": 8472, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_396": { - "bufferView": "bufferView_4847", - "byteOffset": 8664, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_3960": { - "bufferView": "bufferView_4848", + "accessor_4092": { + "bufferView": "bufferView_5233", "byteOffset": 40488, "byteStride": 12, "count": 16, "max": [ - 962.366, - 1193.55, - 159.334 + 24.4441, + 30.3163, + 4.04709 ], "min": [ - 960.915, - 1073.16, - 119.721 + 24.4072, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_3962": { - "bufferView": "bufferView_4848", + "accessor_4094": { + "bufferView": "bufferView_5233", "byteOffset": 40680, "byteStride": 12, "count": 16, @@ -6680,49 +7019,32 @@ ], "type": 35665 }, - "accessor_3978": { - "bufferView": "bufferView_4847", + "accessor_4110": { + "bufferView": "bufferView_5232", "byteOffset": 8520, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_398": { - "bufferView": "bufferView_4848", - "byteOffset": 41928, - "byteStride": 12, - "count": 48, - "max": [ - 97.1849, - 169.926, - 97.1849 - ], - "min": [ - 20.571, - 165.851, - 20.571 - ], - "type": 35665 - }, - "accessor_3980": { - "bufferView": "bufferView_4848", + "accessor_4112": { + "bufferView": "bufferView_5233", "byteOffset": 40872, "byteStride": 12, "count": 4, "max": [ - 434.761, - 1193.55, - 159.334 + 11.0429, + 30.3163, + 4.04709 ], "min": [ - 434.761, - 1073.16, - 119.721 + 11.0429, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_3982": { - "bufferView": "bufferView_4848", + "accessor_4114": { + "bufferView": "bufferView_5233", "byteOffset": 40920, "byteStride": 12, "count": 4, @@ -6738,66 +7060,32 @@ ], "type": 35665 }, - "accessor_3998": { - "bufferView": "bufferView_4847", + "accessor_4130": { + "bufferView": "bufferView_5232", "byteOffset": 8532, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_40": { - "bufferView": "bufferView_4848", - "byteOffset": 15216, - "byteStride": 12, - "count": 64, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_400": { - "bufferView": "bufferView_4848", - "byteOffset": 42504, - "byteStride": 12, - "count": 48, - "max": [ - 1, - 0, - 1 - ], - "min": [ - -1, - 0, - -1 - ], - "type": 35665 - }, - "accessor_4000": { - "bufferView": "bufferView_4848", + "accessor_4132": { + "bufferView": "bufferView_5233", "byteOffset": 40968, "byteStride": 12, "count": 16, "max": [ - 602.336, - 1193.55, - 159.334 + 15.2993, + 30.3163, + 4.04709 ], "min": [ - 600.884, - 1073.16, - 119.721 + 15.2625, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_4002": { - "bufferView": "bufferView_4848", + "accessor_4134": { + "bufferView": "bufferView_5233", "byteOffset": 41160, "byteStride": 12, "count": 16, @@ -6813,32 +7101,32 @@ ], "type": 35665 }, - "accessor_4018": { - "bufferView": "bufferView_4847", + "accessor_4150": { + "bufferView": "bufferView_5232", "byteOffset": 8580, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4020": { - "bufferView": "bufferView_4848", + "accessor_4152": { + "bufferView": "bufferView_5233", "byteOffset": 41352, "byteStride": 12, "count": 4, "max": [ - 600.884, - 1196.67, - 163.036 + 15.2625, + 30.3954, + 4.1411 ], "min": [ - 436.213, - 1139.52, - 163.036 + 11.0798, + 28.9438, + 4.1411 ], "type": 35665 }, - "accessor_4022": { - "bufferView": "bufferView_4848", + "accessor_4154": { + "bufferView": "bufferView_5233", "byteOffset": 41400, "byteStride": 12, "count": 4, @@ -6854,32 +7142,39 @@ ], "type": 35665 }, - "accessor_4038": { - "bufferView": "bufferView_4847", + "accessor_416": { + "bufferView": "bufferView_5232", + "byteOffset": 9840, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_4170": { + "bufferView": "bufferView_5232", "byteOffset": 8592, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4040": { - "bufferView": "bufferView_4848", + "accessor_4172": { + "bufferView": "bufferView_5233", "byteOffset": 41448, "byteStride": 12, "count": 4, "max": [ - 602.336, - 1193.55, - 159.334 + 15.2993, + 30.3163, + 4.04709 ], "min": [ - 602.336, - 1073.16, - 119.721 + 15.2993, + 27.2584, + 3.04091 ], "type": 35665 }, - "accessor_4042": { - "bufferView": "bufferView_4848", + "accessor_4174": { + "bufferView": "bufferView_5233", "byteOffset": 41496, "byteStride": 12, "count": 4, @@ -6895,32 +7190,49 @@ ], "type": 35665 }, - "accessor_4058": { - "bufferView": "bufferView_4847", + "accessor_418": { + "bufferView": "bufferView_5233", + "byteOffset": 49224, + "byteStride": 12, + "count": 48, + "max": [ + 2.991, + 0.674251, + 2.991 + ], + "min": [ + 0, + 0.674251, + 0 + ], + "type": 35665 + }, + "accessor_4190": { + "bufferView": "bufferView_5232", "byteOffset": 8604, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4060": { - "bufferView": "bufferView_4848", + "accessor_4192": { + "bufferView": "bufferView_5233", "byteOffset": 41544, "byteStride": 12, "count": 4, "max": [ - 508.079, - 1151.61, - 116.019 + 12.9052, + 29.2508, + 2.94689 ], "min": [ - 502.243, - 1095.42, - 116.019 + 12.757, + 27.8236, + 2.94689 ], "type": 35665 }, - "accessor_4062": { - "bufferView": "bufferView_4848", + "accessor_4194": { + "bufferView": "bufferView_5233", "byteOffset": 41592, "byteStride": 12, "count": 4, @@ -6936,32 +7248,49 @@ ], "type": 35665 }, - "accessor_4078": { - "bufferView": "bufferView_4847", + "accessor_420": { + "bufferView": "bufferView_5233", + "byteOffset": 49800, + "byteStride": 12, + "count": 48, + "max": [ + 0, + 1, + 0 + ], + "min": [ + 0, + 1, + 0 + ], + "type": 35665 + }, + "accessor_4210": { + "bufferView": "bufferView_5232", "byteOffset": 8616, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_4080": { - "bufferView": "bufferView_4848", + "accessor_4212": { + "bufferView": "bufferView_5233", "byteOffset": 41640, "byteStride": 12, "count": 6, "max": [ - 502.243, - 1192.11, - 116.019 + 12.757, + 30.2796, + 2.94689 ], "min": [ - 442.012, - 1067.45, - 116.019 + 11.2271, + 27.1132, + 2.94689 ], "type": 35665 }, - "accessor_4082": { - "bufferView": "bufferView_4848", + "accessor_4214": { + "bufferView": "bufferView_5233", "byteOffset": 41712, "byteStride": 12, "count": 6, @@ -6977,32 +7306,32 @@ ], "type": 35665 }, - "accessor_4098": { - "bufferView": "bufferView_4847", + "accessor_4230": { + "bufferView": "bufferView_5232", "byteOffset": 8640, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_4100": { - "bufferView": "bufferView_4848", + "accessor_4232": { + "bufferView": "bufferView_5233", "byteOffset": 41784, "byteStride": 12, "count": 6, "max": [ - 595.085, - 1192.11, - 116.019 + 15.1152, + 30.2796, + 2.94689 ], "min": [ - 534.854, - 1067.45, - 116.019 + 13.5853, + 27.1132, + 2.94689 ], "type": 35665 }, - "accessor_4102": { - "bufferView": "bufferView_4848", + "accessor_4234": { + "bufferView": "bufferView_5233", "byteOffset": 41856, "byteStride": 12, "count": 6, @@ -7018,32 +7347,32 @@ ], "type": 35665 }, - "accessor_4118": { - "bufferView": "bufferView_4847", + "accessor_4250": { + "bufferView": "bufferView_5232", "byteOffset": 8952, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4120": { - "bufferView": "bufferView_4848", + "accessor_4252": { + "bufferView": "bufferView_5233", "byteOffset": 43080, "byteStride": 12, "count": 4, "max": [ - 534.854, - 1151.61, - 116.019 + 13.5853, + 29.2508, + 2.94689 ], "min": [ - 529.018, - 1095.42, - 116.019 + 13.437, + 27.8236, + 2.94689 ], "type": 35665 }, - "accessor_4122": { - "bufferView": "bufferView_4848", + "accessor_4254": { + "bufferView": "bufferView_5233", "byteOffset": 43128, "byteStride": 12, "count": 4, @@ -7059,32 +7388,32 @@ ], "type": 35665 }, - "accessor_4138": { - "bufferView": "bufferView_4847", + "accessor_4270": { + "bufferView": "bufferView_5232", "byteOffset": 8964, "byteStride": 0, "count": 33, "type": 5123 }, - "accessor_4140": { - "bufferView": "bufferView_4848", + "accessor_4272": { + "bufferView": "bufferView_5233", "byteOffset": 43176, "byteStride": 12, "count": 11, "max": [ - 1113.9, - 1739.99, - 143.498 + 28.2931, + 44.1958, + 3.64484 ], "min": [ - 991.119, - 1739.99, - 59.8634 + 25.1744, + 44.1958, + 1.52053 ], "type": 35665 }, - "accessor_4142": { - "bufferView": "bufferView_4848", + "accessor_4274": { + "bufferView": "bufferView_5233", "byteOffset": 43308, "byteStride": 12, "count": 11, @@ -7100,39 +7429,32 @@ ], "type": 35665 }, - "accessor_4158": { - "bufferView": "bufferView_4847", + "accessor_4290": { + "bufferView": "bufferView_5232", "byteOffset": 9030, "byteStride": 0, "count": 153, "type": 5123 }, - "accessor_416": { - "bufferView": "bufferView_4847", - "byteOffset": 9840, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_4160": { - "bufferView": "bufferView_4848", + "accessor_4292": { + "bufferView": "bufferView_5233", "byteOffset": 43440, "byteStride": 12, "count": 99, "max": [ - 887.083, - 661.693, - 107.472 + 22.5319, + 16.807, + 2.72978 ], "min": [ - 779.042, - 639.72, - 16.2887 + 19.7877, + 16.2489, + 0.413732 ], "type": 35665 }, - "accessor_4162": { - "bufferView": "bufferView_4848", + "accessor_4294": { + "bufferView": "bufferView_5233", "byteOffset": 44628, "byteStride": 12, "count": 99, @@ -7148,49 +7470,32 @@ ], "type": 35665 }, - "accessor_4178": { - "bufferView": "bufferView_4847", + "accessor_4310": { + "bufferView": "bufferView_5232", "byteOffset": 9336, "byteStride": 0, "count": 3, "type": 5123 }, - "accessor_418": { - "bufferView": "bufferView_4848", - "byteOffset": 49224, - "byteStride": 12, - "count": 48, - "max": [ - 117.756, - 26.5453, - 117.756 - ], - "min": [ - 0, - 26.5453, - 0 - ], - "type": 35665 - }, - "accessor_4180": { - "bufferView": "bufferView_4848", + "accessor_4312": { + "bufferView": "bufferView_5233", "byteOffset": 45816, "byteStride": 12, "count": 3, "max": [ - 888.511, - 645.823, - 107.472 + 22.5682, + 16.4039, + 2.72978 ], "min": [ - 886.273, - 603.015, - 107.472 + 22.5113, + 15.3166, + 2.72978 ], "type": 35665 }, - "accessor_4182": { - "bufferView": "bufferView_4848", + "accessor_4314": { + "bufferView": "bufferView_5233", "byteOffset": 45852, "byteStride": 12, "count": 3, @@ -7206,49 +7511,32 @@ ], "type": 35665 }, - "accessor_4198": { - "bufferView": "bufferView_4847", + "accessor_4330": { + "bufferView": "bufferView_5232", "byteOffset": 9342, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_420": { - "bufferView": "bufferView_4848", - "byteOffset": 49800, - "byteStride": 12, - "count": 48, - "max": [ - 0, - 1, - 0 - ], - "min": [ - 0, - 1, - 0 - ], - "type": 35665 - }, - "accessor_4200": { - "bufferView": "bufferView_4848", + "accessor_4332": { + "bufferView": "bufferView_5233", "byteOffset": 45888, "byteStride": 12, "count": 4, "max": [ - 885.444, - 661.693, - 107.472 + 22.4903, + 16.807, + 2.72978 ], "min": [ - 779.042, - 654.282, - 16.2887 + 19.7877, + 16.6188, + 0.413732 ], "type": 35665 }, - "accessor_4202": { - "bufferView": "bufferView_4848", + "accessor_4334": { + "bufferView": "bufferView_5233", "byteOffset": 45936, "byteStride": 12, "count": 4, @@ -7264,32 +7552,32 @@ ], "type": 35665 }, - "accessor_4218": { - "bufferView": "bufferView_4847", + "accessor_4350": { + "bufferView": "bufferView_5232", "byteOffset": 9354, "byteStride": 0, "count": 18, "type": 5123 }, - "accessor_4220": { - "bufferView": "bufferView_4848", + "accessor_4352": { + "bufferView": "bufferView_5233", "byteOffset": 45984, "byteStride": 12, "count": 12, "max": [ - 760.39, - 927.554, - 1.23535 + 19.3139, + 23.5599, + 0.0313778 ], "min": [ - 741.977, - 627.133, - 1.23535 + 18.8462, + 15.9292, + 0.0313778 ], "type": 35665 }, - "accessor_4222": { - "bufferView": "bufferView_4848", + "accessor_4354": { + "bufferView": "bufferView_5233", "byteOffset": 46128, "byteStride": 12, "count": 12, @@ -7305,32 +7593,39 @@ ], "type": 35665 }, - "accessor_4238": { - "bufferView": "bufferView_4847", + "accessor_436": { + "bufferView": "bufferView_5232", + "byteOffset": 12348, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_4370": { + "bufferView": "bufferView_5232", "byteOffset": 9390, "byteStride": 0, "count": 60, "type": 5123 }, - "accessor_4240": { - "bufferView": "bufferView_4848", + "accessor_4372": { + "bufferView": "bufferView_5233", "byteOffset": 46272, "byteStride": 12, "count": 38, "max": [ - 1105.75, - 1730.5, - 44.0336 + 28.0861, + 43.9546, + 1.11845 ], "min": [ - 999.267, - 1403.36, - 43.0611 + 25.3814, + 35.6454, + 1.09375 ], "type": 35665 }, - "accessor_4242": { - "bufferView": "bufferView_4848", + "accessor_4374": { + "bufferView": "bufferView_5233", "byteOffset": 46728, "byteStride": 12, "count": 38, @@ -7346,32 +7641,49 @@ ], "type": 35665 }, - "accessor_4258": { - "bufferView": "bufferView_4847", + "accessor_438": { + "bufferView": "bufferView_5233", + "byteOffset": 61224, + "byteStride": 12, + "count": 48, + "max": [ + 2.87491, + 2.18985, + 2.87491 + ], + "min": [ + 0.116095, + 0.970251, + 0.116095 + ], + "type": 35665 + }, + "accessor_4390": { + "bufferView": "bufferView_5232", "byteOffset": 9510, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_4260": { - "bufferView": "bufferView_4848", + "accessor_4392": { + "bufferView": "bufferView_5233", "byteOffset": 47184, "byteStride": 12, "count": 8, "max": [ - 1346.38, - 1673.16, - 134.554 + 34.198, + 42.4983, + 3.41767 ], "min": [ - 1135.22, - 1433.85, - 134.554 + 28.8346, + 36.4198, + 3.41767 ], "type": 35665 }, - "accessor_4262": { - "bufferView": "bufferView_4848", + "accessor_4394": { + "bufferView": "bufferView_5233", "byteOffset": 47280, "byteStride": 12, "count": 8, @@ -7387,32 +7699,49 @@ ], "type": 35665 }, - "accessor_4278": { - "bufferView": "bufferView_4847", + "accessor_440": { + "bufferView": "bufferView_5233", + "byteOffset": 61800, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 0, + 1 + ], + "min": [ + -1, + 0, + -1 + ], + "type": 35665 + }, + "accessor_4410": { + "bufferView": "bufferView_5232", "byteOffset": 9534, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4280": { - "bufferView": "bufferView_4848", + "accessor_4412": { + "bufferView": "bufferView_5233", "byteOffset": 47376, "byteStride": 12, "count": 4, "max": [ - 1105.75, - 1380.89, - 44.0336 + 28.0861, + 35.0747, + 1.11845 ], "min": [ - 999.267, - 1135.9, - 44.0336 + 25.3814, + 28.8518, + 1.11845 ], "type": 35665 }, - "accessor_4282": { - "bufferView": "bufferView_4848", + "accessor_4414": { + "bufferView": "bufferView_5233", "byteOffset": 47424, "byteStride": 12, "count": 4, @@ -7428,32 +7757,32 @@ ], "type": 35665 }, - "accessor_4298": { - "bufferView": "bufferView_4847", + "accessor_4430": { + "bufferView": "bufferView_5232", "byteOffset": 9546, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_4300": { - "bufferView": "bufferView_4848", + "accessor_4432": { + "bufferView": "bufferView_5233", "byteOffset": 47472, "byteStride": 12, "count": 20, "max": [ - 899.959, - 648.511, - 104.754 + 22.859, + 16.4722, + 2.66075 ], "min": [ - 899.562, - 602.996, - 20.394 + 22.8489, + 15.3161, + 0.518008 ], "type": 35665 }, - "accessor_4302": { - "bufferView": "bufferView_4848", + "accessor_4434": { + "bufferView": "bufferView_5233", "byteOffset": 47712, "byteStride": 12, "count": 20, @@ -7469,32 +7798,32 @@ ], "type": 35665 }, - "accessor_4318": { - "bufferView": "bufferView_4847", + "accessor_4450": { + "bufferView": "bufferView_5232", "byteOffset": 9606, "byteStride": 0, "count": 48, "type": 5123 }, - "accessor_4320": { - "bufferView": "bufferView_4848", + "accessor_4452": { + "bufferView": "bufferView_5233", "byteOffset": 47952, "byteStride": 12, "count": 24, "max": [ - 899.959, - 651.581, - 108.399 + 22.859, + 16.5502, + 2.75333 ], "min": [ - 899.562, - 599.926, - 16.7492 + 22.8489, + 15.2381, + 0.425429 ], "type": 35665 }, - "accessor_4322": { - "bufferView": "bufferView_4848", + "accessor_4454": { + "bufferView": "bufferView_5233", "byteOffset": 48240, "byteStride": 12, "count": 24, @@ -7510,32 +7839,32 @@ ], "type": 35665 }, - "accessor_4338": { - "bufferView": "bufferView_4847", + "accessor_4470": { + "bufferView": "bufferView_5232", "byteOffset": 9702, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_4340": { - "bufferView": "bufferView_4848", + "accessor_4472": { + "bufferView": "bufferView_5233", "byteOffset": 48528, "byteStride": 12, "count": 12, "max": [ - 1105.14, - 1739.99, - 135.313 + 28.0705, + 44.1958, + 3.43695 ], "min": [ - 999.883, - 1719.04, - 68.0481 + 25.397, + 43.6637, + 1.72842 ], "type": 35665 }, - "accessor_4342": { - "bufferView": "bufferView_4848", + "accessor_4474": { + "bufferView": "bufferView_5233", "byteOffset": 48672, "byteStride": 12, "count": 12, @@ -7551,39 +7880,32 @@ ], "type": 35665 }, - "accessor_4358": { - "bufferView": "bufferView_4847", + "accessor_4490": { + "bufferView": "bufferView_5232", "byteOffset": 9762, "byteStride": 0, "count": 39, "type": 5123 }, - "accessor_436": { - "bufferView": "bufferView_4847", - "byteOffset": 12348, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_4360": { - "bufferView": "bufferView_4848", + "accessor_4492": { + "bufferView": "bufferView_5233", "byteOffset": 48816, "byteStride": 12, "count": 17, "max": [ - 773.04, - 1812.29, - 231.164 + 19.6352, + 46.0321, + 5.87158 ], "min": [ - 773.04, - 1537.87, - 66.7596 + 19.6352, + 39.0619, + 1.69569 ], "type": 35665 }, - "accessor_4362": { - "bufferView": "bufferView_4848", + "accessor_4494": { + "bufferView": "bufferView_5233", "byteOffset": 49020, "byteStride": 12, "count": 17, @@ -7599,49 +7921,32 @@ ], "type": 35665 }, - "accessor_4378": { - "bufferView": "bufferView_4847", + "accessor_4510": { + "bufferView": "bufferView_5232", "byteOffset": 10128, "byteStride": 0, "count": 168, "type": 5123 }, - "accessor_438": { - "bufferView": "bufferView_4848", - "byteOffset": 61224, - "byteStride": 12, - "count": 48, - "max": [ - 113.185, - 86.2146, - 113.185 - ], - "min": [ - 4.57067, - 38.1988, - 4.57067 - ], - "type": 35665 - }, - "accessor_4380": { - "bufferView": "bufferView_4848", + "accessor_4512": { + "bufferView": "bufferView_5233", "byteOffset": 50376, "byteStride": 12, "count": 66, "max": [ - 888.709, - 654.282, - 107.472 + 22.5732, + 16.6188, + 2.72978 ], "min": [ - 779.042, - 505.491, - 16.2887 + 19.7877, + 12.8395, + 0.413732 ], "type": 35665 }, - "accessor_4382": { - "bufferView": "bufferView_4848", + "accessor_4514": { + "bufferView": "bufferView_5233", "byteOffset": 51168, "byteStride": 12, "count": 66, @@ -7657,49 +7962,32 @@ ], "type": 35665 }, - "accessor_4398": { - "bufferView": "bufferView_4847", + "accessor_4530": { + "bufferView": "bufferView_5232", "byteOffset": 10464, "byteStride": 0, "count": 30, "type": 5123 }, - "accessor_440": { - "bufferView": "bufferView_4848", - "byteOffset": 61800, - "byteStride": 12, - "count": 48, - "max": [ - 1, - 0, - 1 - ], - "min": [ - -1, - 0, - -1 - ], - "type": 35665 - }, - "accessor_4400": { - "bufferView": "bufferView_4848", + "accessor_4532": { + "bufferView": "bufferView_5233", "byteOffset": 51960, "byteStride": 12, "count": 18, "max": [ - 771.108, - 884.13, - 213.573 + 19.5862, + 22.4569, + 5.42476 ], "min": [ - 767.268, - 875.638, - 203.164 + 19.4886, + 22.2412, + 5.16037 ], "type": 35665 }, - "accessor_4402": { - "bufferView": "bufferView_4848", + "accessor_4534": { + "bufferView": "bufferView_5233", "byteOffset": 52176, "byteStride": 12, "count": 18, @@ -7715,32 +8003,32 @@ ], "type": 35665 }, - "accessor_4418": { - "bufferView": "bufferView_4847", + "accessor_4550": { + "bufferView": "bufferView_5232", "byteOffset": 10524, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_4420": { - "bufferView": "bufferView_4848", + "accessor_4552": { + "bufferView": "bufferView_5233", "byteOffset": 52392, "byteStride": 12, "count": 6, "max": [ - 771.108, - 884.023, - 213.573 + 19.5862, + 22.4542, + 5.42476 ], "min": [ - 768.829, - 875.638, - 203.426 + 19.5283, + 22.2412, + 5.16703 ], "type": 35665 }, - "accessor_4422": { - "bufferView": "bufferView_4848", + "accessor_4554": { + "bufferView": "bufferView_5233", "byteOffset": 52464, "byteStride": 12, "count": 6, @@ -7756,32 +8044,39 @@ ], "type": 35665 }, - "accessor_4438": { - "bufferView": "bufferView_4847", + "accessor_456": { + "bufferView": "bufferView_5232", + "byteOffset": 13462, + "byteStride": 0, + "count": 1008, + "type": 5123 + }, + "accessor_4570": { + "bufferView": "bufferView_5232", "byteOffset": 10548, "byteStride": 0, "count": 78, "type": 5123 }, - "accessor_4440": { - "bufferView": "bufferView_4848", + "accessor_4572": { + "bufferView": "bufferView_5233", "byteOffset": 52536, "byteStride": 12, "count": 28, "max": [ - 605.346, - 1737.14, - 159.768 + 15.3758, + 44.1234, + 4.05812 ], "min": [ - 421.615, - 1737.14, - 19.4928 + 10.709, + 44.1234, + 0.495116 ], "type": 35665 }, - "accessor_4442": { - "bufferView": "bufferView_4848", + "accessor_4574": { + "bufferView": "bufferView_5233", "byteOffset": 52872, "byteStride": 12, "count": 28, @@ -7797,32 +8092,49 @@ ], "type": 35665 }, - "accessor_4458": { - "bufferView": "bufferView_4847", + "accessor_458": { + "bufferView": "bufferView_5233", + "byteOffset": 68232, + "byteStride": 12, + "count": 480, + "max": [ + 3.0132, + 4.31611, + 3.0132 + ], + "min": [ + -0.0221965, + 0.970251, + -0.0221965 + ], + "type": 35665 + }, + "accessor_4590": { + "bufferView": "bufferView_5232", "byteOffset": 10704, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_4460": { - "bufferView": "bufferView_4848", + "accessor_4592": { + "bufferView": "bufferView_5233", "byteOffset": 53208, "byteStride": 12, "count": 24, "max": [ - 766.759, - 353.122, - 1.23535 + 19.4757, + 8.9693, + 0.0313778 ], "min": [ - 700.237, - 19.6105, - 1.23535 + 17.786, + 0.498106, + 0.0313778 ], "type": 35665 }, - "accessor_4462": { - "bufferView": "bufferView_4848", + "accessor_4594": { + "bufferView": "bufferView_5233", "byteOffset": 53496, "byteStride": 12, "count": 24, @@ -7838,32 +8150,49 @@ ], "type": 35665 }, - "accessor_4478": { - "bufferView": "bufferView_4847", + "accessor_460": { + "bufferView": "bufferView_5233", + "byteOffset": 73992, + "byteStride": 12, + "count": 480, + "max": [ + 1, + 0.995024, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4610": { + "bufferView": "bufferView_5232", "byteOffset": 10836, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_4480": { - "bufferView": "bufferView_4848", + "accessor_4612": { + "bufferView": "bufferView_5233", "byteOffset": 53784, "byteStride": 12, "count": 10, "max": [ - 953.257, - 1409.32, - 155.884 + 24.2127, + 35.7966, + 3.95946 ], "min": [ - 803.901, - 1409.32, - 116.019 + 20.4191, + 35.7966, + 2.94689 ], "type": 35665 }, - "accessor_4482": { - "bufferView": "bufferView_4848", + "accessor_4614": { + "bufferView": "bufferView_5233", "byteOffset": 53904, "byteStride": 12, "count": 10, @@ -7879,32 +8208,32 @@ ], "type": 35665 }, - "accessor_4498": { - "bufferView": "bufferView_4847", + "accessor_4630": { + "bufferView": "bufferView_5232", "byteOffset": 10884, "byteStride": 0, "count": 12, "type": 5123 }, - "accessor_4500": { - "bufferView": "bufferView_4848", + "accessor_4632": { + "bufferView": "bufferView_5233", "byteOffset": 54024, "byteStride": 12, "count": 6, "max": [ - 955.116, - 1192.11, - 116.019 + 24.2599, + 30.2796, + 2.94689 ], "min": [ - 894.884, - 1067.45, - 116.019 + 22.7301, + 27.1132, + 2.94689 ], "type": 35665 }, - "accessor_4502": { - "bufferView": "bufferView_4848", + "accessor_4634": { + "bufferView": "bufferView_5233", "byteOffset": 54096, "byteStride": 12, "count": 6, @@ -7920,32 +8249,32 @@ ], "type": 35665 }, - "accessor_4518": { - "bufferView": "bufferView_4847", + "accessor_4650": { + "bufferView": "bufferView_5232", "byteOffset": 10908, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4520": { - "bufferView": "bufferView_4848", + "accessor_4652": { + "bufferView": "bufferView_5233", "byteOffset": 54168, "byteStride": 12, "count": 4, "max": [ - 770.866, - 883.041, - 212.603 + 19.58, + 22.4293, + 5.40011 ], "min": [ - 769.06, - 876.63, - 204.467 + 19.5341, + 22.2664, + 5.19347 ], "type": 35665 }, - "accessor_4522": { - "bufferView": "bufferView_4848", + "accessor_4654": { + "bufferView": "bufferView_5233", "byteOffset": 54216, "byteStride": 12, "count": 4, @@ -7961,32 +8290,32 @@ ], "type": 35665 }, - "accessor_4538": { - "bufferView": "bufferView_4847", + "accessor_4670": { + "bufferView": "bufferView_5232", "byteOffset": 10920, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_4540": { - "bufferView": "bufferView_4848", + "accessor_4672": { + "bufferView": "bufferView_5233", "byteOffset": 54264, "byteStride": 12, "count": 8, "max": [ - 628.298, - 884.023, - 213.573 + 15.9588, + 22.4542, + 5.42476 ], "min": [ - 626.031, - 875.648, - 203.497 + 15.9012, + 22.2415, + 5.16882 ], "type": 35665 }, - "accessor_4542": { - "bufferView": "bufferView_4848", + "accessor_4674": { + "bufferView": "bufferView_5233", "byteOffset": 54360, "byteStride": 12, "count": 8, @@ -8002,39 +8331,32 @@ ], "type": 35665 }, - "accessor_4558": { - "bufferView": "bufferView_4847", + "accessor_4690": { + "bufferView": "bufferView_5232", "byteOffset": 10968, "byteStride": 0, "count": 24, "type": 5123 }, - "accessor_456": { - "bufferView": "bufferView_4847", - "byteOffset": 13458, - "byteStride": 0, - "count": 1008, - "type": 5123 - }, - "accessor_4560": { - "bufferView": "bufferView_4848", + "accessor_4692": { + "bufferView": "bufferView_5233", "byteOffset": 54456, "byteStride": 12, "count": 10, "max": [ - 593.227, - 1409.32, - 155.884 + 15.068, + 35.7966, + 3.95946 ], "min": [ - 443.87, - 1409.32, - 116.019 + 11.2743, + 35.7966, + 2.94689 ], "type": 35665 }, - "accessor_4562": { - "bufferView": "bufferView_4848", + "accessor_4694": { + "bufferView": "bufferView_5233", "byteOffset": 54576, "byteStride": 12, "count": 10, @@ -8050,50 +8372,33 @@ ], "type": 35665 }, - "accessor_4578": { - "bufferView": "bufferView_4847", + "accessor_4710": { + "bufferView": "bufferView_5232", "byteOffset": 11016, "byteStride": 0, "count": 324, "type": 5123 }, - "accessor_458": { - "bufferView": "bufferView_4848", - "byteOffset": 68208, + "accessor_4712": { + "bufferView": "bufferView_5233", + "byteOffset": 54696, "byteStride": 12, - "count": 480, + "count": 116, "max": [ - 118.63, - 169.926, - 118.63 + 19.4729, + 46.0321, + 7.37246 ], "min": [ - -0.873878, - 38.1988, - -0.873878 + 16.0141, + 45.2729, + 0.194807 ], "type": 35665 }, - "accessor_4580": { - "bufferView": "bufferView_4848", - "byteOffset": 54696, - "byteStride": 12, - "count": 116, - "max": [ - 766.65, - 1812.29, - 290.254 - ], - "min": [ - 630.477, - 1782.4, - 7.66956 - ], - "type": 35665 - }, - "accessor_4582": { - "bufferView": "bufferView_4848", - "byteOffset": 56088, + "accessor_4714": { + "bufferView": "bufferView_5233", + "byteOffset": 56088, "byteStride": 12, "count": 116, "max": [ @@ -8108,49 +8413,32 @@ ], "type": 35665 }, - "accessor_4598": { - "bufferView": "bufferView_4847", + "accessor_4730": { + "bufferView": "bufferView_5232", "byteOffset": 11664, "byteStride": 0, "count": 156, "type": 5123 }, - "accessor_460": { - "bufferView": "bufferView_4848", - "byteOffset": 73968, - "byteStride": 12, - "count": 480, - "max": [ - 1, - 0.995024, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4600": { - "bufferView": "bufferView_4848", + "accessor_4732": { + "bufferView": "bufferView_5233", "byteOffset": 57480, "byteStride": 12, "count": 54, "max": [ - 766.65, - 1782.4, - 290.254 + 19.4729, + 45.2729, + 7.37246 ], "min": [ - 630.477, - 1782.4, - 7.66956 + 16.0141, + 45.2729, + 0.194807 ], "type": 35665 }, - "accessor_4602": { - "bufferView": "bufferView_4848", + "accessor_4734": { + "bufferView": "bufferView_5233", "byteOffset": 58128, "byteStride": 12, "count": 54, @@ -8166,32 +8454,32 @@ ], "type": 35665 }, - "accessor_4618": { - "bufferView": "bufferView_4847", + "accessor_4750": { + "bufferView": "bufferView_5232", "byteOffset": 11976, "byteStride": 0, "count": 93, "type": 5123 }, - "accessor_4620": { - "bufferView": "bufferView_4848", + "accessor_4752": { + "bufferView": "bufferView_5233", "byteOffset": 58776, "byteStride": 12, "count": 51, "max": [ - 609.427, - 1685.01, - 10.4646 + 15.4795, + 42.7993, + 0.265801 ], "min": [ - 427.669, - 1665.62, - 9.49217 + 10.8628, + 42.3069, + 0.241101 ], "type": 35665 }, - "accessor_4622": { - "bufferView": "bufferView_4848", + "accessor_4754": { + "bufferView": "bufferView_5233", "byteOffset": 59388, "byteStride": 12, "count": 51, @@ -8207,32 +8495,39 @@ ], "type": 35665 }, - "accessor_4638": { - "bufferView": "bufferView_4847", + "accessor_476": { + "bufferView": "bufferView_5232", + "byteOffset": 15606, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_4770": { + "bufferView": "bufferView_5232", "byteOffset": 12162, "byteStride": 0, "count": 93, "type": 5123 }, - "accessor_4640": { - "bufferView": "bufferView_4848", + "accessor_4772": { + "bufferView": "bufferView_5233", "byteOffset": 60000, "byteStride": 12, "count": 51, "max": [ - 969.458, - 1685.01, - 10.4646 + 24.6242, + 42.7993, + 0.265801 ], "min": [ - 787.7, - 1665.62, - 9.49217 + 20.0076, + 42.3069, + 0.241101 ], "type": 35665 }, - "accessor_4642": { - "bufferView": "bufferView_4848", + "accessor_4774": { + "bufferView": "bufferView_5233", "byteOffset": 60612, "byteStride": 12, "count": 51, @@ -8248,32 +8543,49 @@ ], "type": 35665 }, - "accessor_4658": { - "bufferView": "bufferView_4847", + "accessor_478": { + "bufferView": "bufferView_5233", + "byteOffset": 80352, + "byteStride": 12, + "count": 48, + "max": [ + 2.87491, + 0.970251, + 2.87491 + ], + "min": [ + 0.116095, + 0.674251, + 0.116095 + ], + "type": 35665 + }, + "accessor_4790": { + "bufferView": "bufferView_5232", "byteOffset": 12636, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4660": { - "bufferView": "bufferView_4848", + "accessor_4792": { + "bufferView": "bufferView_5233", "byteOffset": 62376, "byteStride": 12, "count": 4, "max": [ - 762.933, - 1386.88, - 190.758 + 19.3785, + 35.2267, + 4.84524 ], "min": [ - 634.194, - 1371.11, - 190.758 + 16.1085, + 34.8263, + 4.84524 ], "type": 35665 }, - "accessor_4662": { - "bufferView": "bufferView_4848", + "accessor_4794": { + "bufferView": "bufferView_5233", "byteOffset": 62424, "byteStride": 12, "count": 4, @@ -8289,32 +8601,49 @@ ], "type": 35665 }, - "accessor_4678": { - "bufferView": "bufferView_4847", + "accessor_480": { + "bufferView": "bufferView_5233", + "byteOffset": 80928, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 0, + 1 + ], + "min": [ + -1, + 0, + -1 + ], + "type": 35665 + }, + "accessor_4810": { + "bufferView": "bufferView_5232", "byteOffset": 12648, "byteStride": 0, "count": 6, "type": 5123 }, - "accessor_4680": { - "bufferView": "bufferView_4848", + "accessor_4812": { + "bufferView": "bufferView_5233", "byteOffset": 62472, "byteStride": 12, "count": 4, "max": [ - 762.933, - 1413.02, - 190.758 + 19.3785, + 35.8906, + 4.84524 ], "min": [ - 634.194, - 1397.25, - 190.758 + 16.1085, + 35.4902, + 4.84524 ], "type": 35665 }, - "accessor_4682": { - "bufferView": "bufferView_4848", + "accessor_4814": { + "bufferView": "bufferView_5233", "byteOffset": 62520, "byteStride": 12, "count": 4, @@ -8330,32 +8659,32 @@ ], "type": 35665 }, - "accessor_4698": { - "bufferView": "bufferView_4847", + "accessor_4830": { + "bufferView": "bufferView_5232", "byteOffset": 12660, "byteStride": 0, "count": 129, "type": 5123 }, - "accessor_4700": { - "bufferView": "bufferView_4848", + "accessor_4832": { + "bufferView": "bufferView_5233", "byteOffset": 62568, "byteStride": 12, "count": 65, "max": [ - 774.244, - 523.825, - 116.019 + 19.6658, + 13.3052, + 2.94689 ], "min": [ - 622.884, - 354.608, - 115.043 + 15.8212, + 9.00704, + 2.92209 ], "type": 35665 }, - "accessor_4702": { - "bufferView": "bufferView_4848", + "accessor_4834": { + "bufferView": "bufferView_5233", "byteOffset": 63348, "byteStride": 12, "count": 65, @@ -8371,32 +8700,32 @@ ], "type": 35665 }, - "accessor_4718": { - "bufferView": "bufferView_4847", + "accessor_4850": { + "bufferView": "bufferView_5232", "byteOffset": 12918, "byteStride": 0, "count": 48, "type": 5123 }, - "accessor_4720": { - "bufferView": "bufferView_4848", + "accessor_4852": { + "bufferView": "bufferView_5233", "byteOffset": 64128, "byteStride": 12, "count": 30, "max": [ - 896.965, - 1376.98, - 10.4646 + 22.7829, + 34.9753, + 0.265801 ], "min": [ - 860.193, - 1144.8, - 8.57485 + 21.8489, + 29.0779, + 0.217801 ], "type": 35665 }, - "accessor_4722": { - "bufferView": "bufferView_4848", + "accessor_4854": { + "bufferView": "bufferView_5233", "byteOffset": 64488, "byteStride": 12, "count": 30, @@ -8412,32 +8741,32 @@ ], "type": 35665 }, - "accessor_4738": { - "bufferView": "bufferView_4847", + "accessor_4870": { + "bufferView": "bufferView_5232", "byteOffset": 13014, "byteStride": 0, "count": 48, "type": 5123 }, - "accessor_4740": { - "bufferView": "bufferView_4848", + "accessor_4872": { + "bufferView": "bufferView_5233", "byteOffset": 64848, "byteStride": 12, "count": 30, "max": [ - 536.935, - 1376.98, - 10.4646 + 13.6381, + 34.9753, + 0.265801 ], "min": [ - 500.162, - 1144.8, - 8.57485 + 12.7041, + 29.0779, + 0.217801 ], "type": 35665 }, - "accessor_4742": { - "bufferView": "bufferView_4848", + "accessor_4874": { + "bufferView": "bufferView_5233", "byteOffset": 65208, "byteStride": 12, "count": 30, @@ -8453,39 +8782,32 @@ ], "type": 35665 }, - "accessor_4758": { - "bufferView": "bufferView_4847", + "accessor_4890": { + "bufferView": "bufferView_5232", "byteOffset": 13110, "byteStride": 0, "count": 48, "type": 5123 }, - "accessor_476": { - "bufferView": "bufferView_4847", - "byteOffset": 15474, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_4760": { - "bufferView": "bufferView_4848", + "accessor_4892": { + "bufferView": "bufferView_5233", "byteOffset": 65568, "byteStride": 12, "count": 30, "max": [ - 896.965, - 1147.26, - 10.4646 + 22.7829, + 29.1404, + 0.265801 ], "min": [ - 860.193, - 1113.78, - 10.2441 + 21.8489, + 28.2899, + 0.260201 ], "type": 35665 }, - "accessor_4762": { - "bufferView": "bufferView_4848", + "accessor_4894": { + "bufferView": "bufferView_5233", "byteOffset": 65928, "byteStride": 12, "count": 30, @@ -8501,50 +8823,74 @@ ], "type": 35665 }, - "accessor_4778": { - "bufferView": "bufferView_4847", + "accessor_4910": { + "bufferView": "bufferView_5232", "byteOffset": 13206, "byteStride": 0, "count": 39, "type": 5123 }, - "accessor_478": { - "bufferView": "bufferView_4848", - "byteOffset": 79728, + "accessor_4912": { + "bufferView": "bufferView_5233", + "byteOffset": 66288, "byteStride": 12, - "count": 48, + "count": 25, "max": [ - 113.185, - 38.1988, - 113.185 + 22.7829, + 35.7092, + 0.265801 ], "min": [ - 4.57067, - 26.5453, - 4.57067 + 21.8489, + 34.8241, + 0.260201 ], "type": 35665 }, - "accessor_4780": { - "bufferView": "bufferView_4848", - "byteOffset": 66288, + "accessor_4914": { + "bufferView": "bufferView_5233", + "byteOffset": 66588, + "byteStride": 12, + "count": 25, + "max": [ + 1, + 1, + -0 + ], + "min": [ + -1, + -0.588421, + -1 + ], + "type": 35665 + }, + "accessor_4930": { + "bufferView": "bufferView_5232", + "byteOffset": 13284, + "byteStride": 0, + "count": 39, + "type": 5123 + }, + "accessor_4932": { + "bufferView": "bufferView_5233", + "byteOffset": 66888, "byteStride": 12, "count": 25, "max": [ - 896.965, - 1405.88, - 10.4646 + 13.6381, + 35.7092, + 0.265801 ], "min": [ - 860.193, - 1371.03, - 10.2441 + 12.7041, + 34.8241, + 0.260201 ], "type": 35665 }, - "accessor_4782": { - "bufferView": "bufferView_4848", - "byteOffset": 66588, + "accessor_4934": { + "bufferView": "bufferView_5233", + "byteOffset": 67188, "byteStride": 12, "count": 25, "max": [ @@ -8559,214 +8905,708 @@ ], "type": 35665 }, - "accessor_4798": { - "bufferView": "bufferView_4847", - "byteOffset": 13284, + "accessor_4950": { + "bufferView": "bufferView_5232", + "byteOffset": 13362, "byteStride": 0, - "count": 39, + "count": 48, "type": 5123 }, - "accessor_480": { - "bufferView": "bufferView_4848", - "byteOffset": 80304, + "accessor_4952": { + "bufferView": "bufferView_5233", + "byteOffset": 67488, "byteStride": 12, - "count": 48, + "count": 30, + "max": [ + 13.6381, + 29.1404, + 0.265801 + ], + "min": [ + 12.7041, + 28.2899, + 0.260201 + ], + "type": 35665 + }, + "accessor_4954": { + "bufferView": "bufferView_5233", + "byteOffset": 67848, + "byteStride": 12, + "count": 30, "max": [ 1, - 0, - 1 + 0.710642, + 0 ], "min": [ -1, - 0, + -1, -1 ], "type": 35665 }, - "accessor_4800": { - "bufferView": "bufferView_4848", - "byteOffset": 66888, + "accessor_496": { + "bufferView": "bufferView_5232", + "byteOffset": 15902, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_4964": { + "bufferView": "bufferView_5232", + "byteOffset": 13458, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4966": { + "bufferView": "bufferView_5233", + "byteOffset": 68208, "byteStride": 12, - "count": 25, + "count": 2, "max": [ - 536.935, - 1405.88, - 10.4646 + 19.0863, + 0.498112, + 0.0313778 ], "min": [ - 500.162, - 1371.03, - 10.2441 + 19.0862, + 0.498106, + 0.0313778 ], "type": 35665 }, - "accessor_4802": { - "bufferView": "bufferView_4848", - "byteOffset": 67188, + "accessor_4976": { + "bufferView": "bufferView_5232", + "byteOffset": 15478, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4978": { + "bufferView": "bufferView_5233", + "byteOffset": 79752, "byteStride": 12, - "count": 25, + "count": 2, + "max": [ + 16.4008, + 0.498112, + 0.0313778 + ], + "min": [ + 16.4008, + 0.498106, + 0.0313778 + ], + "type": 35665 + }, + "accessor_498": { + "bufferView": "bufferView_5233", + "byteOffset": 81552, + "byteStride": 12, + "count": 48, + "max": [ + 2.50183, + 4.31611, + 2.50183 + ], + "min": [ + 0.489169, + 4.31611, + 0.489169 + ], + "type": 35665 + }, + "accessor_4988": { + "bufferView": "bufferView_5232", + "byteOffset": 15482, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4990": { + "bufferView": "bufferView_5233", + "byteOffset": 79776, + "byteStride": 12, + "count": 2, + "max": [ + 19.2427, + 10.12, + 2.94689 + ], + "min": [ + 19.2427, + 10.12, + 2.94319 + ], + "type": 35665 + }, + "accessor_500": { + "bufferView": "bufferView_5233", + "byteOffset": 82128, + "byteStride": 12, + "count": 48, "max": [ + 0, 1, + 0 + ], + "min": [ + 0, 1, - -0 + 0 + ], + "type": 35665 + }, + "accessor_5000": { + "bufferView": "bufferView_5232", + "byteOffset": 15486, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_5002": { + "bufferView": "bufferView_5233", + "byteOffset": 79800, + "byteStride": 12, + "count": 4, + "max": [ + 15.9774, + 33.2068, + 4.82161 ], "min": [ - -1, - -0.588421, - -1 + 15.9515, + 33.1814, + 4.80604 ], "type": 35665 }, - "accessor_4818": { - "bufferView": "bufferView_4847", - "byteOffset": 13362, + "accessor_5012": { + "bufferView": "bufferView_5232", + "byteOffset": 15498, "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_5014": { + "bufferView": "bufferView_5233", + "byteOffset": 79848, + "byteStride": 12, + "count": 3, + "max": [ + 15.6596, + 12.9003, + 0.25626 + ], + "min": [ + 15.6164, + 12.8395, + 0.196618 + ], + "type": 35665 + }, + "accessor_5024": { + "bufferView": "bufferView_5232", + "byteOffset": 15506, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_5026": { + "bufferView": "bufferView_5233", + "byteOffset": 79884, + "byteStride": 12, + "count": 3, + "max": [ + 19.8706, + 12.9003, + 0.25626 + ], + "min": [ + 19.8274, + 12.8395, + 0.196618 + ], + "type": 35665 + }, + "accessor_5036": { + "bufferView": "bufferView_5232", + "byteOffset": 15514, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5038": { + "bufferView": "bufferView_5233", + "byteOffset": 79920, + "byteStride": 12, + "count": 2, + "max": [ + 19.8562, + 5.92358, + 2.04804 + ], + "min": [ + 19.8562, + 5.92358, + 1.09547 + ], + "type": 35665 + }, + "accessor_5048": { + "bufferView": "bufferView_5232", + "byteOffset": 15518, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_5050": { + "bufferView": "bufferView_5233", + "byteOffset": 79944, + "byteStride": 12, + "count": 3, + "max": [ + 28.4489, + 44.0724, + 1.56506 + ], + "min": [ + 28.4489, + 44.0678, + 1.56004 + ], + "type": 35665 + }, + "accessor_5060": { + "bufferView": "bufferView_5232", + "byteOffset": 15530, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5062": { + "bufferView": "bufferView_5233", + "byteOffset": 79980, + "byteStride": 12, + "count": 2, + "max": [ + 22.859, + 16.5502, + 0.425429 + ], + "min": [ + 22.859, + 16.5502, + 0.408646 + ], + "type": 35665 + }, + "accessor_5072": { + "bufferView": "bufferView_5232", + "byteOffset": 15534, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5074": { + "bufferView": "bufferView_5233", + "byteOffset": 80004, + "byteStride": 12, + "count": 2, + "max": [ + 16.0425, + 22.1976, + 5.38537 + ], + "min": [ + 16.0342, + 22.0903, + 5.38537 + ], + "type": 35665 + }, + "accessor_5084": { + "bufferView": "bufferView_5232", + "byteOffset": 15538, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5086": { + "bufferView": "bufferView_5233", + "byteOffset": 80028, + "byteStride": 12, + "count": 2, + "max": [ + 15.6598, + 16.7046, + 1.41752 + ], + "min": [ + 15.6308, + 16.6221, + 1.27878 + ], + "type": 35665 + }, + "accessor_5096": { + "bufferView": "bufferView_5232", + "byteOffset": 15542, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5098": { + "bufferView": "bufferView_5233", + "byteOffset": 80052, + "byteStride": 12, + "count": 2, + "max": [ + 15.7553, + 35.7651, + 4.84033 + ], + "min": [ + 15.6515, + 35.7651, + 4.28252 + ], + "type": 35665 + }, + "accessor_5108": { + "bufferView": "bufferView_5232", + "byteOffset": 15546, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_5110": { + "bufferView": "bufferView_5233", + "byteOffset": 80076, + "byteStride": 12, + "count": 3, + "max": [ + 13.2959, + 16.4039, + 2.72978 + ], + "min": [ + 13.2755, + 16.4039, + 2.72978 + ], + "type": 35665 + }, + "accessor_5120": { + "bufferView": "bufferView_5232", + "byteOffset": 15554, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_5122": { + "bufferView": "bufferView_5233", + "byteOffset": 80112, + "byteStride": 12, + "count": 4, + "max": [ + 19.5355, + 33.2068, + 4.82161 + ], + "min": [ + 19.5096, + 33.1814, + 4.80604 + ], + "type": 35665 + }, + "accessor_5132": { + "bufferView": "bufferView_5232", + "byteOffset": 15566, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5134": { + "bufferView": "bufferView_5233", + "byteOffset": 80160, + "byteStride": 12, + "count": 2, + "max": [ + 19.5385, + 22.2408, + 5.4288 + ], + "min": [ + 19.5385, + 22.1976, + 5.4288 + ], + "type": 35665 + }, + "accessor_5144": { + "bufferView": "bufferView_5232", + "byteOffset": 15570, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_5146": { + "bufferView": "bufferView_5233", + "byteOffset": 80184, + "byteStride": 12, + "count": 3, + "max": [ + 7.03817, + 44.0724, + 1.56506 + ], + "min": [ + 7.03817, + 44.0678, + 1.56004 + ], + "type": 35665 + }, + "accessor_5156": { + "bufferView": "bufferView_5232", + "byteOffset": 15582, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5158": { + "bufferView": "bufferView_5233", + "byteOffset": 80220, + "byteStride": 12, + "count": 2, + "max": [ + 12.6281, + 16.5502, + 0.425429 + ], + "min": [ + 12.6281, + 16.5502, + 0.408646 + ], + "type": 35665 + }, + "accessor_516": { + "bufferView": "bufferView_5232", + "byteOffset": 16190, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_5168": { + "bufferView": "bufferView_5232", + "byteOffset": 15586, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5170": { + "bufferView": "bufferView_5233", + "byteOffset": 80244, + "byteStride": 12, + "count": 2, + "max": [ + 19.4528, + 22.1976, + 5.38537 + ], + "min": [ + 19.4445, + 22.0903, + 5.38537 + ], + "type": 35665 + }, + "accessor_518": { + "bufferView": "bufferView_5233", + "byteOffset": 82704, + "byteStride": 12, "count": 48, + "max": [ + 2.4685, + 4.21261, + 2.4685 + ], + "min": [ + 0.522503, + 1.33305, + 0.522503 + ], + "type": 35665 + }, + "accessor_5180": { + "bufferView": "bufferView_5232", + "byteOffset": 15590, + "byteStride": 0, + "count": 4, "type": 5123 }, - "accessor_4820": { - "bufferView": "bufferView_4848", - "byteOffset": 67488, + "accessor_5182": { + "bufferView": "bufferView_5233", + "byteOffset": 80268, "byteStride": 12, - "count": 30, + "count": 3, "max": [ - 536.935, - 1147.26, - 10.4646 + 22.2116, + 16.4039, + 2.72978 ], "min": [ - 500.162, - 1113.78, - 10.2441 + 22.1912, + 16.4039, + 2.72978 ], "type": 35665 }, - "accessor_4822": { - "bufferView": "bufferView_4848", - "byteOffset": 67848, + "accessor_5192": { + "bufferView": "bufferView_5232", + "byteOffset": 15598, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5194": { + "bufferView": "bufferView_5233", + "byteOffset": 80304, "byteStride": 12, - "count": 30, + "count": 2, "max": [ - 1, - 0.710642, - 0 + 19.8562, + 16.7046, + 1.41752 ], "min": [ - -1, - -1, - -1 + 19.8273, + 16.6221, + 1.27878 ], "type": 35665 }, - "accessor_496": { - "bufferView": "bufferView_4847", - "byteOffset": 15762, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_498": { - "bufferView": "bufferView_4848", - "byteOffset": 80880, + "accessor_520": { + "bufferView": "bufferView_5233", + "byteOffset": 83280, "byteStride": 12, "count": 48, "max": [ - 98.4973, - 169.926, - 98.4973 + 0.995138, + 0.0984868, + 0.995138 ], "min": [ - 19.2586, - 169.926, - 19.2586 + -0.995138, + 0.0984868, + -0.995138 ], "type": 35665 }, - "accessor_500": { - "bufferView": "bufferView_4848", - "byteOffset": 81456, + "accessor_5204": { + "bufferView": "bufferView_5232", + "byteOffset": 15602, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5206": { + "bufferView": "bufferView_5233", + "byteOffset": 80328, "byteStride": 12, - "count": 48, + "count": 2, "max": [ - 0, - 1, - 0 + 19.8356, + 35.7651, + 4.84033 ], "min": [ - 0, - 1, - 0 + 19.7317, + 35.7651, + 4.28252 ], "type": 35665 }, - "accessor_516": { - "bufferView": "bufferView_4847", - "byteOffset": 16050, + "accessor_5216": { + "bufferView": "bufferView_5232", + "byteOffset": 15894, "byteStride": 0, - "count": 144, + "count": 2, "type": 5123 }, - "accessor_518": { - "bufferView": "bufferView_4848", - "byteOffset": 82032, + "accessor_5218": { + "bufferView": "bufferView_5233", + "byteOffset": 81504, "byteStride": 12, - "count": 48, + "count": 2, "max": [ - 97.1849, - 165.851, - 97.1849 + 19.5754, + 9.08391, + 2.94689 ], "min": [ - 20.571, - 52.4823, - 20.571 + 19.5754, + 9.08391, + 2.94319 ], "type": 35665 }, - "accessor_520": { - "bufferView": "bufferView_4848", - "byteOffset": 82608, + "accessor_5228": { + "bufferView": "bufferView_5232", + "byteOffset": 15898, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5230": { + "bufferView": "bufferView_5233", + "byteOffset": 81528, "byteStride": 12, - "count": 48, + "count": 2, "max": [ - 0.995138, - 0.0984868, - 0.995138 + 19.6855, + 8.97913, + 2.94689 ], "min": [ - -0.995138, - 0.0984868, - -0.995138 + 19.6855, + 8.97913, + 2.94319 ], "type": 35665 }, "accessor_536": { - "bufferView": "bufferView_4847", - "byteOffset": 16338, + "bufferView": "bufferView_5232", + "byteOffset": 16478, "byteStride": 0, "count": 66, "type": 5123 }, "accessor_538": { - "bufferView": "bufferView_4848", - "byteOffset": 83184, + "bufferView": "bufferView_5233", + "byteOffset": 83856, "byteStride": 12, "count": 24, "max": [ - 75.1311, - 6.33271, - 75.1311 + 1.90833, + 0.160851, + 1.90833 ], "min": [ - 42.6248, - 6.33271, - 42.6248 + 1.08267, + 0.160851, + 1.08267 ], "type": 35665 }, "accessor_540": { - "bufferView": "bufferView_4848", - "byteOffset": 83472, + "bufferView": "bufferView_5233", + "byteOffset": 84144, "byteStride": 12, "count": 24, "max": [ @@ -8782,39 +9622,39 @@ "type": 35665 }, "accessor_556": { - "bufferView": "bufferView_4847", - "byteOffset": 16482, + "bufferView": "bufferView_5232", + "byteOffset": 16622, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_558": { - "bufferView": "bufferView_4848", - "byteOffset": 83856, + "bufferView": "bufferView_5233", + "byteOffset": 84528, "byteStride": 12, "count": 48, "max": [ - 85.9651, - 52.4823, - 85.9651 + 2.18351, + 1.33305, + 2.18351 ], "min": [ - 31.7908, - 6.33271, - 31.7908 + 0.807488, + 0.160851, + 0.807488 ], "type": 35665 }, "accessor_56": { - "bufferView": "bufferView_4847", - "byteOffset": 16470, + "bufferView": "bufferView_5232", + "byteOffset": 16610, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_560": { - "bufferView": "bufferView_4848", - "byteOffset": 84432, + "bufferView": "bufferView_5233", + "byteOffset": 85104, "byteStride": 12, "count": 48, "max": [ @@ -8830,21 +9670,21 @@ "type": 35665 }, "accessor_576": { - "bufferView": "bufferView_4847", - "byteOffset": 16770, + "bufferView": "bufferView_5232", + "byteOffset": 16910, "byteStride": 0, "count": 210, "type": 5123 }, "accessor_578": { - "bufferView": "bufferView_4848", - "byteOffset": 85008, + "bufferView": "bufferView_5233", + "byteOffset": 85680, "byteStride": 12, "count": 72, "max": [ - 117.756, - 26.5453, - 117.756 + 2.991, + 0.674251, + 2.991 ], "min": [ 0, @@ -8854,25 +9694,25 @@ "type": 35665 }, "accessor_58": { - "bufferView": "bufferView_4848", - "byteOffset": 83760, + "bufferView": "bufferView_5233", + "byteOffset": 84432, "byteStride": 12, "count": 4, "max": [ - 130.824, - 26.8217, - 46.5503 + 3.32293, + 0.681272, + 1.18238 ], "min": [ - 48.8649, - 26.8217, - 23.5876 + 1.24117, + 0.681272, + 0.599124 ], "type": 35665 }, "accessor_580": { - "bufferView": "bufferView_4848", - "byteOffset": 85872, + "bufferView": "bufferView_5233", + "byteOffset": 86544, "byteStride": 12, "count": 72, "max": [ @@ -8888,32 +9728,32 @@ "type": 35665 }, "accessor_596": { - "bufferView": "bufferView_4847", - "byteOffset": 17190, + "bufferView": "bufferView_5232", + "byteOffset": 17330, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_598": { - "bufferView": "bufferView_4848", - "byteOffset": 86736, + "bufferView": "bufferView_5233", + "byteOffset": 87408, "byteStride": 12, "count": 48, "max": [ - 97.1849, - 169.926, - 97.1849 + 2.4685, + 4.31611, + 2.4685 ], "min": [ - 20.571, - 165.851, - 20.571 + 0.522503, + 4.21261, + 0.522503 ], "type": 35665 }, "accessor_60": { - "bufferView": "bufferView_4848", - "byteOffset": 83808, + "bufferView": "bufferView_5233", + "byteOffset": 84480, "byteStride": 12, "count": 4, "max": [ @@ -8929,8 +9769,8 @@ "type": 35665 }, "accessor_600": { - "bufferView": "bufferView_4848", - "byteOffset": 87312, + "bufferView": "bufferView_5233", + "byteOffset": 87984, "byteStride": 12, "count": 48, "max": [ @@ -8946,32 +9786,32 @@ "type": 35665 }, "accessor_616": { - "bufferView": "bufferView_4847", - "byteOffset": 17478, + "bufferView": "bufferView_5232", + "byteOffset": 17618, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_618": { - "bufferView": "bufferView_4848", - "byteOffset": 87888, + "bufferView": "bufferView_5233", + "byteOffset": 88560, "byteStride": 12, "count": 48, "max": [ - 117.756, - 26.5453, - 117.756 + 2.991, + 0.674251, + 2.991 ], "min": [ 0, - 26.5453, + 0.674251, 0 ], "type": 35665 }, "accessor_620": { - "bufferView": "bufferView_4848", - "byteOffset": 88464, + "bufferView": "bufferView_5233", + "byteOffset": 89136, "byteStride": 12, "count": 48, "max": [ @@ -8987,32 +9827,32 @@ "type": 35665 }, "accessor_636": { - "bufferView": "bufferView_4847", - "byteOffset": 17766, + "bufferView": "bufferView_5232", + "byteOffset": 17906, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_638": { - "bufferView": "bufferView_4848", - "byteOffset": 89040, + "bufferView": "bufferView_5233", + "byteOffset": 89712, "byteStride": 12, "count": 48, "max": [ - 113.185, - 86.2146, - 113.185 + 2.87491, + 2.18985, + 2.87491 ], "min": [ - 4.57067, - 38.1988, - 4.57067 + 0.116095, + 0.970251, + 0.116095 ], "type": 35665 }, "accessor_640": { - "bufferView": "bufferView_4848", - "byteOffset": 89616, + "bufferView": "bufferView_5233", + "byteOffset": 90288, "byteStride": 12, "count": 48, "max": [ @@ -9028,32 +9868,32 @@ "type": 35665 }, "accessor_656": { - "bufferView": "bufferView_4847", - "byteOffset": 18054, + "bufferView": "bufferView_5232", + "byteOffset": 18194, "byteStride": 0, "count": 1008, "type": 5123 }, "accessor_658": { - "bufferView": "bufferView_4848", - "byteOffset": 90192, + "bufferView": "bufferView_5233", + "byteOffset": 90864, "byteStride": 12, "count": 480, "max": [ - 118.63, - 169.926, - 118.63 + 3.0132, + 4.31611, + 3.0132 ], "min": [ - -0.873878, - 38.1988, - -0.873878 + -0.0221965, + 0.970251, + -0.0221965 ], "type": 35665 }, "accessor_660": { - "bufferView": "bufferView_4848", - "byteOffset": 95952, + "bufferView": "bufferView_5233", + "byteOffset": 96624, "byteStride": 12, "count": 480, "max": [ @@ -9069,32 +9909,32 @@ "type": 35665 }, "accessor_676": { - "bufferView": "bufferView_4847", - "byteOffset": 20070, + "bufferView": "bufferView_5232", + "byteOffset": 20210, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_678": { - "bufferView": "bufferView_4848", - "byteOffset": 101712, + "bufferView": "bufferView_5233", + "byteOffset": 102384, "byteStride": 12, "count": 48, "max": [ - 113.185, - 38.1988, - 113.185 + 2.87491, + 0.970251, + 2.87491 ], "min": [ - 4.57067, - 26.5453, - 4.57067 + 0.116095, + 0.674251, + 0.116095 ], "type": 35665 }, "accessor_680": { - "bufferView": "bufferView_4848", - "byteOffset": 102288, + "bufferView": "bufferView_5233", + "byteOffset": 102960, "byteStride": 12, "count": 48, "max": [ @@ -9110,32 +9950,32 @@ "type": 35665 }, "accessor_696": { - "bufferView": "bufferView_4847", - "byteOffset": 20358, + "bufferView": "bufferView_5232", + "byteOffset": 20498, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_698": { - "bufferView": "bufferView_4848", - "byteOffset": 102864, + "bufferView": "bufferView_5233", + "byteOffset": 103536, "byteStride": 12, "count": 48, "max": [ - 98.4973, - 169.926, - 98.4973 + 2.50183, + 4.31611, + 2.50183 ], "min": [ - 19.2586, - 169.926, - 19.2586 + 0.489169, + 4.31611, + 0.489169 ], "type": 35665 }, "accessor_700": { - "bufferView": "bufferView_4848", - "byteOffset": 103440, + "bufferView": "bufferView_5233", + "byteOffset": 104112, "byteStride": 12, "count": 48, "max": [ @@ -9151,32 +9991,32 @@ "type": 35665 }, "accessor_716": { - "bufferView": "bufferView_4847", - "byteOffset": 20646, + "bufferView": "bufferView_5232", + "byteOffset": 20786, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_718": { - "bufferView": "bufferView_4848", - "byteOffset": 104016, + "bufferView": "bufferView_5233", + "byteOffset": 104688, "byteStride": 12, "count": 48, "max": [ - 97.1849, - 165.851, - 97.1849 + 2.4685, + 4.21261, + 2.4685 ], "min": [ - 20.571, - 52.4823, - 20.571 + 0.522503, + 1.33305, + 0.522503 ], "type": 35665 }, "accessor_720": { - "bufferView": "bufferView_4848", - "byteOffset": 104592, + "bufferView": "bufferView_5233", + "byteOffset": 105264, "byteStride": 12, "count": 48, "max": [ @@ -9192,32 +10032,32 @@ "type": 35665 }, "accessor_736": { - "bufferView": "bufferView_4847", - "byteOffset": 20934, + "bufferView": "bufferView_5232", + "byteOffset": 21074, "byteStride": 0, "count": 66, "type": 5123 }, "accessor_738": { - "bufferView": "bufferView_4848", - "byteOffset": 105168, + "bufferView": "bufferView_5233", + "byteOffset": 105840, "byteStride": 12, "count": 24, "max": [ - 75.1311, - 6.33271, - 75.1311 + 1.90833, + 0.160851, + 1.90833 ], "min": [ - 42.6248, - 6.33271, - 42.6248 + 1.08267, + 0.160851, + 1.08267 ], "type": 35665 }, "accessor_740": { - "bufferView": "bufferView_4848", - "byteOffset": 105456, + "bufferView": "bufferView_5233", + "byteOffset": 106128, "byteStride": 12, "count": 24, "max": [ @@ -9233,39 +10073,39 @@ "type": 35665 }, "accessor_756": { - "bufferView": "bufferView_4847", - "byteOffset": 21066, + "bufferView": "bufferView_5232", + "byteOffset": 21206, "byteStride": 0, "count": 144, "type": 5123 }, "accessor_758": { - "bufferView": "bufferView_4848", - "byteOffset": 105744, + "bufferView": "bufferView_5233", + "byteOffset": 106416, "byteStride": 12, "count": 48, "max": [ - 85.9651, - 52.4823, - 85.9651 + 2.18351, + 1.33305, + 2.18351 ], "min": [ - 31.7908, - 6.33271, - 31.7908 + 0.807488, + 0.160851, + 0.807488 ], "type": 35665 }, "accessor_76": { - "bufferView": "bufferView_4847", - "byteOffset": 22800, + "bufferView": "bufferView_5232", + "byteOffset": 22940, "byteStride": 0, "count": 24, "type": 5123 }, "accessor_760": { - "bufferView": "bufferView_4848", - "byteOffset": 106320, + "bufferView": "bufferView_5233", + "byteOffset": 106992, "byteStride": 12, "count": 48, "max": [ @@ -9281,49 +10121,49 @@ "type": 35665 }, "accessor_776": { - "bufferView": "bufferView_4847", - "byteOffset": 21354, + "bufferView": "bufferView_5232", + "byteOffset": 21494, "byteStride": 0, "count": 156, "type": 5123 }, "accessor_778": { - "bufferView": "bufferView_4848", - "byteOffset": 106896, + "bufferView": "bufferView_5233", + "byteOffset": 107568, "byteStride": 12, "count": 80, "max": [ - 84.1272, - 113.249, - 11.4213 + 2.13683, + 2.87653, + 0.2901 ], "min": [ -0, - 13.2862, - 5.28346 + 0.33747, + 0.1342 ], "type": 35665 }, "accessor_78": { - "bufferView": "bufferView_4848", - "byteOffset": 113928, + "bufferView": "bufferView_5233", + "byteOffset": 114600, "byteStride": 12, "count": 16, "max": [ - 155.941, - 56.8819, - 53.5872 + 3.96089, + 1.4448, + 1.36112 ], "min": [ - 23.7484, - 26.8217, - 16.5506 + 0.603209, + 0.681272, + 0.420386 ], "type": 35665 }, "accessor_780": { - "bufferView": "bufferView_4848", - "byteOffset": 107856, + "bufferView": "bufferView_5233", + "byteOffset": 108528, "byteStride": 12, "count": 80, "max": [ @@ -9339,32 +10179,32 @@ "type": 35665 }, "accessor_796": { - "bufferView": "bufferView_4847", - "byteOffset": 21666, + "bufferView": "bufferView_5232", + "byteOffset": 21806, "byteStride": 0, "count": 546, "type": 5123 }, "accessor_798": { - "bufferView": "bufferView_4848", - "byteOffset": 108816, + "bufferView": "bufferView_5233", + "byteOffset": 109488, "byteStride": 12, "count": 202, "max": [ - 155.059, - 110.057, - 108.24 + 3.93849, + 2.79545, + 2.74928 ], "min": [ - 74.9688, - 16.4785, - -3.05278 + 1.90421, + 0.418553, + -0.0775407 ], "type": 35665 }, "accessor_80": { - "bufferView": "bufferView_4848", - "byteOffset": 114120, + "bufferView": "bufferView_5233", + "byteOffset": 114792, "byteStride": 12, "count": 16, "max": [ @@ -9380,8 +10220,8 @@ "type": 35665 }, "accessor_800": { - "bufferView": "bufferView_4848", - "byteOffset": 111240, + "bufferView": "bufferView_5233", + "byteOffset": 111912, "byteStride": 12, "count": 202, "max": [ @@ -9397,32 +10237,32 @@ "type": 35665 }, "accessor_816": { - "bufferView": "bufferView_4847", - "byteOffset": 22758, + "bufferView": "bufferView_5232", + "byteOffset": 22898, "byteStride": 0, "count": 15, "type": 5123 }, "accessor_818": { - "bufferView": "bufferView_4848", - "byteOffset": 113664, + "bufferView": "bufferView_5233", + "byteOffset": 114336, "byteStride": 12, "count": 7, "max": [ - 152.611, - 91.3843, - 99.9819 + 3.87633, + 2.32116, + 2.53954 ], "min": [ - 141.872, - 35.1511, - 84.3742 + 3.60354, + 0.892839, + 2.1431 ], "type": 35665 }, "accessor_820": { - "bufferView": "bufferView_4848", - "byteOffset": 113748, + "bufferView": "bufferView_5233", + "byteOffset": 114420, "byteStride": 12, "count": 7, "max": [ @@ -9438,32 +10278,32 @@ "type": 35665 }, "accessor_836": { - "bufferView": "bufferView_4847", - "byteOffset": 22788, + "bufferView": "bufferView_5232", + "byteOffset": 22928, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_838": { - "bufferView": "bufferView_4848", - "byteOffset": 113832, + "bufferView": "bufferView_5233", + "byteOffset": 114504, "byteStride": 12, "count": 4, "max": [ - 138.666, - 104.241, - 79.716 + 3.52212, + 2.64772, + 2.02479 ], "min": [ - 84.8631, - 22.2944, - 1.52523 + 2.15552, + 0.566278, + 0.0387408 ], "type": 35665 }, "accessor_840": { - "bufferView": "bufferView_4848", - "byteOffset": 113880, + "bufferView": "bufferView_5233", + "byteOffset": 114552, "byteStride": 12, "count": 4, "max": [ @@ -9479,32 +10319,32 @@ "type": 35665 }, "accessor_856": { - "bufferView": "bufferView_4847", - "byteOffset": 22848, + "bufferView": "bufferView_5232", + "byteOffset": 22988, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_858": { - "bufferView": "bufferView_4848", - "byteOffset": 114312, + "bufferView": "bufferView_5233", + "byteOffset": 114984, "byteStride": 12, "count": 4, "max": [ - 140.934, - 89.9439, - 97.0579 + 3.57972, + 2.28458, + 2.46527 ], "min": [ - 112.637, - 36.5915, - 55.9354 + 2.86099, + 0.929424, + 1.42076 ], "type": 35665 }, "accessor_860": { - "bufferView": "bufferView_4848", - "byteOffset": 114360, + "bufferView": "bufferView_5233", + "byteOffset": 115032, "byteStride": 12, "count": 4, "max": [ @@ -9520,32 +10360,32 @@ "type": 35665 }, "accessor_876": { - "bufferView": "bufferView_4847", - "byteOffset": 22860, + "bufferView": "bufferView_5232", + "byteOffset": 23000, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_878": { - "bufferView": "bufferView_4848", - "byteOffset": 114408, + "bufferView": "bufferView_5233", + "byteOffset": 115080, "byteStride": 12, "count": 4, "max": [ - 107.787, - 96.3254, - 48.8865 + 2.73779, + 2.44667, + 1.24172 ], "min": [ - 84.341, - 30.21, - 14.813 + 2.14226, + 0.767334, + 0.376249 ], "type": 35665 }, "accessor_880": { - "bufferView": "bufferView_4848", - "byteOffset": 114456, + "bufferView": "bufferView_5233", + "byteOffset": 115128, "byteStride": 12, "count": 4, "max": [ @@ -9561,21 +10401,21 @@ "type": 35665 }, "accessor_896": { - "bufferView": "bufferView_4847", - "byteOffset": 22872, + "bufferView": "bufferView_5232", + "byteOffset": 23012, "byteStride": 0, "count": 654, "type": 5123 }, "accessor_898": { - "bufferView": "bufferView_4848", - "byteOffset": 114504, + "bufferView": "bufferView_5233", + "byteOffset": 115176, "byteStride": 12, "count": 328, "max": [ - 119.894, - 440.781, - 88.6204 + 3.0453, + 11.1958, + 2.25096 ], "min": [ 0, @@ -9585,8 +10425,8 @@ "type": 35665 }, "accessor_900": { - "bufferView": "bufferView_4848", - "byteOffset": 118440, + "bufferView": "bufferView_5233", + "byteOffset": 119112, "byteStride": 12, "count": 328, "max": [ @@ -9602,21 +10442,21 @@ "type": 35665 }, "accessor_916": { - "bufferView": "bufferView_4847", - "byteOffset": 24228, + "bufferView": "bufferView_5232", + "byteOffset": 24368, "byteStride": 0, "count": 771, "type": 5123 }, "accessor_918": { - "bufferView": "bufferView_4848", - "byteOffset": 122760, + "bufferView": "bufferView_5233", + "byteOffset": 123432, "byteStride": 12, "count": 259, "max": [ - 119.894, - 263.946, - 88.6204 + 3.0453, + 6.70423, + 2.25096 ], "min": [ 0, @@ -9626,8 +10466,8 @@ "type": 35665 }, "accessor_920": { - "bufferView": "bufferView_4848", - "byteOffset": 125868, + "bufferView": "bufferView_5233", + "byteOffset": 126540, "byteStride": 12, "count": 259, "max": [ @@ -9643,32 +10483,32 @@ "type": 35665 }, "accessor_936": { - "bufferView": "bufferView_4847", - "byteOffset": 25770, + "bufferView": "bufferView_5232", + "byteOffset": 25910, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_938": { - "bufferView": "bufferView_4848", - "byteOffset": 128976, + "bufferView": "bufferView_5233", + "byteOffset": 129648, "byteStride": 12, "count": 4, "max": [ - 93.8884, - 155.242, - 83.9995 + 2.38476, + 3.94313, + 2.13359 ], "min": [ - 70.7752, - 155.242, - 9.53144 + 1.79769, + 3.94313, + 0.242098 ], "type": 35665 }, "accessor_940": { - "bufferView": "bufferView_4848", - "byteOffset": 129024, + "bufferView": "bufferView_5233", + "byteOffset": 129696, "byteStride": 12, "count": 4, "max": [ @@ -9684,39 +10524,39 @@ "type": 35665 }, "accessor_956": { - "bufferView": "bufferView_4847", - "byteOffset": 25782, + "bufferView": "bufferView_5232", + "byteOffset": 25922, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_958": { - "bufferView": "bufferView_4848", - "byteOffset": 129072, + "bufferView": "bufferView_5233", + "byteOffset": 129744, "byteStride": 12, "count": 4, "max": [ - 93.8884, - 155.242, - 9.53144 + 2.38476, + 3.94313, + 0.242098 ], "min": [ - 70.7752, + 1.79769, 0, - 9.53144 + 0.242098 ], "type": 35665 }, "accessor_96": { - "bufferView": "bufferView_4847", - "byteOffset": 25842, + "bufferView": "bufferView_5232", + "byteOffset": 25982, "byteStride": 0, "count": 114, "type": 5123 }, "accessor_960": { - "bufferView": "bufferView_4848", - "byteOffset": 129120, + "bufferView": "bufferView_5233", + "byteOffset": 129792, "byteStride": 12, "count": 4, "max": [ @@ -9732,38 +10572,38 @@ "type": 35665 }, "accessor_976": { - "bufferView": "bufferView_4847", - "byteOffset": 25794, + "bufferView": "bufferView_5232", + "byteOffset": 25934, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_978": { - "bufferView": "bufferView_4848", - "byteOffset": 129168, + "bufferView": "bufferView_5233", + "byteOffset": 129840, "byteStride": 12, "count": 4, "max": [ - 49.1186, - 155.242, - 83.9995 + 1.24761, + 3.94313, + 2.13359 ], "min": [ - 26.0055, - 155.242, - 9.53144 + 0.660539, + 3.94313, + 0.242098 ], "type": 35665 }, "accessor_98": { - "bufferView": "bufferView_4848", - "byteOffset": 129504, + "bufferView": "bufferView_5233", + "byteOffset": 130176, "byteStride": 12, "count": 64, "max": [ - 179.689, - 56.8819, - 70.1378 + 4.5641, + 1.4448, + 1.7815 ], "min": [ 0, @@ -9773,8 +10613,8 @@ "type": 35665 }, "accessor_980": { - "bufferView": "bufferView_4848", - "byteOffset": 129216, + "bufferView": "bufferView_5233", + "byteOffset": 129888, "byteStride": 12, "count": 4, "max": [ @@ -9790,56 +10630,56 @@ "type": 35665 }, "accessor_996": { - "bufferView": "bufferView_4847", - "byteOffset": 25806, + "bufferView": "bufferView_5232", + "byteOffset": 25946, "byteStride": 0, "count": 6, "type": 5123 }, "accessor_998": { - "bufferView": "bufferView_4848", - "byteOffset": 129264, + "bufferView": "bufferView_5233", + "byteOffset": 129936, "byteStride": 12, "count": 4, "max": [ - 49.1186, - 155.242, - 9.53144 + 1.24761, + 3.94313, + 0.242098 ], "min": [ - 26.0055, + 0.660539, 0, - 9.53144 + 0.242098 ], "type": 35665 } }, "animations": {}, "asset": { - "generator": "collada2gltf@53bdd01c320c249c36ae9fbc439ae2cdee39acc8", + "generator": "collada2gltf@506d909430e3f033e2a84c31b1d41270f7c6eb67", "premultipliedAlpha": true, "profile": "WebGL 1.0.2", - "version": 0.6 + "version": 0.7 }, "bufferViews": { - "bufferView_4847": { + "bufferView_5232": { "buffer": "SuperMurdoch", - "byteLength": 81816, + "byteLength": 82140, "byteOffset": 0, "target": 34963 }, - "bufferView_4848": { + "bufferView_5233": { "buffer": "SuperMurdoch", - "byteLength": 390864, - "byteOffset": 81816, + "byteLength": 392112, + "byteOffset": 82140, "target": 34962 } }, "buffers": { "SuperMurdoch": { - "byteLength": 472680, - "path": "SuperMurdoch.bin", - "type": "arraybuffer" + "byteLength": 474252, + "type": "arraybuffer", + "uri": "SuperMurdoch.bin" } }, "materials": { @@ -10012,6 +10852,13 @@ }, "name": "_0134_DimGray_" }, + "ID360": { + "instanceTechnique": { + "technique": "technique3", + "values": {} + }, + "name": "edge_color353535255" + }, "ID5": { "instanceTechnique": { "technique": "technique2", @@ -10118,10 +10965,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3062", - "POSITION": "accessor_3060" + "NORMAL": "accessor_3194", + "POSITION": "accessor_3192" }, - "indices": "accessor_3058", + "indices": "accessor_3190", "material": "ID1005", "primitive": 4 } @@ -10132,10 +10979,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3082", - "POSITION": "accessor_3080" + "NORMAL": "accessor_3214", + "POSITION": "accessor_3212" }, - "indices": "accessor_3078", + "indices": "accessor_3210", "material": "ID87", "primitive": 4 } @@ -10146,10 +10993,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3102", - "POSITION": "accessor_3100" + "NORMAL": "accessor_3234", + "POSITION": "accessor_3232" }, - "indices": "accessor_3098", + "indices": "accessor_3230", "material": "ID87", "primitive": 4 } @@ -10160,10 +11007,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3122", - "POSITION": "accessor_3120" + "NORMAL": "accessor_3254", + "POSITION": "accessor_3252" }, - "indices": "accessor_3118", + "indices": "accessor_3250", "material": "ID304", "primitive": 4 } @@ -10174,10 +11021,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3142", - "POSITION": "accessor_3140" + "NORMAL": "accessor_3274", + "POSITION": "accessor_3272" }, - "indices": "accessor_3138", + "indices": "accessor_3270", "material": "ID87", "primitive": 4 } @@ -10188,10 +11035,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3162", - "POSITION": "accessor_3160" + "NORMAL": "accessor_3294", + "POSITION": "accessor_3292" }, - "indices": "accessor_3158", + "indices": "accessor_3290", "material": "ID164", "primitive": 4 } @@ -10202,10 +11049,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3182", - "POSITION": "accessor_3180" + "NORMAL": "accessor_3314", + "POSITION": "accessor_3312" }, - "indices": "accessor_3178", + "indices": "accessor_3310", "material": "ID87", "primitive": 4 } @@ -10216,10 +11063,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3202", - "POSITION": "accessor_3200" + "NORMAL": "accessor_3334", + "POSITION": "accessor_3332" }, - "indices": "accessor_3198", + "indices": "accessor_3330", "material": "ID318", "primitive": 4 } @@ -10230,10 +11077,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3222", - "POSITION": "accessor_3220" + "NORMAL": "accessor_3354", + "POSITION": "accessor_3352" }, - "indices": "accessor_3218", + "indices": "accessor_3350", "material": "ID528", "primitive": 4 } @@ -10244,10 +11091,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3242", - "POSITION": "accessor_3240" + "NORMAL": "accessor_3374", + "POSITION": "accessor_3372" }, - "indices": "accessor_3238", + "indices": "accessor_3370", "material": "ID87", "primitive": 4 } @@ -10258,10 +11105,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3262", - "POSITION": "accessor_3260" + "NORMAL": "accessor_3394", + "POSITION": "accessor_3392" }, - "indices": "accessor_3258", + "indices": "accessor_3390", "material": "ID87", "primitive": 4 } @@ -10286,10 +11133,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3282", - "POSITION": "accessor_3280" + "NORMAL": "accessor_3414", + "POSITION": "accessor_3412" }, - "indices": "accessor_3278", + "indices": "accessor_3410", "material": "ID87", "primitive": 4 } @@ -10300,10 +11147,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3302", - "POSITION": "accessor_3300" + "NORMAL": "accessor_3434", + "POSITION": "accessor_3432" }, - "indices": "accessor_3298", + "indices": "accessor_3430", "material": "ID318", "primitive": 4 } @@ -10314,10 +11161,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3322", - "POSITION": "accessor_3320" + "NORMAL": "accessor_3454", + "POSITION": "accessor_3452" }, - "indices": "accessor_3318", + "indices": "accessor_3450", "material": "ID318", "primitive": 4 } @@ -10328,10 +11175,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3342", - "POSITION": "accessor_3340" + "NORMAL": "accessor_3474", + "POSITION": "accessor_3472" }, - "indices": "accessor_3338", + "indices": "accessor_3470", "material": "ID318", "primitive": 4 } @@ -10342,10 +11189,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3362", - "POSITION": "accessor_3360" + "NORMAL": "accessor_3494", + "POSITION": "accessor_3492" }, - "indices": "accessor_3358", + "indices": "accessor_3490", "material": "ID528", "primitive": 4 } @@ -10370,10 +11217,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3382", - "POSITION": "accessor_3380" + "NORMAL": "accessor_3514", + "POSITION": "accessor_3512" }, - "indices": "accessor_3378", + "indices": "accessor_3510", "material": "ID13", "primitive": 4 } @@ -10384,10 +11231,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3402", - "POSITION": "accessor_3400" + "NORMAL": "accessor_3534", + "POSITION": "accessor_3532" }, - "indices": "accessor_3398", + "indices": "accessor_3530", "material": "ID87", "primitive": 4 } @@ -10398,10 +11245,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3422", - "POSITION": "accessor_3420" + "NORMAL": "accessor_3554", + "POSITION": "accessor_3552" }, - "indices": "accessor_3418", + "indices": "accessor_3550", "material": "ID87", "primitive": 4 } @@ -10412,10 +11259,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3442", - "POSITION": "accessor_3440" + "NORMAL": "accessor_3574", + "POSITION": "accessor_3572" }, - "indices": "accessor_3438", + "indices": "accessor_3570", "material": "ID13", "primitive": 4 } @@ -10426,10 +11273,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3462", - "POSITION": "accessor_3460" + "NORMAL": "accessor_3594", + "POSITION": "accessor_3592" }, - "indices": "accessor_3458", + "indices": "accessor_3590", "material": "ID304", "primitive": 4 } @@ -10454,10 +11301,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3482", - "POSITION": "accessor_3480" + "NORMAL": "accessor_3614", + "POSITION": "accessor_3612" }, - "indices": "accessor_3478", + "indices": "accessor_3610", "material": "ID164", "primitive": 4 } @@ -10468,10 +11315,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3502", - "POSITION": "accessor_3500" + "NORMAL": "accessor_3634", + "POSITION": "accessor_3632" }, - "indices": "accessor_3498", + "indices": "accessor_3630", "material": "ID304", "primitive": 4 } @@ -10482,10 +11329,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3522", - "POSITION": "accessor_3520" + "NORMAL": "accessor_3654", + "POSITION": "accessor_3652" }, - "indices": "accessor_3518", + "indices": "accessor_3650", "material": "ID338", "primitive": 4 } @@ -10496,10 +11343,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3542", - "POSITION": "accessor_3540" + "NORMAL": "accessor_3674", + "POSITION": "accessor_3672" }, - "indices": "accessor_3538", + "indices": "accessor_3670", "material": "ID304", "primitive": 4 } @@ -10510,10 +11357,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3562", - "POSITION": "accessor_3560" + "NORMAL": "accessor_3694", + "POSITION": "accessor_3692" }, - "indices": "accessor_3558", + "indices": "accessor_3690", "material": "ID528", "primitive": 4 } @@ -10524,10 +11371,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3582", - "POSITION": "accessor_3580" + "NORMAL": "accessor_3714", + "POSITION": "accessor_3712" }, - "indices": "accessor_3578", + "indices": "accessor_3710", "material": "ID304", "primitive": 4 } @@ -10538,10 +11385,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3602", - "POSITION": "accessor_3600" + "NORMAL": "accessor_3734", + "POSITION": "accessor_3732" }, - "indices": "accessor_3598", + "indices": "accessor_3730", "material": "ID318", "primitive": 4 } @@ -10552,10 +11399,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3622", - "POSITION": "accessor_3620" + "NORMAL": "accessor_3754", + "POSITION": "accessor_3752" }, - "indices": "accessor_3618", + "indices": "accessor_3750", "material": "ID528", "primitive": 4 } @@ -10566,10 +11413,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3642", - "POSITION": "accessor_3640" + "NORMAL": "accessor_3774", + "POSITION": "accessor_3772" }, - "indices": "accessor_3638", + "indices": "accessor_3770", "material": "ID318", "primitive": 4 } @@ -10580,10 +11427,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3662", - "POSITION": "accessor_3660" + "NORMAL": "accessor_3794", + "POSITION": "accessor_3792" }, - "indices": "accessor_3658", + "indices": "accessor_3790", "material": "ID142", "primitive": 4 } @@ -10608,10 +11455,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3682", - "POSITION": "accessor_3680" + "NORMAL": "accessor_3814", + "POSITION": "accessor_3812" }, - "indices": "accessor_3678", + "indices": "accessor_3810", "material": "ID87", "primitive": 4 } @@ -10622,10 +11469,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3702", - "POSITION": "accessor_3700" + "NORMAL": "accessor_3834", + "POSITION": "accessor_3832" }, - "indices": "accessor_3698", + "indices": "accessor_3830", "material": "ID87", "primitive": 4 } @@ -10636,10 +11483,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3722", - "POSITION": "accessor_3720" + "NORMAL": "accessor_3854", + "POSITION": "accessor_3852" }, - "indices": "accessor_3718", + "indices": "accessor_3850", "material": "ID318", "primitive": 4 } @@ -10650,10 +11497,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3742", - "POSITION": "accessor_3740" + "NORMAL": "accessor_3874", + "POSITION": "accessor_3872" }, - "indices": "accessor_3738", + "indices": "accessor_3870", "material": "ID707", "primitive": 4 } @@ -10664,10 +11511,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3762", - "POSITION": "accessor_3760" + "NORMAL": "accessor_3894", + "POSITION": "accessor_3892" }, - "indices": "accessor_3758", + "indices": "accessor_3890", "material": "ID87", "primitive": 4 } @@ -10678,10 +11525,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3782", - "POSITION": "accessor_3780" + "NORMAL": "accessor_3914", + "POSITION": "accessor_3912" }, - "indices": "accessor_3778", + "indices": "accessor_3910", "material": "ID87", "primitive": 4 } @@ -10692,10 +11539,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3802", - "POSITION": "accessor_3800" + "NORMAL": "accessor_3934", + "POSITION": "accessor_3932" }, - "indices": "accessor_3798", + "indices": "accessor_3930", "material": "ID318", "primitive": 4 } @@ -10706,10 +11553,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3822", - "POSITION": "accessor_3820" + "NORMAL": "accessor_3954", + "POSITION": "accessor_3952" }, - "indices": "accessor_3818", + "indices": "accessor_3950", "material": "ID318", "primitive": 4 } @@ -10720,10 +11567,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3842", - "POSITION": "accessor_3840" + "NORMAL": "accessor_3974", + "POSITION": "accessor_3972" }, - "indices": "accessor_3838", + "indices": "accessor_3970", "material": "ID87", "primitive": 4 } @@ -10734,10 +11581,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3862", - "POSITION": "accessor_3860" + "NORMAL": "accessor_3994", + "POSITION": "accessor_3992" }, - "indices": "accessor_3858", + "indices": "accessor_3990", "material": "ID87", "primitive": 4 } @@ -10748,10 +11595,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3882", - "POSITION": "accessor_3880" + "NORMAL": "accessor_4014", + "POSITION": "accessor_4012" }, - "indices": "accessor_3878", + "indices": "accessor_4010", "material": "ID87", "primitive": 4 } @@ -10762,10 +11609,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3902", - "POSITION": "accessor_3900" + "NORMAL": "accessor_4034", + "POSITION": "accessor_4032" }, - "indices": "accessor_3898", + "indices": "accessor_4030", "material": "ID87", "primitive": 4 } @@ -10790,10 +11637,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3922", - "POSITION": "accessor_3920" + "NORMAL": "accessor_4054", + "POSITION": "accessor_4052" }, - "indices": "accessor_3918", + "indices": "accessor_4050", "material": "ID87", "primitive": 4 } @@ -10804,10 +11651,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3942", - "POSITION": "accessor_3940" + "NORMAL": "accessor_4074", + "POSITION": "accessor_4072" }, - "indices": "accessor_3938", + "indices": "accessor_4070", "material": "ID318", "primitive": 4 } @@ -10818,10 +11665,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3962", - "POSITION": "accessor_3960" + "NORMAL": "accessor_4094", + "POSITION": "accessor_4092" }, - "indices": "accessor_3958", + "indices": "accessor_4090", "material": "ID318", "primitive": 4 } @@ -10832,10 +11679,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3982", - "POSITION": "accessor_3980" + "NORMAL": "accessor_4114", + "POSITION": "accessor_4112" }, - "indices": "accessor_3978", + "indices": "accessor_4110", "material": "ID142", "primitive": 4 } @@ -10846,10 +11693,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4002", - "POSITION": "accessor_4000" + "NORMAL": "accessor_4134", + "POSITION": "accessor_4132" }, - "indices": "accessor_3998", + "indices": "accessor_4130", "material": "ID318", "primitive": 4 } @@ -10860,10 +11707,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4022", - "POSITION": "accessor_4020" + "NORMAL": "accessor_4154", + "POSITION": "accessor_4152" }, - "indices": "accessor_4018", + "indices": "accessor_4150", "material": "ID338", "primitive": 4 } @@ -10874,10 +11721,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4042", - "POSITION": "accessor_4040" + "NORMAL": "accessor_4174", + "POSITION": "accessor_4172" }, - "indices": "accessor_4038", + "indices": "accessor_4170", "material": "ID142", "primitive": 4 } @@ -10888,10 +11735,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4062", - "POSITION": "accessor_4060" + "NORMAL": "accessor_4194", + "POSITION": "accessor_4192" }, - "indices": "accessor_4058", + "indices": "accessor_4190", "material": "ID338", "primitive": 4 } @@ -10902,10 +11749,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4082", - "POSITION": "accessor_4080" + "NORMAL": "accessor_4214", + "POSITION": "accessor_4212" }, - "indices": "accessor_4078", + "indices": "accessor_4210", "material": "ID142", "primitive": 4 } @@ -10916,10 +11763,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4102", - "POSITION": "accessor_4100" + "NORMAL": "accessor_4234", + "POSITION": "accessor_4232" }, - "indices": "accessor_4098", + "indices": "accessor_4230", "material": "ID142", "primitive": 4 } @@ -10944,10 +11791,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4122", - "POSITION": "accessor_4120" + "NORMAL": "accessor_4254", + "POSITION": "accessor_4252" }, - "indices": "accessor_4118", + "indices": "accessor_4250", "material": "ID338", "primitive": 4 } @@ -10958,10 +11805,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4142", - "POSITION": "accessor_4140" + "NORMAL": "accessor_4274", + "POSITION": "accessor_4272" }, - "indices": "accessor_4138", + "indices": "accessor_4270", "material": "ID164", "primitive": 4 } @@ -10972,10 +11819,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4162", - "POSITION": "accessor_4160" + "NORMAL": "accessor_4294", + "POSITION": "accessor_4292" }, - "indices": "accessor_4158", + "indices": "accessor_4290", "material": "ID164", "primitive": 4 } @@ -10986,10 +11833,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4182", - "POSITION": "accessor_4180" + "NORMAL": "accessor_4314", + "POSITION": "accessor_4312" }, - "indices": "accessor_4178", + "indices": "accessor_4310", "material": "ID304", "primitive": 4 } @@ -11000,10 +11847,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4202", - "POSITION": "accessor_4200" + "NORMAL": "accessor_4334", + "POSITION": "accessor_4332" }, - "indices": "accessor_4198", + "indices": "accessor_4330", "material": "ID164", "primitive": 4 } @@ -11014,10 +11861,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4222", - "POSITION": "accessor_4220" + "NORMAL": "accessor_4354", + "POSITION": "accessor_4352" }, - "indices": "accessor_4218", + "indices": "accessor_4350", "material": "ID87", "primitive": 4 } @@ -11028,10 +11875,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4242", - "POSITION": "accessor_4240" + "NORMAL": "accessor_4374", + "POSITION": "accessor_4372" }, - "indices": "accessor_4238", + "indices": "accessor_4370", "material": "ID87", "primitive": 4 } @@ -11042,10 +11889,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4262", - "POSITION": "accessor_4260" + "NORMAL": "accessor_4394", + "POSITION": "accessor_4392" }, - "indices": "accessor_4258", + "indices": "accessor_4390", "material": "ID304", "primitive": 4 } @@ -11056,10 +11903,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4282", - "POSITION": "accessor_4280" + "NORMAL": "accessor_4414", + "POSITION": "accessor_4412" }, - "indices": "accessor_4278", + "indices": "accessor_4410", "material": "ID87", "primitive": 4 } @@ -11070,10 +11917,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4302", - "POSITION": "accessor_4300" + "NORMAL": "accessor_4434", + "POSITION": "accessor_4432" }, - "indices": "accessor_4298", + "indices": "accessor_4430", "material": "ID304", "primitive": 4 } @@ -11084,10 +11931,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4322", - "POSITION": "accessor_4320" + "NORMAL": "accessor_4454", + "POSITION": "accessor_4452" }, - "indices": "accessor_4318", + "indices": "accessor_4450", "material": "ID304", "primitive": 4 } @@ -11098,10 +11945,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4342", - "POSITION": "accessor_4340" + "NORMAL": "accessor_4474", + "POSITION": "accessor_4472" }, - "indices": "accessor_4338", + "indices": "accessor_4470", "material": "ID5", "primitive": 4 } @@ -11112,10 +11959,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4362", - "POSITION": "accessor_4360" + "NORMAL": "accessor_4494", + "POSITION": "accessor_4492" }, - "indices": "accessor_4358", + "indices": "accessor_4490", "material": "ID338", "primitive": 4 } @@ -11140,10 +11987,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4382", - "POSITION": "accessor_4380" + "NORMAL": "accessor_4514", + "POSITION": "accessor_4512" }, - "indices": "accessor_4378", + "indices": "accessor_4510", "material": "ID142", "primitive": 4 } @@ -11154,10 +12001,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4402", - "POSITION": "accessor_4400" + "NORMAL": "accessor_4534", + "POSITION": "accessor_4532" }, - "indices": "accessor_4398", + "indices": "accessor_4530", "material": "ID997", "primitive": 4 } @@ -11168,10 +12015,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4422", - "POSITION": "accessor_4420" + "NORMAL": "accessor_4554", + "POSITION": "accessor_4552" }, - "indices": "accessor_4418", + "indices": "accessor_4550", "material": "ID1005", "primitive": 4 } @@ -11182,10 +12029,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4442", - "POSITION": "accessor_4440" + "NORMAL": "accessor_4574", + "POSITION": "accessor_4572" }, - "indices": "accessor_4438", + "indices": "accessor_4570", "material": "ID346", "primitive": 4 } @@ -11196,10 +12043,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4462", - "POSITION": "accessor_4460" + "NORMAL": "accessor_4594", + "POSITION": "accessor_4592" }, - "indices": "accessor_4458", + "indices": "accessor_4590", "material": "ID87", "primitive": 4 } @@ -11210,10 +12057,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4482", - "POSITION": "accessor_4480" + "NORMAL": "accessor_4614", + "POSITION": "accessor_4612" }, - "indices": "accessor_4478", + "indices": "accessor_4610", "material": "ID338", "primitive": 4 } @@ -11224,10 +12071,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4502", - "POSITION": "accessor_4500" + "NORMAL": "accessor_4634", + "POSITION": "accessor_4632" }, - "indices": "accessor_4498", + "indices": "accessor_4630", "material": "ID142", "primitive": 4 } @@ -11238,10 +12085,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4522", - "POSITION": "accessor_4520" + "NORMAL": "accessor_4654", + "POSITION": "accessor_4652" }, - "indices": "accessor_4518", + "indices": "accessor_4650", "material": "ID591", "primitive": 4 } @@ -11252,10 +12099,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4542", - "POSITION": "accessor_4540" + "NORMAL": "accessor_4674", + "POSITION": "accessor_4672" }, - "indices": "accessor_4538", + "indices": "accessor_4670", "material": "ID528", "primitive": 4 } @@ -11266,10 +12113,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4562", - "POSITION": "accessor_4560" + "NORMAL": "accessor_4694", + "POSITION": "accessor_4692" }, - "indices": "accessor_4558", + "indices": "accessor_4690", "material": "ID338", "primitive": 4 } @@ -11280,10 +12127,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4582", - "POSITION": "accessor_4580" + "NORMAL": "accessor_4714", + "POSITION": "accessor_4712" }, - "indices": "accessor_4578", + "indices": "accessor_4710", "material": "ID87", "primitive": 4 } @@ -11294,10 +12141,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4602", - "POSITION": "accessor_4600" + "NORMAL": "accessor_4734", + "POSITION": "accessor_4732" }, - "indices": "accessor_4598", + "indices": "accessor_4730", "material": "ID164", "primitive": 4 } @@ -11308,180 +12155,453 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_4622", - "POSITION": "accessor_4620" + "NORMAL": "accessor_4754", + "POSITION": "accessor_4752" + }, + "indices": "accessor_4750", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1479": { + "name": "ID1479", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4774", + "POSITION": "accessor_4772" + }, + "indices": "accessor_4770", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID148": { + "name": "ID148", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_440", + "POSITION": "accessor_438" + }, + "indices": "accessor_436", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1485": { + "name": "ID1485", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4794", + "POSITION": "accessor_4792" + }, + "indices": "accessor_4790", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1491": { + "name": "ID1491", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4814", + "POSITION": "accessor_4812" + }, + "indices": "accessor_4810", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1497": { + "name": "ID1497", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4834", + "POSITION": "accessor_4832" + }, + "indices": "accessor_4830", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1503": { + "name": "ID1503", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4854", + "POSITION": "accessor_4852" + }, + "indices": "accessor_4850", + "material": "ID304", + "primitive": 4 + } + ] + }, + "ID1509": { + "name": "ID1509", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4874", + "POSITION": "accessor_4872" + }, + "indices": "accessor_4870", + "material": "ID304", + "primitive": 4 + } + ] + }, + "ID1515": { + "name": "ID1515", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4894", + "POSITION": "accessor_4892" + }, + "indices": "accessor_4890", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1521": { + "name": "ID1521", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4914", + "POSITION": "accessor_4912" + }, + "indices": "accessor_4910", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1527": { + "name": "ID1527", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4934", + "POSITION": "accessor_4932" + }, + "indices": "accessor_4930", + "material": "ID87", + "primitive": 4 + } + ] + }, + "ID1533": { + "name": "ID1533", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4954", + "POSITION": "accessor_4952" }, - "indices": "accessor_4618", + "indices": "accessor_4950", "material": "ID87", "primitive": 4 } ] }, - "ID1479": { - "name": "ID1479", + "ID1539": { + "name": "ID1539", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4966" + }, + "indices": "accessor_4964", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID154": { + "name": "ID154", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_460", + "POSITION": "accessor_458" + }, + "indices": "accessor_456", + "material": "ID156", + "primitive": 4 + } + ] + }, + "ID1543": { + "name": "ID1543", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4978" + }, + "indices": "accessor_4976", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1547": { + "name": "ID1547", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4990" + }, + "indices": "accessor_4988", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1551": { + "name": "ID1551", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5002" + }, + "indices": "accessor_5000", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1555": { + "name": "ID1555", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5014" + }, + "indices": "accessor_5012", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1559": { + "name": "ID1559", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5026" + }, + "indices": "accessor_5024", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1563": { + "name": "ID1563", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5038" + }, + "indices": "accessor_5036", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1567": { + "name": "ID1567", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5050" + }, + "indices": "accessor_5048", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1571": { + "name": "ID1571", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5062" + }, + "indices": "accessor_5060", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1575": { + "name": "ID1575", "primitives": [ { "attributes": { - "NORMAL": "accessor_4642", - "POSITION": "accessor_4640" + "POSITION": "accessor_5074" }, - "indices": "accessor_4638", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5072", + "material": "ID360", + "primitive": 1 } ] }, - "ID148": { - "name": "ID148", + "ID1579": { + "name": "ID1579", "primitives": [ { "attributes": { - "NORMAL": "accessor_440", - "POSITION": "accessor_438" + "POSITION": "accessor_5086" }, - "indices": "accessor_436", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5084", + "material": "ID360", + "primitive": 1 } ] }, - "ID1485": { - "name": "ID1485", + "ID1583": { + "name": "ID1583", "primitives": [ { "attributes": { - "NORMAL": "accessor_4662", - "POSITION": "accessor_4660" + "POSITION": "accessor_5098" }, - "indices": "accessor_4658", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5096", + "material": "ID360", + "primitive": 1 } ] }, - "ID1491": { - "name": "ID1491", + "ID1587": { + "name": "ID1587", "primitives": [ { "attributes": { - "NORMAL": "accessor_4682", - "POSITION": "accessor_4680" + "POSITION": "accessor_5110" }, - "indices": "accessor_4678", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5108", + "material": "ID360", + "primitive": 1 } ] }, - "ID1497": { - "name": "ID1497", + "ID1591": { + "name": "ID1591", "primitives": [ { "attributes": { - "NORMAL": "accessor_4702", - "POSITION": "accessor_4700" + "POSITION": "accessor_5122" }, - "indices": "accessor_4698", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5120", + "material": "ID360", + "primitive": 1 } ] }, - "ID1503": { - "name": "ID1503", + "ID1595": { + "name": "ID1595", "primitives": [ { "attributes": { - "NORMAL": "accessor_4722", - "POSITION": "accessor_4720" + "POSITION": "accessor_5134" }, - "indices": "accessor_4718", - "material": "ID304", - "primitive": 4 + "indices": "accessor_5132", + "material": "ID360", + "primitive": 1 } ] }, - "ID1509": { - "name": "ID1509", + "ID1599": { + "name": "ID1599", "primitives": [ { "attributes": { - "NORMAL": "accessor_4742", - "POSITION": "accessor_4740" + "POSITION": "accessor_5146" }, - "indices": "accessor_4738", - "material": "ID304", - "primitive": 4 + "indices": "accessor_5144", + "material": "ID360", + "primitive": 1 } ] }, - "ID1515": { - "name": "ID1515", + "ID1603": { + "name": "ID1603", "primitives": [ { "attributes": { - "NORMAL": "accessor_4762", - "POSITION": "accessor_4760" + "POSITION": "accessor_5158" }, - "indices": "accessor_4758", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5156", + "material": "ID360", + "primitive": 1 } ] }, - "ID1521": { - "name": "ID1521", + "ID1607": { + "name": "ID1607", "primitives": [ { "attributes": { - "NORMAL": "accessor_4782", - "POSITION": "accessor_4780" + "POSITION": "accessor_5170" }, - "indices": "accessor_4778", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5168", + "material": "ID360", + "primitive": 1 } ] }, - "ID1527": { - "name": "ID1527", + "ID1611": { + "name": "ID1611", "primitives": [ { "attributes": { - "NORMAL": "accessor_4802", - "POSITION": "accessor_4800" + "POSITION": "accessor_5182" }, - "indices": "accessor_4798", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5180", + "material": "ID360", + "primitive": 1 } ] }, - "ID1533": { - "name": "ID1533", + "ID1615": { + "name": "ID1615", "primitives": [ { "attributes": { - "NORMAL": "accessor_4822", - "POSITION": "accessor_4820" + "POSITION": "accessor_5194" }, - "indices": "accessor_4818", - "material": "ID87", - "primitive": 4 + "indices": "accessor_5192", + "material": "ID360", + "primitive": 1 } ] }, - "ID154": { - "name": "ID154", + "ID1619": { + "name": "ID1619", "primitives": [ { "attributes": { - "NORMAL": "accessor_460", - "POSITION": "accessor_458" + "POSITION": "accessor_5206" }, - "indices": "accessor_456", - "material": "ID156", - "primitive": 4 + "indices": "accessor_5204", + "material": "ID360", + "primitive": 1 } ] }, @@ -11499,6 +12619,32 @@ } ] }, + "ID1623": { + "name": "ID1623", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5218" + }, + "indices": "accessor_5216", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID1627": { + "name": "ID1627", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5230" + }, + "indices": "accessor_5228", + "material": "ID360", + "primitive": 1 + } + ] + }, "ID170": { "name": "ID170", "primitives": [ @@ -11961,15 +13107,93 @@ } ] }, - "ID386": { - "name": "ID386", + "ID358": { + "name": "ID358", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1072" + }, + "indices": "accessor_1070", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID364": { + "name": "ID364", "primitives": [ { "attributes": { - "NORMAL": "accessor_1086", "POSITION": "accessor_1084" }, "indices": "accessor_1082", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID368": { + "name": "ID368", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1096" + }, + "indices": "accessor_1094", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID372": { + "name": "ID372", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1108" + }, + "indices": "accessor_1106", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID376": { + "name": "ID376", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1120" + }, + "indices": "accessor_1118", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID380": { + "name": "ID380", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1132" + }, + "indices": "accessor_1130", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID386": { + "name": "ID386", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1152", + "POSITION": "accessor_1150" + }, + "indices": "accessor_1148", "material": "ID87", "primitive": 4 } @@ -11980,10 +13204,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1106", - "POSITION": "accessor_1104" + "NORMAL": "accessor_1172", + "POSITION": "accessor_1170" }, - "indices": "accessor_1102", + "indices": "accessor_1168", "material": "ID87", "primitive": 4 } @@ -11994,10 +13218,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1126", - "POSITION": "accessor_1124" + "NORMAL": "accessor_1192", + "POSITION": "accessor_1190" }, - "indices": "accessor_1122", + "indices": "accessor_1188", "material": "ID87", "primitive": 4 } @@ -12022,10 +13246,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1146", - "POSITION": "accessor_1144" + "NORMAL": "accessor_1212", + "POSITION": "accessor_1210" }, - "indices": "accessor_1142", + "indices": "accessor_1208", "material": "ID87", "primitive": 4 } @@ -12036,10 +13260,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1166", - "POSITION": "accessor_1164" + "NORMAL": "accessor_1232", + "POSITION": "accessor_1230" }, - "indices": "accessor_1162", + "indices": "accessor_1228", "material": "ID87", "primitive": 4 } @@ -12050,10 +13274,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1186", - "POSITION": "accessor_1184" + "NORMAL": "accessor_1252", + "POSITION": "accessor_1250" }, - "indices": "accessor_1182", + "indices": "accessor_1248", "material": "ID87", "primitive": 4 } @@ -12064,10 +13288,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1206", - "POSITION": "accessor_1204" + "NORMAL": "accessor_1272", + "POSITION": "accessor_1270" }, - "indices": "accessor_1202", + "indices": "accessor_1268", "material": "ID87", "primitive": 4 } @@ -12078,10 +13302,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1226", - "POSITION": "accessor_1224" + "NORMAL": "accessor_1292", + "POSITION": "accessor_1290" }, - "indices": "accessor_1222", + "indices": "accessor_1288", "material": "ID304", "primitive": 4 } @@ -12092,10 +13316,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1246", - "POSITION": "accessor_1244" + "NORMAL": "accessor_1312", + "POSITION": "accessor_1310" }, - "indices": "accessor_1242", + "indices": "accessor_1308", "material": "ID164", "primitive": 4 } @@ -12106,10 +13330,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1266", - "POSITION": "accessor_1264" + "NORMAL": "accessor_1332", + "POSITION": "accessor_1330" }, - "indices": "accessor_1262", + "indices": "accessor_1328", "material": "ID318", "primitive": 4 } @@ -12120,10 +13344,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1286", - "POSITION": "accessor_1284" + "NORMAL": "accessor_1352", + "POSITION": "accessor_1350" }, - "indices": "accessor_1282", + "indices": "accessor_1348", "material": "ID164", "primitive": 4 } @@ -12134,10 +13358,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1306", - "POSITION": "accessor_1304" + "NORMAL": "accessor_1372", + "POSITION": "accessor_1370" }, - "indices": "accessor_1302", + "indices": "accessor_1368", "material": "ID318", "primitive": 4 } @@ -12148,10 +13372,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1326", - "POSITION": "accessor_1324" + "NORMAL": "accessor_1392", + "POSITION": "accessor_1390" }, - "indices": "accessor_1322", + "indices": "accessor_1388", "material": "ID338", "primitive": 4 } @@ -12162,10 +13386,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1346", - "POSITION": "accessor_1344" + "NORMAL": "accessor_1412", + "POSITION": "accessor_1410" }, - "indices": "accessor_1342", + "indices": "accessor_1408", "material": "ID346", "primitive": 4 } @@ -12190,24 +13414,102 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1366", - "POSITION": "accessor_1364" + "NORMAL": "accessor_1432", + "POSITION": "accessor_1430" }, - "indices": "accessor_1362", + "indices": "accessor_1428", "material": "ID87", "primitive": 4 } ] }, + "ID477": { + "name": "ID477", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1444" + }, + "indices": "accessor_1442", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID481": { + "name": "ID481", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1456" + }, + "indices": "accessor_1454", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID485": { + "name": "ID485", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1468" + }, + "indices": "accessor_1466", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID489": { + "name": "ID489", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1480" + }, + "indices": "accessor_1478", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID493": { + "name": "ID493", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1492" + }, + "indices": "accessor_1490", + "material": "ID360", + "primitive": 1 + } + ] + }, + "ID497": { + "name": "ID497", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1504" + }, + "indices": "accessor_1502", + "material": "ID360", + "primitive": 1 + } + ] + }, "ID502": { "name": "ID502", "primitives": [ { "attributes": { - "NORMAL": "accessor_1392", - "POSITION": "accessor_1390" + "NORMAL": "accessor_1524", + "POSITION": "accessor_1522" }, - "indices": "accessor_1388", + "indices": "accessor_1520", "material": "ID318", "primitive": 4 } @@ -12218,10 +13520,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1412", - "POSITION": "accessor_1410" + "NORMAL": "accessor_1544", + "POSITION": "accessor_1542" }, - "indices": "accessor_1408", + "indices": "accessor_1540", "material": "ID164", "primitive": 4 } @@ -12232,10 +13534,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1432", - "POSITION": "accessor_1430" + "NORMAL": "accessor_1564", + "POSITION": "accessor_1562" }, - "indices": "accessor_1428", + "indices": "accessor_1560", "material": "ID318", "primitive": 4 } @@ -12246,10 +13548,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1452", - "POSITION": "accessor_1450" + "NORMAL": "accessor_1584", + "POSITION": "accessor_1582" }, - "indices": "accessor_1448", + "indices": "accessor_1580", "material": "ID87", "primitive": 4 } @@ -12260,10 +13562,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1472", - "POSITION": "accessor_1470" + "NORMAL": "accessor_1604", + "POSITION": "accessor_1602" }, - "indices": "accessor_1468", + "indices": "accessor_1600", "material": "ID528", "primitive": 4 } @@ -12288,10 +13590,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1492", - "POSITION": "accessor_1490" + "NORMAL": "accessor_1624", + "POSITION": "accessor_1622" }, - "indices": "accessor_1488", + "indices": "accessor_1620", "material": "ID528", "primitive": 4 } @@ -12302,10 +13604,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1512", - "POSITION": "accessor_1510" + "NORMAL": "accessor_1644", + "POSITION": "accessor_1642" }, - "indices": "accessor_1508", + "indices": "accessor_1640", "material": "ID164", "primitive": 4 } @@ -12316,10 +13618,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1532", - "POSITION": "accessor_1530" + "NORMAL": "accessor_1664", + "POSITION": "accessor_1662" }, - "indices": "accessor_1528", + "indices": "accessor_1660", "material": "ID318", "primitive": 4 } @@ -12330,10 +13632,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1552", - "POSITION": "accessor_1550" + "NORMAL": "accessor_1684", + "POSITION": "accessor_1682" }, - "indices": "accessor_1548", + "indices": "accessor_1680", "material": "ID164", "primitive": 4 } @@ -12344,10 +13646,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1572", - "POSITION": "accessor_1570" + "NORMAL": "accessor_1704", + "POSITION": "accessor_1702" }, - "indices": "accessor_1568", + "indices": "accessor_1700", "material": "ID318", "primitive": 4 } @@ -12358,10 +13660,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1592", - "POSITION": "accessor_1590" + "NORMAL": "accessor_1724", + "POSITION": "accessor_1722" }, - "indices": "accessor_1588", + "indices": "accessor_1720", "material": "ID87", "primitive": 4 } @@ -12372,10 +13674,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1612", - "POSITION": "accessor_1610" + "NORMAL": "accessor_1744", + "POSITION": "accessor_1742" }, - "indices": "accessor_1608", + "indices": "accessor_1740", "material": "ID528", "primitive": 4 } @@ -12386,10 +13688,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1632", - "POSITION": "accessor_1630" + "NORMAL": "accessor_1764", + "POSITION": "accessor_1762" }, - "indices": "accessor_1628", + "indices": "accessor_1760", "material": "ID528", "primitive": 4 } @@ -12400,10 +13702,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1652", - "POSITION": "accessor_1650" + "NORMAL": "accessor_1784", + "POSITION": "accessor_1782" }, - "indices": "accessor_1648", + "indices": "accessor_1780", "material": "ID164", "primitive": 4 } @@ -12414,10 +13716,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1672", - "POSITION": "accessor_1670" + "NORMAL": "accessor_1804", + "POSITION": "accessor_1802" }, - "indices": "accessor_1668", + "indices": "accessor_1800", "material": "ID591", "primitive": 4 } @@ -12442,10 +13744,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1692", - "POSITION": "accessor_1690" + "NORMAL": "accessor_1824", + "POSITION": "accessor_1822" }, - "indices": "accessor_1688", + "indices": "accessor_1820", "material": "ID142", "primitive": 4 } @@ -12456,10 +13758,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1712", - "POSITION": "accessor_1710" + "NORMAL": "accessor_1844", + "POSITION": "accessor_1842" }, - "indices": "accessor_1708", + "indices": "accessor_1840", "material": "ID13", "primitive": 4 } @@ -12470,10 +13772,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1732", - "POSITION": "accessor_1730" + "NORMAL": "accessor_1864", + "POSITION": "accessor_1862" }, - "indices": "accessor_1728", + "indices": "accessor_1860", "material": "ID87", "primitive": 4 } @@ -12484,10 +13786,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1752", - "POSITION": "accessor_1750" + "NORMAL": "accessor_1884", + "POSITION": "accessor_1882" }, - "indices": "accessor_1748", + "indices": "accessor_1880", "material": "ID142", "primitive": 4 } @@ -12498,10 +13800,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1772", - "POSITION": "accessor_1770" + "NORMAL": "accessor_1904", + "POSITION": "accessor_1902" }, - "indices": "accessor_1768", + "indices": "accessor_1900", "material": "ID87", "primitive": 4 } @@ -12512,10 +13814,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1792", - "POSITION": "accessor_1790" + "NORMAL": "accessor_1924", + "POSITION": "accessor_1922" }, - "indices": "accessor_1788", + "indices": "accessor_1920", "material": "ID304", "primitive": 4 } @@ -12526,10 +13828,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1812", - "POSITION": "accessor_1810" + "NORMAL": "accessor_1944", + "POSITION": "accessor_1942" }, - "indices": "accessor_1808", + "indices": "accessor_1940", "material": "ID5", "primitive": 4 } @@ -12540,10 +13842,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1832", - "POSITION": "accessor_1830" + "NORMAL": "accessor_1964", + "POSITION": "accessor_1962" }, - "indices": "accessor_1828", + "indices": "accessor_1960", "material": "ID13", "primitive": 4 } @@ -12554,10 +13856,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1852", - "POSITION": "accessor_1850" + "NORMAL": "accessor_1984", + "POSITION": "accessor_1982" }, - "indices": "accessor_1848", + "indices": "accessor_1980", "material": "ID87", "primitive": 4 } @@ -12568,10 +13870,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1872", - "POSITION": "accessor_1870" + "NORMAL": "accessor_2004", + "POSITION": "accessor_2002" }, - "indices": "accessor_1868", + "indices": "accessor_2000", "material": "ID87", "primitive": 4 } @@ -12582,19 +13884,19 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1907", - "POSITION": "accessor_1905" + "NORMAL": "accessor_2039", + "POSITION": "accessor_2037" }, - "indices": "accessor_1900", + "indices": "accessor_2032", "material": "ID304", "primitive": 4 }, { "attributes": { - "NORMAL": "accessor_1907", - "POSITION": "accessor_1905" + "NORMAL": "accessor_2039", + "POSITION": "accessor_2037" }, - "indices": "accessor_1903", + "indices": "accessor_2035", "material": "ID87", "primitive": 4 } @@ -12619,10 +13921,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1927", - "POSITION": "accessor_1925" + "NORMAL": "accessor_2059", + "POSITION": "accessor_2057" }, - "indices": "accessor_1923", + "indices": "accessor_2055", "material": "ID5", "primitive": 4 } @@ -12633,10 +13935,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1947", - "POSITION": "accessor_1945" + "NORMAL": "accessor_2079", + "POSITION": "accessor_2077" }, - "indices": "accessor_1943", + "indices": "accessor_2075", "material": "ID13", "primitive": 4 } @@ -12647,19 +13949,19 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_1982", - "POSITION": "accessor_1980" + "NORMAL": "accessor_2114", + "POSITION": "accessor_2112" }, - "indices": "accessor_1975", + "indices": "accessor_2107", "material": "ID304", "primitive": 4 }, { "attributes": { - "NORMAL": "accessor_1982", - "POSITION": "accessor_1980" + "NORMAL": "accessor_2114", + "POSITION": "accessor_2112" }, - "indices": "accessor_1978", + "indices": "accessor_2110", "material": "ID87", "primitive": 4 } @@ -12670,10 +13972,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2002", - "POSITION": "accessor_2000" + "NORMAL": "accessor_2134", + "POSITION": "accessor_2132" }, - "indices": "accessor_1998", + "indices": "accessor_2130", "material": "ID87", "primitive": 4 } @@ -12684,10 +13986,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2022", - "POSITION": "accessor_2020" + "NORMAL": "accessor_2154", + "POSITION": "accessor_2152" }, - "indices": "accessor_2018", + "indices": "accessor_2150", "material": "ID528", "primitive": 4 } @@ -12698,10 +14000,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2042", - "POSITION": "accessor_2040" + "NORMAL": "accessor_2174", + "POSITION": "accessor_2172" }, - "indices": "accessor_2038", + "indices": "accessor_2170", "material": "ID304", "primitive": 4 } @@ -12712,10 +14014,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2062", - "POSITION": "accessor_2060" + "NORMAL": "accessor_2194", + "POSITION": "accessor_2192" }, - "indices": "accessor_2058", + "indices": "accessor_2190", "material": "ID318", "primitive": 4 } @@ -12726,10 +14028,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2082", - "POSITION": "accessor_2080" + "NORMAL": "accessor_2214", + "POSITION": "accessor_2212" }, - "indices": "accessor_2078", + "indices": "accessor_2210", "material": "ID707", "primitive": 4 } @@ -12740,10 +14042,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2102", - "POSITION": "accessor_2100" + "NORMAL": "accessor_2234", + "POSITION": "accessor_2232" }, - "indices": "accessor_2098", + "indices": "accessor_2230", "material": "ID13", "primitive": 4 } @@ -12754,10 +14056,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2122", - "POSITION": "accessor_2120" + "NORMAL": "accessor_2254", + "POSITION": "accessor_2252" }, - "indices": "accessor_2118", + "indices": "accessor_2250", "material": "ID528", "primitive": 4 } @@ -12782,10 +14084,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2142", - "POSITION": "accessor_2140" + "NORMAL": "accessor_2274", + "POSITION": "accessor_2272" }, - "indices": "accessor_2138", + "indices": "accessor_2270", "material": "ID528", "primitive": 4 } @@ -12796,10 +14098,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2162", - "POSITION": "accessor_2160" + "NORMAL": "accessor_2294", + "POSITION": "accessor_2292" }, - "indices": "accessor_2158", + "indices": "accessor_2290", "material": "ID528", "primitive": 4 } @@ -12810,10 +14112,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2182", - "POSITION": "accessor_2180" + "NORMAL": "accessor_2314", + "POSITION": "accessor_2312" }, - "indices": "accessor_2178", + "indices": "accessor_2310", "material": "ID318", "primitive": 4 } @@ -12824,10 +14126,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2202", - "POSITION": "accessor_2200" + "NORMAL": "accessor_2334", + "POSITION": "accessor_2332" }, - "indices": "accessor_2198", + "indices": "accessor_2330", "material": "ID528", "primitive": 4 } @@ -12838,10 +14140,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2222", - "POSITION": "accessor_2220" + "NORMAL": "accessor_2354", + "POSITION": "accessor_2352" }, - "indices": "accessor_2218", + "indices": "accessor_2350", "material": "ID528", "primitive": 4 } @@ -12852,10 +14154,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2242", - "POSITION": "accessor_2240" + "NORMAL": "accessor_2374", + "POSITION": "accessor_2372" }, - "indices": "accessor_2238", + "indices": "accessor_2370", "material": "ID528", "primitive": 4 } @@ -12866,10 +14168,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2262", - "POSITION": "accessor_2260" + "NORMAL": "accessor_2394", + "POSITION": "accessor_2392" }, - "indices": "accessor_2258", + "indices": "accessor_2390", "material": "ID5", "primitive": 4 } @@ -12880,10 +14182,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2282", - "POSITION": "accessor_2280" + "NORMAL": "accessor_2414", + "POSITION": "accessor_2412" }, - "indices": "accessor_2278", + "indices": "accessor_2410", "material": "ID13", "primitive": 4 } @@ -12894,10 +14196,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2302", - "POSITION": "accessor_2300" + "NORMAL": "accessor_2434", + "POSITION": "accessor_2432" }, - "indices": "accessor_2298", + "indices": "accessor_2430", "material": "ID87", "primitive": 4 } @@ -12908,10 +14210,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2322", - "POSITION": "accessor_2320" + "NORMAL": "accessor_2454", + "POSITION": "accessor_2452" }, - "indices": "accessor_2318", + "indices": "accessor_2450", "material": "ID13", "primitive": 4 } @@ -12936,10 +14238,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2342", - "POSITION": "accessor_2340" + "NORMAL": "accessor_2474", + "POSITION": "accessor_2472" }, - "indices": "accessor_2338", + "indices": "accessor_2470", "material": "ID142", "primitive": 4 } @@ -12950,10 +14252,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2362", - "POSITION": "accessor_2360" + "NORMAL": "accessor_2494", + "POSITION": "accessor_2492" }, - "indices": "accessor_2358", + "indices": "accessor_2490", "material": "ID318", "primitive": 4 } @@ -12964,10 +14266,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2382", - "POSITION": "accessor_2380" + "NORMAL": "accessor_2514", + "POSITION": "accessor_2512" }, - "indices": "accessor_2378", + "indices": "accessor_2510", "material": "ID338", "primitive": 4 } @@ -12978,10 +14280,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2402", - "POSITION": "accessor_2400" + "NORMAL": "accessor_2534", + "POSITION": "accessor_2532" }, - "indices": "accessor_2398", + "indices": "accessor_2530", "material": "ID304", "primitive": 4 } @@ -12992,10 +14294,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2422", - "POSITION": "accessor_2420" + "NORMAL": "accessor_2554", + "POSITION": "accessor_2552" }, - "indices": "accessor_2418", + "indices": "accessor_2550", "material": "ID87", "primitive": 4 } @@ -13006,10 +14308,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2442", - "POSITION": "accessor_2440" + "NORMAL": "accessor_2574", + "POSITION": "accessor_2572" }, - "indices": "accessor_2438", + "indices": "accessor_2570", "material": "ID87", "primitive": 4 } @@ -13020,10 +14322,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2462", - "POSITION": "accessor_2460" + "NORMAL": "accessor_2594", + "POSITION": "accessor_2592" }, - "indices": "accessor_2458", + "indices": "accessor_2590", "material": "ID304", "primitive": 4 } @@ -13034,10 +14336,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2482", - "POSITION": "accessor_2480" + "NORMAL": "accessor_2614", + "POSITION": "accessor_2612" }, - "indices": "accessor_2478", + "indices": "accessor_2610", "material": "ID87", "primitive": 4 } @@ -13048,10 +14350,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2502", - "POSITION": "accessor_2500" + "NORMAL": "accessor_2634", + "POSITION": "accessor_2632" }, - "indices": "accessor_2498", + "indices": "accessor_2630", "material": "ID87", "primitive": 4 } @@ -13062,10 +14364,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2522", - "POSITION": "accessor_2520" + "NORMAL": "accessor_2654", + "POSITION": "accessor_2652" }, - "indices": "accessor_2518", + "indices": "accessor_2650", "material": "ID87", "primitive": 4 } @@ -13076,10 +14378,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2542", - "POSITION": "accessor_2540" + "NORMAL": "accessor_2674", + "POSITION": "accessor_2672" }, - "indices": "accessor_2538", + "indices": "accessor_2670", "material": "ID304", "primitive": 4 } @@ -13090,10 +14392,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2562", - "POSITION": "accessor_2560" + "NORMAL": "accessor_2694", + "POSITION": "accessor_2692" }, - "indices": "accessor_2558", + "indices": "accessor_2690", "material": "ID87", "primitive": 4 } @@ -13104,10 +14406,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2582", - "POSITION": "accessor_2580" + "NORMAL": "accessor_2714", + "POSITION": "accessor_2712" }, - "indices": "accessor_2578", + "indices": "accessor_2710", "material": "ID318", "primitive": 4 } @@ -13132,10 +14434,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2602", - "POSITION": "accessor_2600" + "NORMAL": "accessor_2734", + "POSITION": "accessor_2732" }, - "indices": "accessor_2598", + "indices": "accessor_2730", "material": "ID87", "primitive": 4 } @@ -13146,10 +14448,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2622", - "POSITION": "accessor_2620" + "NORMAL": "accessor_2754", + "POSITION": "accessor_2752" }, - "indices": "accessor_2618", + "indices": "accessor_2750", "material": "ID707", "primitive": 4 } @@ -13160,10 +14462,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2642", - "POSITION": "accessor_2640" + "NORMAL": "accessor_2774", + "POSITION": "accessor_2772" }, - "indices": "accessor_2638", + "indices": "accessor_2770", "material": "ID338", "primitive": 4 } @@ -13174,10 +14476,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2662", - "POSITION": "accessor_2660" + "NORMAL": "accessor_2794", + "POSITION": "accessor_2792" }, - "indices": "accessor_2658", + "indices": "accessor_2790", "material": "ID346", "primitive": 4 } @@ -13188,10 +14490,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2682", - "POSITION": "accessor_2680" + "NORMAL": "accessor_2814", + "POSITION": "accessor_2812" }, - "indices": "accessor_2678", + "indices": "accessor_2810", "material": "ID142", "primitive": 4 } @@ -13202,10 +14504,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2702", - "POSITION": "accessor_2700" + "NORMAL": "accessor_2834", + "POSITION": "accessor_2832" }, - "indices": "accessor_2698", + "indices": "accessor_2830", "material": "ID13", "primitive": 4 } @@ -13216,10 +14518,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2722", - "POSITION": "accessor_2720" + "NORMAL": "accessor_2854", + "POSITION": "accessor_2852" }, - "indices": "accessor_2718", + "indices": "accessor_2850", "material": "ID528", "primitive": 4 } @@ -13230,10 +14532,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2742", - "POSITION": "accessor_2740" + "NORMAL": "accessor_2874", + "POSITION": "accessor_2872" }, - "indices": "accessor_2738", + "indices": "accessor_2870", "material": "ID87", "primitive": 4 } @@ -13244,10 +14546,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2762", - "POSITION": "accessor_2760" + "NORMAL": "accessor_2894", + "POSITION": "accessor_2892" }, - "indices": "accessor_2758", + "indices": "accessor_2890", "material": "ID164", "primitive": 4 } @@ -13258,10 +14560,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2782", - "POSITION": "accessor_2780" + "NORMAL": "accessor_2914", + "POSITION": "accessor_2912" }, - "indices": "accessor_2778", + "indices": "accessor_2910", "material": "ID318", "primitive": 4 } @@ -13272,10 +14574,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2802", - "POSITION": "accessor_2800" + "NORMAL": "accessor_2934", + "POSITION": "accessor_2932" }, - "indices": "accessor_2798", + "indices": "accessor_2930", "material": "ID304", "primitive": 4 } @@ -13286,10 +14588,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2822", - "POSITION": "accessor_2820" + "NORMAL": "accessor_2954", + "POSITION": "accessor_2952" }, - "indices": "accessor_2818", + "indices": "accessor_2950", "material": "ID142", "primitive": 4 } @@ -13300,10 +14602,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2842", - "POSITION": "accessor_2840" + "NORMAL": "accessor_2974", + "POSITION": "accessor_2972" }, - "indices": "accessor_2838", + "indices": "accessor_2970", "material": "ID338", "primitive": 4 } @@ -13328,10 +14630,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2862", - "POSITION": "accessor_2860" + "NORMAL": "accessor_2994", + "POSITION": "accessor_2992" }, - "indices": "accessor_2858", + "indices": "accessor_2990", "material": "ID338", "primitive": 4 } @@ -13342,10 +14644,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2882", - "POSITION": "accessor_2880" + "NORMAL": "accessor_3014", + "POSITION": "accessor_3012" }, - "indices": "accessor_2878", + "indices": "accessor_3010", "material": "ID591", "primitive": 4 } @@ -13356,10 +14658,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2902", - "POSITION": "accessor_2900" + "NORMAL": "accessor_3034", + "POSITION": "accessor_3032" }, - "indices": "accessor_2898", + "indices": "accessor_3030", "material": "ID164", "primitive": 4 } @@ -13370,10 +14672,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2922", - "POSITION": "accessor_2920" + "NORMAL": "accessor_3054", + "POSITION": "accessor_3052" }, - "indices": "accessor_2918", + "indices": "accessor_3050", "material": "ID87", "primitive": 4 } @@ -13384,10 +14686,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2942", - "POSITION": "accessor_2940" + "NORMAL": "accessor_3074", + "POSITION": "accessor_3072" }, - "indices": "accessor_2938", + "indices": "accessor_3070", "material": "ID338", "primitive": 4 } @@ -13398,10 +14700,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2962", - "POSITION": "accessor_2960" + "NORMAL": "accessor_3094", + "POSITION": "accessor_3092" }, - "indices": "accessor_2958", + "indices": "accessor_3090", "material": "ID5", "primitive": 4 } @@ -13412,10 +14714,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_2982", - "POSITION": "accessor_2980" + "NORMAL": "accessor_3114", + "POSITION": "accessor_3112" }, - "indices": "accessor_2978", + "indices": "accessor_3110", "material": "ID164", "primitive": 4 } @@ -13426,10 +14728,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3002", - "POSITION": "accessor_3000" + "NORMAL": "accessor_3134", + "POSITION": "accessor_3132" }, - "indices": "accessor_2998", + "indices": "accessor_3130", "material": "ID87", "primitive": 4 } @@ -13440,10 +14742,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3022", - "POSITION": "accessor_3020" + "NORMAL": "accessor_3154", + "POSITION": "accessor_3152" }, - "indices": "accessor_3018", + "indices": "accessor_3150", "material": "ID87", "primitive": 4 } @@ -13454,10 +14756,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_3042", - "POSITION": "accessor_3040" + "NORMAL": "accessor_3174", + "POSITION": "accessor_3172" }, - "indices": "accessor_3038", + "indices": "accessor_3170", "material": "ID997", "primitive": 4 } @@ -13480,9 +14782,9 @@ 0, 1.09294, 0, - 798.569, - 313.289, - 57.6848, + 20.2837, + 7.95755, + 1.46519, 1 ], "meshes": [ @@ -13507,9 +14809,9 @@ 0, 1.092, 0, - 634.269, - 1782.4, - 151.574, + 16.1104, + 45.2729, + 3.84999, 1 ], "meshes": [ @@ -13541,9 +14843,9 @@ 0, 1.092, 0, - 634.269, - 1782.4, - 15.9805, + 16.1104, + 45.2729, + 0.405905, 1 ], "meshes": [ @@ -13575,9 +14877,9 @@ 0, 1, 0, - 87.7551, - 2029.28, - 675.67, + 2.22898, + 51.5437, + 17.162, 1 ], "meshes": [ @@ -13605,11 +14907,18 @@ 0, 1.1752, 0, - 593.986, - 1409.32, - 168.797, + 15.0872, + 35.7966, + 4.28743, 1 ], + "meshes": [ + "ID364", + "ID368", + "ID372", + "ID376", + "ID380" + ], "name": "group_9" }, "ID258": { @@ -13627,9 +14936,9 @@ 0, 1.14, 0, - 109.969, - 276.255, - 72.0553, + 2.7932, + 7.01688, + 1.8302, 1 ], "meshes": [ @@ -13657,9 +14966,9 @@ 0, 1, 0, - 87.7551, - 2029.28, - 605.532, + 2.22898, + 51.5437, + 15.3805, 1 ], "meshes": [ @@ -13698,7 +15007,8 @@ "ID330", "ID336", "ID344", - "ID352" + "ID352", + "ID358" ], "name": "group_11" }, @@ -13720,11 +15030,18 @@ 0, 1.1752, 0, - 803.142, - 1409.32, - 168.797, + 20.3998, + 35.7966, + 4.28743, 1 ], + "meshes": [ + "ID481", + "ID485", + "ID489", + "ID493", + "ID497" + ], "name": "group_12" }, "ID385": { @@ -13742,9 +15059,9 @@ 0, 1.14, 0, - 109.969, - 276.255, - 72.0553, + 2.7932, + 7.01688, + 1.8302, 1 ], "meshes": [ @@ -13786,7 +15103,8 @@ "ID453", "ID459", "ID465", - "ID471" + "ID471", + "ID477" ], "name": "group_11" }, @@ -13805,9 +15123,9 @@ 0, 1, 0, - -278.368, - 2029.28, - 605.532, + -7.07055, + 51.5437, + 15.3805, 1 ], "meshes": [ @@ -13832,9 +15150,9 @@ 0, 0.819702, 0, - 776.429, - 211.16, - 18.0021, + 19.7213, + 5.36347, + 0.457254, 1 ], "meshes": [ @@ -13863,9 +15181,9 @@ 0, 0.819702, 0, - 620.699, - 211.16, - 18.0021, + 15.7657, + 5.36347, + 0.457254, 1 ], "meshes": [ @@ -13894,9 +15212,9 @@ 0, 1, 0, - -278.368, - 2029.28, - 675.67, + -7.07055, + 51.5437, + 17.162, 1 ], "meshes": [ @@ -13930,9 +15248,9 @@ 0, 1, 0, - -704.026, - 292.137, - 586.039, + -17.8823, + 7.42029, + 14.8854, 1 ], "meshes": [ @@ -14010,9 +15328,32 @@ "ID1521", "ID1527", "ID1533", + "ID1539", "ID621", + "ID1543", + "ID1547", + "ID1551", + "ID1555", + "ID1559", + "ID1563", + "ID1567", + "ID1571", + "ID1575", + "ID1579", "ID627", + "ID1583", + "ID1587", + "ID1591", + "ID1595", + "ID1599", + "ID1603", + "ID1607", + "ID1611", + "ID1615", + "ID1619", "ID633", + "ID1623", + "ID1627", "ID639", "ID645", "ID651", @@ -14111,9 +15452,9 @@ 0, 1.09294, 0, - 598.558, - 313.289, - 57.6848, + 15.2034, + 7.95755, + 1.46519, 1 ], "meshes": [ @@ -14150,6 +15491,30 @@ 1 ], "name": "SketchUp" + }, + "node_18": { + "children": [ + "node_0" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" } }, "programs": { @@ -14168,32 +15533,47 @@ ], "fragmentShader": "SuperMurdoch1FS", "vertexShader": "SuperMurdoch1VS" + }, + "program_2": { + "attributes": [ + "a_position" + ], + "fragmentShader": "SuperMurdoch2FS", + "vertexShader": "SuperMurdoch2VS" } }, "scene": "defaultScene", "scenes": { "defaultScene": { "nodes": [ - "node_0" + "node_18" ] } }, "shaders": { "SuperMurdoch0FS": { - "path": "SuperMurdoch0FS.glsl", - "type": 35632 + "type": 35632, + "uri": "SuperMurdoch0FS.glsl" }, "SuperMurdoch0VS": { - "path": "SuperMurdoch0VS.glsl", - "type": 35633 + "type": 35633, + "uri": "SuperMurdoch0VS.glsl" }, "SuperMurdoch1FS": { - "path": "SuperMurdoch1FS.glsl", - "type": 35632 + "type": 35632, + "uri": "SuperMurdoch1FS.glsl" }, "SuperMurdoch1VS": { - "path": "SuperMurdoch1VS.glsl", - "type": 35633 + "type": 35633, + "uri": "SuperMurdoch1VS.glsl" + }, + "SuperMurdoch2FS": { + "type": 35632, + "uri": "SuperMurdoch2FS.glsl" + }, + "SuperMurdoch2VS": { + "type": 35633, + "uri": "SuperMurdoch2VS.glsl" } }, "skins": {}, @@ -14339,6 +15719,56 @@ } } } + }, + "technique3": { + "parameters": { + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + } + }, + "pass": "defaultPass", + "passes": { + "defaultPass": { + "details": { + "commonProfile": { + "extras": { + "doubleSided": false + }, + "lightingModel": "Constant", + "parameters": [ + "modelViewMatrix", + "projectionMatrix" + ] + }, + "type": "COLLADA-1.4.1/commonProfile" + }, + "instanceProgram": { + "attributes": { + "a_position": "position" + }, + "program": "program_2", + "uniforms": { + "u_modelViewMatrix": "modelViewMatrix", + "u_projectionMatrix": "projectionMatrix" + } + }, + "states": { + "blendEnable": 0, + "cullFaceEnable": 1, + "depthMask": 1, + "depthTestEnable": 1 + } + } + } } } } \ No newline at end of file diff --git a/model/SuperMurdoch/SuperMurdoch0VS.glsl b/model/SuperMurdoch/SuperMurdoch0VS.glsl index 999140ee9e..9e3592280a 100644 --- a/model/SuperMurdoch/SuperMurdoch0VS.glsl +++ b/model/SuperMurdoch/SuperMurdoch0VS.glsl @@ -7,6 +7,6 @@ uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); +v_normal = u_normalMatrix * a_normal; gl_Position = u_projectionMatrix * pos; } diff --git a/model/SuperMurdoch/SuperMurdoch1FS.glsl b/model/SuperMurdoch/SuperMurdoch1FS.glsl new file mode 100644 index 0000000000..a5cc8c1142 --- /dev/null +++ b/model/SuperMurdoch/SuperMurdoch1FS.glsl @@ -0,0 +1,13 @@ +precision highp float; +varying vec3 v_normal; +uniform vec4 u_diffuse; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +diffuse = u_diffuse; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a); +gl_FragColor = color; +} diff --git a/model/wine/wine4VS.glsl b/model/SuperMurdoch/SuperMurdoch1VS.glsl similarity index 86% rename from model/wine/wine4VS.glsl rename to model/SuperMurdoch/SuperMurdoch1VS.glsl index 999140ee9e..9e3592280a 100644 --- a/model/wine/wine4VS.glsl +++ b/model/SuperMurdoch/SuperMurdoch1VS.glsl @@ -7,6 +7,6 @@ uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); +v_normal = u_normalMatrix * a_normal; gl_Position = u_projectionMatrix * pos; } diff --git a/model/SuperMurdoch/SuperMurdoch2FS.glsl b/model/SuperMurdoch/SuperMurdoch2FS.glsl index e2da2c8fdc..b41a6d5fc6 100644 --- a/model/SuperMurdoch/SuperMurdoch2FS.glsl +++ b/model/SuperMurdoch/SuperMurdoch2FS.glsl @@ -1,14 +1,8 @@ precision highp float; -varying vec3 v_normal; -uniform vec4 u_diffuse; -uniform float u_transparency; void main(void) { -vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); vec4 diffuse = vec4(0., 0., 0., 1.); -diffuse = u_diffuse; -diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); color.xyz += diffuse.xyz; -color = vec4(color.rgb * diffuse.a, diffuse.a * u_transparency); +color = vec4(color.rgb * diffuse.a, diffuse.a); gl_FragColor = color; } diff --git a/model/SuperMurdoch/SuperMurdoch2VS.glsl b/model/SuperMurdoch/SuperMurdoch2VS.glsl index 999140ee9e..17237bfea9 100644 --- a/model/SuperMurdoch/SuperMurdoch2VS.glsl +++ b/model/SuperMurdoch/SuperMurdoch2VS.glsl @@ -1,12 +1,8 @@ precision highp float; attribute vec3 a_position; -attribute vec3 a_normal; -varying vec3 v_normal; -uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); gl_Position = u_projectionMatrix * pos; } diff --git a/model/SuperMurdoch/SuperMurdoch4FS.glsl b/model/SuperMurdoch/SuperMurdoch4FS.glsl deleted file mode 100644 index 7c8b5a1dc4..0000000000 --- a/model/SuperMurdoch/SuperMurdoch4FS.glsl +++ /dev/null @@ -1,14 +0,0 @@ -precision highp float; -varying vec3 v_normal; -uniform vec3 u_diffuse; -uniform float u_transparency; -void main(void) { -vec3 normal = normalize(v_normal); -float lambert = max(dot(normal,vec3(0.,0.,1.)), 0.); -vec4 color = vec4(0., 0., 0., 0.); -vec4 diffuse = vec4(0., 0., 0., 1.); -diffuse.xyz = u_diffuse; -diffuse.xyz *= lambert; -color += diffuse; -gl_FragColor = vec4(color.rgb * color.a, color.a * u_transparency); -} diff --git a/model/duck/duck.bin b/model/duck/duck.bin old mode 100755 new mode 100644 index 11ed29850f..ef47f23546 Binary files a/model/duck/duck.bin and b/model/duck/duck.bin differ diff --git a/model/duck/duck.json b/model/duck/duck.gltf old mode 100755 new mode 100644 similarity index 93% rename from model/duck/duck.json rename to model/duck/duck.gltf index a2c0e4e61d..3cd9614e69 --- a/model/duck/duck.json +++ b/model/duck/duck.gltf @@ -13,14 +13,14 @@ "byteStride": 12, "count": 2399, "max": [ - 96.1799, - 163.97, - 53.9252 + 0.961799, + 1.6397, + 0.539252 ], "min": [ - -69.2985, - 9.92937, - -61.3282 + -0.692985, + 0.0992937, + -0.613282 ], "type": 35665 }, @@ -59,10 +59,10 @@ }, "animations": {}, "asset": { - "generator": "collada2gltf@53bdd01c320c249c36ae9fbc439ae2cdee39acc8", + "generator": "collada2gltf@506d909430e3f033e2a84c31b1d41270f7c6eb67", "premultipliedAlpha": true, "profile": "WebGL 1.0.2", - "version": 0.6 + "version": 0.7 }, "bufferViews": { "bufferView_29": { @@ -81,8 +81,8 @@ "buffers": { "duck": { "byteLength": 102040, - "path": "duck.bin", - "type": "arraybuffer" + "type": "arraybuffer", + "uri": "duck.bin" } }, "cameras": { @@ -90,15 +90,15 @@ "perspective": { "aspect_ratio": 1.5, "yfov": 37.8492, - "zfar": 10000, - "znear": 1 + "zfar": 100, + "znear": 0.01 }, "type": "perspective" } }, "images": { "file2": { - "path": "duckCM.png" + "uri": "duckCM.png" } }, "lights": { @@ -202,9 +202,9 @@ 0.621148, -0.571288, 0, - 400.113, - 463.264, - -431.078, + 4.00113, + 4.63264, + -4.31078, 1 ], "name": "camera1" @@ -225,9 +225,9 @@ 0.665418, -0.684741, 0, - 148.654, - 183.672, - -292.179, + 1.48654, + 1.83672, + -2.92179, 1 ], "name": "directionalLight1" @@ -264,12 +264,12 @@ }, "shaders": { "duck0FS": { - "path": "duck0FS.glsl", - "type": 35632 + "type": 35632, + "uri": "duck0FS.glsl" }, "duck0VS": { - "path": "duck0VS.glsl", - "type": 35633 + "type": 35633, + "uri": "duck0VS.glsl" } }, "skins": {}, @@ -294,6 +294,7 @@ ] }, "light0Transform": { + "semantic": "MODELVIEW", "source": "directionalLight1", "type": 35676 }, diff --git a/model/duck/duck0FS.glsl b/model/duck/duck0FS.glsl index ff2174248c..d5b991522a 100644 --- a/model/duck/duck0FS.glsl +++ b/model/duck/duck0FS.glsl @@ -1,13 +1,13 @@ precision highp float; varying vec3 v_normal; -uniform vec3 u_light0Color; -varying vec3 v_light0Direction; -uniform float u_shininess; uniform vec4 u_ambient; varying vec2 v_texcoord0; uniform sampler2D u_diffuse; uniform vec4 u_emission; uniform vec4 u_specular; +uniform float u_shininess; +varying vec3 v_light0Direction; +uniform vec3 u_light0Color; void main(void) { vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); @@ -16,21 +16,20 @@ vec3 diffuseLight = vec3(0., 0., 0.); vec4 emission; vec4 ambient; vec4 specular; +ambient = u_ambient; +diffuse = texture2D(u_diffuse, v_texcoord0); +emission = u_emission; +specular = u_specular; vec3 specularLight = vec3(0., 0., 0.); { -float diffuseIntensity; -float specularIntensity; +float specularIntensity = 0.; +float attenuation = 1.0; vec3 l = normalize(v_light0Direction); vec3 h = normalize(l+vec3(0.,0.,1.)); -diffuseIntensity = max(dot(normal,l), 0.); -specularIntensity = pow(max(0.0,dot(normal,h)),u_shininess); +specularIntensity = max(0., pow(max(dot(normal,h), 0.) , u_shininess)) * attenuation; specularLight += u_light0Color * specularIntensity; -diffuseLight += u_light0Color * diffuseIntensity; +diffuseLight += u_light0Color * max(dot(normal,l), 0.) * attenuation; } -ambient = u_ambient; -diffuse = texture2D(u_diffuse, v_texcoord0); -emission = u_emission; -specular = u_specular; specular.xyz *= specularLight; color.xyz += specular.xyz; diffuse.xyz *= diffuseLight; diff --git a/model/duck/duck0VS.glsl b/model/duck/duck0VS.glsl index 841843f23c..40932b3e66 100644 --- a/model/duck/duck0VS.glsl +++ b/model/duck/duck0VS.glsl @@ -5,14 +5,14 @@ varying vec3 v_normal; uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; -uniform mat4 u_light0Transform; -varying vec3 v_light0Direction; attribute vec2 a_texcoord0; varying vec2 v_texcoord0; +varying vec3 v_light0Direction; +uniform mat4 u_light0Transform; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); -v_light0Direction = normalize(mat3(u_light0Transform) * vec3(0.,0.,1.)); +v_normal = u_normalMatrix * a_normal; v_texcoord0 = a_texcoord0; +v_light0Direction = mat3(u_light0Transform) * vec3(0.,0.,1.); gl_Position = u_projectionMatrix * pos; } diff --git a/model/rambler/Rambler.bin b/model/rambler/Rambler.bin old mode 100755 new mode 100644 index 9a8d45a5e9..fde79eb8c8 Binary files a/model/rambler/Rambler.bin and b/model/rambler/Rambler.bin differ diff --git a/model/rambler/Rambler.gltf b/model/rambler/Rambler.gltf new file mode 100644 index 0000000000..25d4931db2 --- /dev/null +++ b/model/rambler/Rambler.gltf @@ -0,0 +1,55928 @@ +{ + "accessors": { + "accessor_100": { + "bufferView": "bufferView_18316", + "byteOffset": 3312144, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_1000": { + "bufferView": "bufferView_18316", + "byteOffset": 3599760, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10000": { + "bufferView": "bufferView_18315", + "byteOffset": 443828, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_10002": { + "bufferView": "bufferView_18316", + "byteOffset": 3617184, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10004": { + "bufferView": "bufferView_18316", + "byteOffset": 3618336, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10014": { + "bufferView": "bufferView_18315", + "byteOffset": 444164, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10016": { + "bufferView": "bufferView_18316", + "byteOffset": 3619488, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_10026": { + "bufferView": "bufferView_18315", + "byteOffset": 444168, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10028": { + "bufferView": "bufferView_18316", + "byteOffset": 3619512, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_10038": { + "bufferView": "bufferView_18315", + "byteOffset": 444172, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10040": { + "bufferView": "bufferView_18316", + "byteOffset": 3619536, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_10050": { + "bufferView": "bufferView_18315", + "byteOffset": 444176, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10052": { + "bufferView": "bufferView_18316", + "byteOffset": 3619560, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_10062": { + "bufferView": "bufferView_18315", + "byteOffset": 444180, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10064": { + "bufferView": "bufferView_18316", + "byteOffset": 3619584, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_10080": { + "bufferView": "bufferView_18315", + "byteOffset": 444184, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10082": { + "bufferView": "bufferView_18316", + "byteOffset": 3619608, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10084": { + "bufferView": "bufferView_18316", + "byteOffset": 3623448, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10100": { + "bufferView": "bufferView_18315", + "byteOffset": 445336, + "byteStride": 0, + "count": 1578, + "type": 5123 + }, + "accessor_10102": { + "bufferView": "bufferView_18316", + "byteOffset": 3627288, + "byteStride": 12, + "count": 1268, + "max": [ + 0.48768, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_10104": { + "bufferView": "bufferView_18316", + "byteOffset": 3642504, + "byteStride": 12, + "count": 1268, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10120": { + "bufferView": "bufferView_18315", + "byteOffset": 449644, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10122": { + "bufferView": "bufferView_18316", + "byteOffset": 3665400, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10124": { + "bufferView": "bufferView_18316", + "byteOffset": 3669240, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10140": { + "bufferView": "bufferView_18315", + "byteOffset": 450796, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_10142": { + "bufferView": "bufferView_18316", + "byteOffset": 3673080, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_10144": { + "bufferView": "bufferView_18316", + "byteOffset": 3675576, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_1016": { + "bufferView": "bufferView_18315", + "byteOffset": 448492, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10160": { + "bufferView": "bufferView_18315", + "byteOffset": 451252, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10162": { + "bufferView": "bufferView_18316", + "byteOffset": 3678072, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_10164": { + "bufferView": "bufferView_18316", + "byteOffset": 3680856, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10174": { + "bufferView": "bufferView_18315", + "byteOffset": 451828, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10176": { + "bufferView": "bufferView_18316", + "byteOffset": 3683640, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_1018": { + "bufferView": "bufferView_18316", + "byteOffset": 3657720, + "byteStride": 12, + "count": 320, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10192": { + "bufferView": "bufferView_18315", + "byteOffset": 451832, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10194": { + "bufferView": "bufferView_18316", + "byteOffset": 3683664, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10196": { + "bufferView": "bufferView_18316", + "byteOffset": 3687504, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_1020": { + "bufferView": "bufferView_18316", + "byteOffset": 3661560, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10212": { + "bufferView": "bufferView_18315", + "byteOffset": 452984, + "byteStride": 0, + "count": 1578, + "type": 5123 + }, + "accessor_10214": { + "bufferView": "bufferView_18316", + "byteOffset": 3691344, + "byteStride": 12, + "count": 1268, + "max": [ + 0.48768, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_10216": { + "bufferView": "bufferView_18316", + "byteOffset": 3706560, + "byteStride": 12, + "count": 1268, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10232": { + "bufferView": "bufferView_18315", + "byteOffset": 456140, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10234": { + "bufferView": "bufferView_18316", + "byteOffset": 3721776, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10236": { + "bufferView": "bufferView_18316", + "byteOffset": 3725616, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10252": { + "bufferView": "bufferView_18315", + "byteOffset": 457292, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_10254": { + "bufferView": "bufferView_18316", + "byteOffset": 3729456, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_10256": { + "bufferView": "bufferView_18316", + "byteOffset": 3731952, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10272": { + "bufferView": "bufferView_18315", + "byteOffset": 457748, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10274": { + "bufferView": "bufferView_18316", + "byteOffset": 3734448, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_10276": { + "bufferView": "bufferView_18316", + "byteOffset": 3737232, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10286": { + "bufferView": "bufferView_18315", + "byteOffset": 458324, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10288": { + "bufferView": "bufferView_18316", + "byteOffset": 3740016, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_10304": { + "bufferView": "bufferView_18315", + "byteOffset": 458784, + "byteStride": 0, + "count": 4896, + "type": 5123 + }, + "accessor_10306": { + "bufferView": "bufferView_18316", + "byteOffset": 3745032, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10308": { + "bufferView": "bufferView_18316", + "byteOffset": 3776592, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10336": { + "bufferView": "bufferView_18315", + "byteOffset": 468576, + "byteStride": 0, + "count": 2448, + "type": 5123 + }, + "accessor_10339": { + "bufferView": "bufferView_18315", + "byteOffset": 473472, + "byteStride": 0, + "count": 2448, + "type": 5123 + }, + "accessor_10341": { + "bufferView": "bufferView_18316", + "byteOffset": 3808152, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10343": { + "bufferView": "bufferView_18316", + "byteOffset": 3839712, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10359": { + "bufferView": "bufferView_18315", + "byteOffset": 478368, + "byteStride": 0, + "count": 1452, + "type": 5123 + }, + "accessor_1036": { + "bufferView": "bufferView_18315", + "byteOffset": 458328, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_10361": { + "bufferView": "bufferView_18316", + "byteOffset": 3871272, + "byteStride": 12, + "count": 1180, + "max": [ + 0.24384, + 0.24384, + 0.292608 + ], + "min": [ + 0, + -0.0001016, + 0 + ], + "type": 35665 + }, + "accessor_10363": { + "bufferView": "bufferView_18316", + "byteOffset": 3885432, + "byteStride": 12, + "count": 1180, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10379": { + "bufferView": "bufferView_18315", + "byteOffset": 481272, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1038": { + "bufferView": "bufferView_18316", + "byteOffset": 3740040, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_10381": { + "bufferView": "bufferView_18316", + "byteOffset": 3899592, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195072, + 0.341376 + ], + "min": [ + 0.048768, + 0.048768, + 0.292608 + ], + "type": 35665 + }, + "accessor_10383": { + "bufferView": "bufferView_18316", + "byteOffset": 3903432, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10399": { + "bufferView": "bufferView_18315", + "byteOffset": 482424, + "byteStride": 0, + "count": 1452, + "type": 5123 + }, + "accessor_1040": { + "bufferView": "bufferView_18316", + "byteOffset": 3742536, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10401": { + "bufferView": "bufferView_18316", + "byteOffset": 3907272, + "byteStride": 12, + "count": 1180, + "max": [ + 0.24384, + 0.24384, + 0.292608 + ], + "min": [ + 0, + -0.0001016, + 0 + ], + "type": 35665 + }, + "accessor_10403": { + "bufferView": "bufferView_18316", + "byteOffset": 3921432, + "byteStride": 12, + "count": 1180, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10419": { + "bufferView": "bufferView_18315", + "byteOffset": 485328, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10421": { + "bufferView": "bufferView_18316", + "byteOffset": 3935592, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195072, + 0.341376 + ], + "min": [ + 0.048768, + 0.048768, + 0.292608 + ], + "type": 35665 + }, + "accessor_10423": { + "bufferView": "bufferView_18316", + "byteOffset": 3939432, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10439": { + "bufferView": "bufferView_18315", + "byteOffset": 486480, + "byteStride": 0, + "count": 1038, + "type": 5123 + }, + "accessor_10441": { + "bufferView": "bufferView_18316", + "byteOffset": 3943272, + "byteStride": 12, + "count": 576, + "max": [ + 0.97536, + 0.24384, + 0.170688 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10443": { + "bufferView": "bufferView_18316", + "byteOffset": 3950184, + "byteStride": 12, + "count": 576, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10459": { + "bufferView": "bufferView_18315", + "byteOffset": 488556, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10461": { + "bufferView": "bufferView_18316", + "byteOffset": 3957096, + "byteStride": 12, + "count": 162, + "max": [ + 0.780288, + 0.170688, + 0.048768 + ], + "min": [ + 0.682752, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_10463": { + "bufferView": "bufferView_18316", + "byteOffset": 3959040, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10479": { + "bufferView": "bufferView_18315", + "byteOffset": 489132, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10481": { + "bufferView": "bufferView_18316", + "byteOffset": 3960984, + "byteStride": 12, + "count": 162, + "max": [ + 0.536448, + 0.170688, + 0.048768 + ], + "min": [ + 0.438912, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_10483": { + "bufferView": "bufferView_18316", + "byteOffset": 3962928, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10499": { + "bufferView": "bufferView_18315", + "byteOffset": 489708, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10501": { + "bufferView": "bufferView_18316", + "byteOffset": 3964872, + "byteStride": 12, + "count": 162, + "max": [ + 0.292608, + 0.170688, + 0.048768 + ], + "min": [ + 0.195072, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_10503": { + "bufferView": "bufferView_18316", + "byteOffset": 3966816, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_10519": { + "bufferView": "bufferView_18315", + "byteOffset": 490860, + "byteStride": 0, + "count": 2736, + "type": 5123 + }, + "accessor_10521": { + "bufferView": "bufferView_18316", + "byteOffset": 3974328, + "byteStride": 12, + "count": 2184, + "max": [ + 0.292608, + 0.195072, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10523": { + "bufferView": "bufferView_18316", + "byteOffset": 4000536, + "byteStride": 12, + "count": 2184, + "max": [ + 1, + 0.980935, + 1 + ], + "min": [ + -1, + -0.980935, + -1 + ], + "type": 35665 + }, + "accessor_10539": { + "bufferView": "bufferView_18315", + "byteOffset": 496332, + "byteStride": 0, + "count": 2736, + "type": 5123 + }, + "accessor_10541": { + "bufferView": "bufferView_18316", + "byteOffset": 4026744, + "byteStride": 12, + "count": 2184, + "max": [ + 0.292608, + 0.195072, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10543": { + "bufferView": "bufferView_18316", + "byteOffset": 4052952, + "byteStride": 12, + "count": 2184, + "max": [ + 1, + 0.980935, + 1 + ], + "min": [ + -1, + -0.980935, + -1 + ], + "type": 35665 + }, + "accessor_10559": { + "bufferView": "bufferView_18315", + "byteOffset": 501804, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1056": { + "bufferView": "bufferView_18315", + "byteOffset": 490284, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10561": { + "bufferView": "bufferView_18316", + "byteOffset": 4079160, + "byteStride": 12, + "count": 456, + "max": [ + 0.195096, + 0.195236, + 0.341539 + ], + "min": [ + 0.0487921, + 0.0488988, + 0.292702 + ], + "type": 35665 + }, + "accessor_10563": { + "bufferView": "bufferView_18316", + "byteOffset": 4084632, + "byteStride": 12, + "count": 456, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10579": { + "bufferView": "bufferView_18315", + "byteOffset": 502956, + "byteStride": 0, + "count": 3654, + "type": 5123 + }, + "accessor_1058": { + "bufferView": "bufferView_18316", + "byteOffset": 3968760, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_10581": { + "bufferView": "bufferView_18316", + "byteOffset": 4090104, + "byteStride": 12, + "count": 3121, + "max": [ + 0.975378, + 0.24417, + 0.292804 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10583": { + "bufferView": "bufferView_18316", + "byteOffset": 4127556, + "byteStride": 12, + "count": 3121, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10599": { + "bufferView": "bufferView_18315", + "byteOffset": 510264, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1060": { + "bufferView": "bufferView_18316", + "byteOffset": 3971544, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10601": { + "bufferView": "bufferView_18316", + "byteOffset": 4165008, + "byteStride": 12, + "count": 464, + "max": [ + 0.682776, + 0.195363, + 0.341508 + ], + "min": [ + 0.536472, + 0.0490258, + 0.292655 + ], + "type": 35665 + }, + "accessor_10603": { + "bufferView": "bufferView_18316", + "byteOffset": 4170576, + "byteStride": 12, + "count": 464, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10619": { + "bufferView": "bufferView_18315", + "byteOffset": 511416, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10621": { + "bufferView": "bufferView_18316", + "byteOffset": 4176144, + "byteStride": 12, + "count": 232, + "max": [ + 0.780312, + 0.170882, + 0.0732676 + ], + "min": [ + 0.682746, + 0.0733272, + 4.95173e-05 + ], + "type": 35665 + }, + "accessor_10623": { + "bufferView": "bufferView_18316", + "byteOffset": 4178928, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10639": { + "bufferView": "bufferView_18315", + "byteOffset": 511992, + "byteStride": 0, + "count": 1176, + "type": 5123 + }, + "accessor_10641": { + "bufferView": "bufferView_18316", + "byteOffset": 4181712, + "byteStride": 12, + "count": 1032, + "max": [ + 0.585235, + 0.244052, + 0.268389 + ], + "min": [ + 0.390083, + 0.000120632, + 0.073213 + ], + "type": 35665 + }, + "accessor_10643": { + "bufferView": "bufferView_18316", + "byteOffset": 4194096, + "byteStride": 12, + "count": 1032, + "max": [ + 0.980948, + 1, + 0.980887 + ], + "min": [ + -0.980948, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10659": { + "bufferView": "bufferView_18315", + "byteOffset": 514344, + "byteStride": 0, + "count": 216, + "type": 5123 + }, + "accessor_10661": { + "bufferView": "bufferView_18316", + "byteOffset": 4206480, + "byteStride": 12, + "count": 204, + "max": [ + 0.585267, + 0.195298, + 0.243972 + ], + "min": [ + 0.390111, + 0.0488582, + 0.0732155 + ], + "type": 35665 + }, + "accessor_10663": { + "bufferView": "bufferView_18316", + "byteOffset": 4208928, + "byteStride": 12, + "count": 204, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10679": { + "bufferView": "bufferView_18315", + "byteOffset": 514776, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10681": { + "bufferView": "bufferView_18316", + "byteOffset": 4211376, + "byteStride": 12, + "count": 459, + "max": [ + 0.926616, + 0.195411, + 0.341478 + ], + "min": [ + 0.780312, + 0.0491045, + 0.292641 + ], + "type": 35665 + }, + "accessor_10683": { + "bufferView": "bufferView_18316", + "byteOffset": 4216884, + "byteStride": 12, + "count": 459, + "max": [ + 0.981, + 0.98106, + 1 + ], + "min": [ + -0.981, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10699": { + "bufferView": "bufferView_18315", + "byteOffset": 516384, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10701": { + "bufferView": "bufferView_18316", + "byteOffset": 4227384, + "byteStride": 12, + "count": 472, + "max": [ + 0.438936, + 0.195284, + 0.341524 + ], + "min": [ + 0.292632, + 0.0489775, + 0.292672 + ], + "type": 35665 + }, + "accessor_10703": { + "bufferView": "bufferView_18316", + "byteOffset": 4233048, + "byteStride": 12, + "count": 472, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10719": { + "bufferView": "bufferView_18315", + "byteOffset": 517536, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10721": { + "bufferView": "bufferView_18316", + "byteOffset": 4238712, + "byteStride": 12, + "count": 232, + "max": [ + 0.292693, + 0.170755, + 0.0732981 + ], + "min": [ + 0.195127, + 0.0732002, + 8.00354e-05 + ], + "type": 35665 + }, + "accessor_10723": { + "bufferView": "bufferView_18316", + "byteOffset": 4241496, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10739": { + "bufferView": "bufferView_18315", + "byteOffset": 518112, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10741": { + "bufferView": "bufferView_18316", + "byteOffset": 4244280, + "byteStride": 12, + "count": 232, + "max": [ + 0.536472, + 0.170804, + 0.0732676 + ], + "min": [ + 0.438906, + 0.0732485, + 4.95478e-05 + ], + "type": 35665 + }, + "accessor_10743": { + "bufferView": "bufferView_18316", + "byteOffset": 4247064, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10753": { + "bufferView": "bufferView_18315", + "byteOffset": 518688, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_10755": { + "bufferView": "bufferView_18316", + "byteOffset": 4249848, + "byteStride": 12, + "count": 3, + "max": [ + 0.585267, + 0.048994, + 0.243942 + ], + "min": [ + 0.585206, + 0.0489089, + 0.0732841 + ], + "type": 35665 + }, + "accessor_1076": { + "bufferView": "bufferView_18315", + "byteOffset": 515928, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_10765": { + "bufferView": "bufferView_18315", + "byteOffset": 518696, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10767": { + "bufferView": "bufferView_18316", + "byteOffset": 4249884, + "byteStride": 12, + "count": 2, + "max": [ + 0.341488, + 0.0489458, + 0.243972 + ], + "min": [ + 0.341457, + 0.0488963, + 0.170851 + ], + "type": 35665 + }, + "accessor_1078": { + "bufferView": "bufferView_18316", + "byteOffset": 4222392, + "byteStride": 12, + "count": 208, + "max": [ + 2.53597, + 0.195177, + 0.243923 + ], + "min": [ + 2.34081, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_10783": { + "bufferView": "bufferView_18315", + "byteOffset": 518700, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10785": { + "bufferView": "bufferView_18316", + "byteOffset": 4249908, + "byteStride": 12, + "count": 456, + "max": [ + 0.195096, + 0.195236, + 0.341539 + ], + "min": [ + 0.0487921, + 0.0488988, + 0.292702 + ], + "type": 35665 + }, + "accessor_10787": { + "bufferView": "bufferView_18316", + "byteOffset": 4255380, + "byteStride": 12, + "count": 456, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_1080": { + "bufferView": "bufferView_18316", + "byteOffset": 4224888, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10803": { + "bufferView": "bufferView_18315", + "byteOffset": 519852, + "byteStride": 0, + "count": 3654, + "type": 5123 + }, + "accessor_10805": { + "bufferView": "bufferView_18316", + "byteOffset": 4260852, + "byteStride": 12, + "count": 3121, + "max": [ + 0.975378, + 0.24417, + 0.292804 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_10807": { + "bufferView": "bufferView_18316", + "byteOffset": 4298304, + "byteStride": 12, + "count": 3121, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_10823": { + "bufferView": "bufferView_18315", + "byteOffset": 527160, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10825": { + "bufferView": "bufferView_18316", + "byteOffset": 4335756, + "byteStride": 12, + "count": 464, + "max": [ + 0.682776, + 0.195363, + 0.341508 + ], + "min": [ + 0.536472, + 0.0490258, + 0.292655 + ], + "type": 35665 + }, + "accessor_10827": { + "bufferView": "bufferView_18316", + "byteOffset": 4341324, + "byteStride": 12, + "count": 464, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10843": { + "bufferView": "bufferView_18315", + "byteOffset": 528312, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10845": { + "bufferView": "bufferView_18316", + "byteOffset": 4346892, + "byteStride": 12, + "count": 232, + "max": [ + 0.780312, + 0.170882, + 0.0732676 + ], + "min": [ + 0.682746, + 0.0733272, + 4.95173e-05 + ], + "type": 35665 + }, + "accessor_10847": { + "bufferView": "bufferView_18316", + "byteOffset": 4349676, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10863": { + "bufferView": "bufferView_18315", + "byteOffset": 528888, + "byteStride": 0, + "count": 1176, + "type": 5123 + }, + "accessor_10865": { + "bufferView": "bufferView_18316", + "byteOffset": 4352460, + "byteStride": 12, + "count": 1032, + "max": [ + 0.585235, + 0.244052, + 0.268389 + ], + "min": [ + 0.390083, + 0.000120632, + 0.073213 + ], + "type": 35665 + }, + "accessor_10867": { + "bufferView": "bufferView_18316", + "byteOffset": 4364844, + "byteStride": 12, + "count": 1032, + "max": [ + 0.980948, + 1, + 0.980887 + ], + "min": [ + -0.980948, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10883": { + "bufferView": "bufferView_18315", + "byteOffset": 531240, + "byteStride": 0, + "count": 216, + "type": 5123 + }, + "accessor_10885": { + "bufferView": "bufferView_18316", + "byteOffset": 4377228, + "byteStride": 12, + "count": 204, + "max": [ + 0.585267, + 0.195298, + 0.243972 + ], + "min": [ + 0.390111, + 0.0488582, + 0.0732155 + ], + "type": 35665 + }, + "accessor_10887": { + "bufferView": "bufferView_18316", + "byteOffset": 4379676, + "byteStride": 12, + "count": 204, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_10903": { + "bufferView": "bufferView_18315", + "byteOffset": 532824, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10905": { + "bufferView": "bufferView_18316", + "byteOffset": 4389804, + "byteStride": 12, + "count": 459, + "max": [ + 0.926616, + 0.195411, + 0.341478 + ], + "min": [ + 0.780312, + 0.0491045, + 0.292641 + ], + "type": 35665 + }, + "accessor_10907": { + "bufferView": "bufferView_18316", + "byteOffset": 4395312, + "byteStride": 12, + "count": 459, + "max": [ + 0.981, + 0.98106, + 1 + ], + "min": [ + -0.981, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10923": { + "bufferView": "bufferView_18315", + "byteOffset": 533976, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10925": { + "bufferView": "bufferView_18316", + "byteOffset": 4400820, + "byteStride": 12, + "count": 472, + "max": [ + 0.438936, + 0.195284, + 0.341524 + ], + "min": [ + 0.292632, + 0.0489775, + 0.292672 + ], + "type": 35665 + }, + "accessor_10927": { + "bufferView": "bufferView_18316", + "byteOffset": 4406484, + "byteStride": 12, + "count": 472, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_10943": { + "bufferView": "bufferView_18315", + "byteOffset": 535128, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10945": { + "bufferView": "bufferView_18316", + "byteOffset": 4412148, + "byteStride": 12, + "count": 232, + "max": [ + 0.292693, + 0.170755, + 0.0732981 + ], + "min": [ + 0.195127, + 0.0732002, + 8.00354e-05 + ], + "type": 35665 + }, + "accessor_10947": { + "bufferView": "bufferView_18316", + "byteOffset": 4414932, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_1096": { + "bufferView": "bufferView_18315", + "byteOffset": 531672, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_10963": { + "bufferView": "bufferView_18315", + "byteOffset": 535704, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_10965": { + "bufferView": "bufferView_18316", + "byteOffset": 4417716, + "byteStride": 12, + "count": 232, + "max": [ + 0.536472, + 0.170804, + 0.0732676 + ], + "min": [ + 0.438906, + 0.0732485, + 4.95478e-05 + ], + "type": 35665 + }, + "accessor_10967": { + "bufferView": "bufferView_18316", + "byteOffset": 4420500, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_10977": { + "bufferView": "bufferView_18315", + "byteOffset": 536280, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_10979": { + "bufferView": "bufferView_18316", + "byteOffset": 4423284, + "byteStride": 12, + "count": 3, + "max": [ + 0.585267, + 0.048994, + 0.243942 + ], + "min": [ + 0.585206, + 0.0489089, + 0.0732841 + ], + "type": 35665 + }, + "accessor_1098": { + "bufferView": "bufferView_18316", + "byteOffset": 4382124, + "byteStride": 12, + "count": 320, + "max": [ + 1.90195, + 0.195224, + 0.341492 + ], + "min": [ + 1.75565, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_10989": { + "bufferView": "bufferView_18315", + "byteOffset": 536288, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_10991": { + "bufferView": "bufferView_18316", + "byteOffset": 4423320, + "byteStride": 12, + "count": 2, + "max": [ + 0.341488, + 0.0489458, + 0.243972 + ], + "min": [ + 0.341457, + 0.0488963, + 0.170851 + ], + "type": 35665 + }, + "accessor_1100": { + "bufferView": "bufferView_18316", + "byteOffset": 4385964, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_11007": { + "bufferView": "bufferView_18315", + "byteOffset": 536292, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11009": { + "bufferView": "bufferView_18316", + "byteOffset": 4423344, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_11011": { + "bufferView": "bufferView_18316", + "byteOffset": 4427184, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_11027": { + "bufferView": "bufferView_18315", + "byteOffset": 537444, + "byteStride": 0, + "count": 1578, + "type": 5123 + }, + "accessor_11029": { + "bufferView": "bufferView_18316", + "byteOffset": 4431024, + "byteStride": 12, + "count": 1268, + "max": [ + 0.48768, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_11031": { + "bufferView": "bufferView_18316", + "byteOffset": 4446240, + "byteStride": 12, + "count": 1268, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_11047": { + "bufferView": "bufferView_18315", + "byteOffset": 540600, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11049": { + "bufferView": "bufferView_18316", + "byteOffset": 4461456, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_11051": { + "bufferView": "bufferView_18316", + "byteOffset": 4465296, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_11067": { + "bufferView": "bufferView_18315", + "byteOffset": 541752, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_11069": { + "bufferView": "bufferView_18316", + "byteOffset": 4469136, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_11071": { + "bufferView": "bufferView_18316", + "byteOffset": 4471632, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_11087": { + "bufferView": "bufferView_18315", + "byteOffset": 543360, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11089": { + "bufferView": "bufferView_18316", + "byteOffset": 4481808, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_11091": { + "bufferView": "bufferView_18316", + "byteOffset": 4484592, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_11101": { + "bufferView": "bufferView_18315", + "byteOffset": 543936, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11103": { + "bufferView": "bufferView_18316", + "byteOffset": 4487376, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_11119": { + "bufferView": "bufferView_18315", + "byteOffset": 543940, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11121": { + "bufferView": "bufferView_18316", + "byteOffset": 4487400, + "byteStride": 12, + "count": 456, + "max": [ + 0.195096, + 0.195236, + 0.341539 + ], + "min": [ + 0.0487921, + 0.0488988, + 0.292702 + ], + "type": 35665 + }, + "accessor_11123": { + "bufferView": "bufferView_18316", + "byteOffset": 4492872, + "byteStride": 12, + "count": 456, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_11139": { + "bufferView": "bufferView_18315", + "byteOffset": 545092, + "byteStride": 0, + "count": 3654, + "type": 5123 + }, + "accessor_11141": { + "bufferView": "bufferView_18316", + "byteOffset": 4498344, + "byteStride": 12, + "count": 3121, + "max": [ + 0.975378, + 0.24417, + 0.292804 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_11143": { + "bufferView": "bufferView_18316", + "byteOffset": 4535796, + "byteStride": 12, + "count": 3121, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_11159": { + "bufferView": "bufferView_18315", + "byteOffset": 552400, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1116": { + "bufferView": "bufferView_18315", + "byteOffset": 542208, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11161": { + "bufferView": "bufferView_18316", + "byteOffset": 4573248, + "byteStride": 12, + "count": 464, + "max": [ + 0.682776, + 0.195363, + 0.341508 + ], + "min": [ + 0.536472, + 0.0490258, + 0.292655 + ], + "type": 35665 + }, + "accessor_11163": { + "bufferView": "bufferView_18316", + "byteOffset": 4578816, + "byteStride": 12, + "count": 464, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_11179": { + "bufferView": "bufferView_18315", + "byteOffset": 553552, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1118": { + "bufferView": "bufferView_18316", + "byteOffset": 4474128, + "byteStride": 12, + "count": 320, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_11181": { + "bufferView": "bufferView_18316", + "byteOffset": 4584384, + "byteStride": 12, + "count": 232, + "max": [ + 0.780312, + 0.170882, + 0.0732676 + ], + "min": [ + 0.682746, + 0.0733272, + 4.95173e-05 + ], + "type": 35665 + }, + "accessor_11183": { + "bufferView": "bufferView_18316", + "byteOffset": 4587168, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_11199": { + "bufferView": "bufferView_18315", + "byteOffset": 554128, + "byteStride": 0, + "count": 1176, + "type": 5123 + }, + "accessor_1120": { + "bufferView": "bufferView_18316", + "byteOffset": 4477968, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_11201": { + "bufferView": "bufferView_18316", + "byteOffset": 4589952, + "byteStride": 12, + "count": 1032, + "max": [ + 0.585235, + 0.244052, + 0.268389 + ], + "min": [ + 0.390083, + 0.000120632, + 0.073213 + ], + "type": 35665 + }, + "accessor_11203": { + "bufferView": "bufferView_18316", + "byteOffset": 4602336, + "byteStride": 12, + "count": 1032, + "max": [ + 0.980948, + 1, + 0.980887 + ], + "min": [ + -0.980948, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_11219": { + "bufferView": "bufferView_18315", + "byteOffset": 556480, + "byteStride": 0, + "count": 216, + "type": 5123 + }, + "accessor_11221": { + "bufferView": "bufferView_18316", + "byteOffset": 4614720, + "byteStride": 12, + "count": 204, + "max": [ + 0.585267, + 0.195298, + 0.243972 + ], + "min": [ + 0.390111, + 0.0488582, + 0.0732155 + ], + "type": 35665 + }, + "accessor_11223": { + "bufferView": "bufferView_18316", + "byteOffset": 4617168, + "byteStride": 12, + "count": 204, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_11239": { + "bufferView": "bufferView_18315", + "byteOffset": 556912, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11241": { + "bufferView": "bufferView_18316", + "byteOffset": 4619616, + "byteStride": 12, + "count": 459, + "max": [ + 0.926616, + 0.195411, + 0.341478 + ], + "min": [ + 0.780312, + 0.0491045, + 0.292641 + ], + "type": 35665 + }, + "accessor_11243": { + "bufferView": "bufferView_18316", + "byteOffset": 4625124, + "byteStride": 12, + "count": 459, + "max": [ + 0.981, + 0.98106, + 1 + ], + "min": [ + -0.981, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_11259": { + "bufferView": "bufferView_18315", + "byteOffset": 558064, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11261": { + "bufferView": "bufferView_18316", + "byteOffset": 4630632, + "byteStride": 12, + "count": 472, + "max": [ + 0.438936, + 0.195284, + 0.341524 + ], + "min": [ + 0.292632, + 0.0489775, + 0.292672 + ], + "type": 35665 + }, + "accessor_11263": { + "bufferView": "bufferView_18316", + "byteOffset": 4636296, + "byteStride": 12, + "count": 472, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_11279": { + "bufferView": "bufferView_18315", + "byteOffset": 559672, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11281": { + "bufferView": "bufferView_18316", + "byteOffset": 4646952, + "byteStride": 12, + "count": 232, + "max": [ + 0.292693, + 0.170755, + 0.0732981 + ], + "min": [ + 0.195127, + 0.0732002, + 8.00354e-05 + ], + "type": 35665 + }, + "accessor_11283": { + "bufferView": "bufferView_18316", + "byteOffset": 4649736, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_11299": { + "bufferView": "bufferView_18315", + "byteOffset": 560248, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11301": { + "bufferView": "bufferView_18316", + "byteOffset": 4652520, + "byteStride": 12, + "count": 232, + "max": [ + 0.536472, + 0.170804, + 0.0732676 + ], + "min": [ + 0.438906, + 0.0732485, + 4.95478e-05 + ], + "type": 35665 + }, + "accessor_11303": { + "bufferView": "bufferView_18316", + "byteOffset": 4655304, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_11313": { + "bufferView": "bufferView_18315", + "byteOffset": 561280, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_11315": { + "bufferView": "bufferView_18316", + "byteOffset": 4663080, + "byteStride": 12, + "count": 3, + "max": [ + 0.585267, + 0.048994, + 0.243942 + ], + "min": [ + 0.585206, + 0.0489089, + 0.0732841 + ], + "type": 35665 + }, + "accessor_11325": { + "bufferView": "bufferView_18315", + "byteOffset": 561288, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11327": { + "bufferView": "bufferView_18316", + "byteOffset": 4663116, + "byteStride": 12, + "count": 2, + "max": [ + 0.341488, + 0.0489458, + 0.243972 + ], + "min": [ + 0.341457, + 0.0488963, + 0.170851 + ], + "type": 35665 + }, + "accessor_11343": { + "bufferView": "bufferView_18315", + "byteOffset": 561292, + "byteStride": 0, + "count": 360, + "type": 5123 + }, + "accessor_11345": { + "bufferView": "bufferView_18316", + "byteOffset": 4663140, + "byteStride": 12, + "count": 192, + "max": [ + 1.95069, + 0.146304, + 0.146304 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_11347": { + "bufferView": "bufferView_18316", + "byteOffset": 4665444, + "byteStride": 12, + "count": 192, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1136": { + "bufferView": "bufferView_18315", + "byteOffset": 559216, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_11363": { + "bufferView": "bufferView_18315", + "byteOffset": 562012, + "byteStride": 0, + "count": 36, + "type": 5123 + }, + "accessor_11365": { + "bufferView": "bufferView_18316", + "byteOffset": 4667748, + "byteStride": 12, + "count": 36, + "max": [ + 0.180472, + 0.560832, + 0.414528 + ], + "min": [ + 0.12195, + 0.506943, + 0.36573 + ], + "type": 35665 + }, + "accessor_11367": { + "bufferView": "bufferView_18316", + "byteOffset": 4668180, + "byteStride": 12, + "count": 36, + "max": [ + 0.632063, + 0.758455, + 1 + ], + "min": [ + -0.632063, + -0.758455, + -1 + ], + "type": 35665 + }, + "accessor_1138": { + "bufferView": "bufferView_18316", + "byteOffset": 4641960, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_11383": { + "bufferView": "bufferView_18315", + "byteOffset": 562084, + "byteStride": 0, + "count": 72, + "type": 5123 + }, + "accessor_11385": { + "bufferView": "bufferView_18316", + "byteOffset": 4668612, + "byteStride": 12, + "count": 64, + "max": [ + 0.256062, + 0.692993, + 0.438912 + ], + "min": [ + 0.170718, + 0.502067, + 0.341376 + ], + "type": 35665 + }, + "accessor_11387": { + "bufferView": "bufferView_18316", + "byteOffset": 4669380, + "byteStride": 12, + "count": 64, + "max": [ + 0.979365, + 0.197985, + 1 + ], + "min": [ + -0.979365, + -0.197985, + -1 + ], + "type": 35665 + }, + "accessor_1140": { + "bufferView": "bufferView_18316", + "byteOffset": 4644456, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_11403": { + "bufferView": "bufferView_18315", + "byteOffset": 562228, + "byteStride": 0, + "count": 36, + "type": 5123 + }, + "accessor_11405": { + "bufferView": "bufferView_18316", + "byteOffset": 4670148, + "byteStride": 12, + "count": 36, + "max": [ + 0.180472, + 0.352836, + 0.301142 + ], + "min": [ + 0.12195, + 0.286268, + 0.234574 + ], + "type": 35665 + }, + "accessor_11407": { + "bufferView": "bufferView_18316", + "byteOffset": 4670580, + "byteStride": 12, + "count": 36, + "max": [ + 0.63159, + 0.8658, + 0.73629 + ], + "min": [ + -0.63159, + -0.8658, + -0.73629 + ], + "type": 35665 + }, + "accessor_11423": { + "bufferView": "bufferView_18315", + "byteOffset": 562300, + "byteStride": 0, + "count": 72, + "type": 5123 + }, + "accessor_11425": { + "bufferView": "bufferView_18316", + "byteOffset": 4671012, + "byteStride": 12, + "count": 71, + "max": [ + 0.256062, + 0.376367, + 0.317602 + ], + "min": [ + 0.170718, + 0.201534, + 0.112197 + ], + "type": 35665 + }, + "accessor_11427": { + "bufferView": "bufferView_18316", + "byteOffset": 4671864, + "byteStride": 12, + "count": 71, + "max": [ + 0.979363, + 0.865953, + 0.500126 + ], + "min": [ + -0.979363, + -0.865953, + -0.500126 + ], + "type": 35665 + }, + "accessor_11443": { + "bufferView": "bufferView_18315", + "byteOffset": 562444, + "byteStride": 0, + "count": 36, + "type": 5123 + }, + "accessor_11445": { + "bufferView": "bufferView_18316", + "byteOffset": 4672716, + "byteStride": 12, + "count": 32, + "max": [ + 0.180442, + 0.352836, + 0.545714 + ], + "min": [ + 0.12192, + 0.286268, + 0.479115 + ], + "type": 35665 + }, + "accessor_11447": { + "bufferView": "bufferView_18316", + "byteOffset": 4673100, + "byteStride": 12, + "count": 32, + "max": [ + 0.632028, + 0.865737, + 0.735933 + ], + "min": [ + -0.632028, + -0.865737, + -0.735933 + ], + "type": 35665 + }, + "accessor_11463": { + "bufferView": "bufferView_18315", + "byteOffset": 562516, + "byteStride": 0, + "count": 72, + "type": 5123 + }, + "accessor_11465": { + "bufferView": "bufferView_18316", + "byteOffset": 4673484, + "byteStride": 12, + "count": 72, + "max": [ + 0.256032, + 0.376367, + 0.668091 + ], + "min": [ + 0.170688, + 0.201534, + 0.462686 + ], + "type": 35665 + }, + "accessor_11467": { + "bufferView": "bufferView_18316", + "byteOffset": 4674348, + "byteStride": 12, + "count": 72, + "max": [ + 0.97938, + 0.865953, + 0.500126 + ], + "min": [ + -0.97938, + -0.865953, + -0.500126 + ], + "type": 35665 + }, + "accessor_11483": { + "bufferView": "bufferView_18315", + "byteOffset": 563812, + "byteStride": 0, + "count": 1536, + "type": 5123 + }, + "accessor_11485": { + "bufferView": "bufferView_18316", + "byteOffset": 4682892, + "byteStride": 12, + "count": 1536, + "max": [ + 0.280477, + 0.780288, + 0.780288 + ], + "min": [ + 0.18288, + 0, + 0 + ], + "type": 35665 + }, + "accessor_11487": { + "bufferView": "bufferView_18316", + "byteOffset": 4701324, + "byteStride": 12, + "count": 1536, + "max": [ + 0.920413, + 0.907324, + 0.907308 + ], + "min": [ + -0.920413, + -0.907324, + -0.907308 + ], + "type": 35665 + }, + "accessor_11503": { + "bufferView": "bufferView_18315", + "byteOffset": 566884, + "byteStride": 0, + "count": 1632, + "type": 5123 + }, + "accessor_11505": { + "bufferView": "bufferView_18316", + "byteOffset": 4719756, + "byteStride": 12, + "count": 1013, + "max": [ + 0.280446, + 0.512034, + 0.512034 + ], + "min": [ + 0, + 0.268254, + 0.268224 + ], + "type": 35665 + }, + "accessor_11507": { + "bufferView": "bufferView_18316", + "byteOffset": 4731912, + "byteStride": 12, + "count": 1013, + "max": [ + 1, + 0.980826, + 0.980826 + ], + "min": [ + -1, + -0.980826, + -0.980826 + ], + "type": 35665 + }, + "accessor_11517": { + "bufferView": "bufferView_18315", + "byteOffset": 570148, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_11519": { + "bufferView": "bufferView_18316", + "byteOffset": 4744068, + "byteStride": 12, + "count": 3, + "max": [ + 0.231678, + 0.414528, + 0.315803 + ], + "min": [ + 0.231678, + 0.36576, + 0.310926 + ], + "type": 35665 + }, + "accessor_11529": { + "bufferView": "bufferView_18315", + "byteOffset": 570156, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_11531": { + "bufferView": "bufferView_18316", + "byteOffset": 4744104, + "byteStride": 12, + "count": 4, + "max": [ + 0.231678, + 0.414528, + 0.45723 + ], + "min": [ + 0.231678, + 0.36576, + 0.438912 + ], + "type": 35665 + }, + "accessor_11541": { + "bufferView": "bufferView_18315", + "byteOffset": 570168, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_11543": { + "bufferView": "bufferView_18316", + "byteOffset": 4744152, + "byteStride": 12, + "count": 3, + "max": [ + 0.231678, + 0.321869, + 0.408462 + ], + "min": [ + 0.231678, + 0.316992, + 0.359694 + ], + "type": 35665 + }, + "accessor_11553": { + "bufferView": "bufferView_18315", + "byteOffset": 570176, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_11555": { + "bufferView": "bufferView_18316", + "byteOffset": 4744188, + "byteStride": 12, + "count": 3, + "max": [ + 0.231678, + 0.463296, + 0.408462 + ], + "min": [ + 0.231678, + 0.458419, + 0.359694 + ], + "type": 35665 + }, + "accessor_1156": { + "bufferView": "bufferView_18315", + "byteOffset": 562660, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_11565": { + "bufferView": "bufferView_18315", + "byteOffset": 570184, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11567": { + "bufferView": "bufferView_18316", + "byteOffset": 4744224, + "byteStride": 12, + "count": 2, + "max": [ + 0.231678, + 0.390144, + 0.341376 + ], + "min": [ + 0.231678, + 0.390144, + 0.316992 + ], + "type": 35665 + }, + "accessor_1158": { + "bufferView": "bufferView_18316", + "byteOffset": 4675212, + "byteStride": 12, + "count": 320, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_11583": { + "bufferView": "bufferView_18315", + "byteOffset": 570188, + "byteStride": 0, + "count": 2388, + "type": 5123 + }, + "accessor_11585": { + "bufferView": "bufferView_18316", + "byteOffset": 4744248, + "byteStride": 12, + "count": 2123, + "max": [ + 0.243901, + 0.219456, + 0.219486 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_11587": { + "bufferView": "bufferView_18316", + "byteOffset": 4769724, + "byteStride": 12, + "count": 2123, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_11597": { + "bufferView": "bufferView_18315", + "byteOffset": 574964, + "byteStride": 0, + "count": 34, + "type": 5123 + }, + "accessor_11599": { + "bufferView": "bufferView_18316", + "byteOffset": 4795200, + "byteStride": 12, + "count": 17, + "max": [ + 3.048e-05, + 0.18291, + 0.18291 + ], + "min": [ + 0, + 0.0366065, + 0.0366065 + ], + "type": 35665 + }, + "accessor_116": { + "bufferView": "bufferView_18315", + "byteOffset": 560824, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_1160": { + "bufferView": "bufferView_18316", + "byteOffset": 4679052, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_11609": { + "bufferView": "bufferView_18315", + "byteOffset": 575032, + "byteStride": 0, + "count": 48, + "type": 5123 + }, + "accessor_11611": { + "bufferView": "bufferView_18316", + "byteOffset": 4795404, + "byteStride": 12, + "count": 24, + "max": [ + 3.048e-05, + 0.219486, + 0.219486 + ], + "min": [ + 3.048e-05, + 3.048e-05, + 3.048e-05 + ], + "type": 35665 + }, + "accessor_11627": { + "bufferView": "bufferView_18315", + "byteOffset": 575128, + "byteStride": 0, + "count": 1056, + "type": 5123 + }, + "accessor_11629": { + "bufferView": "bufferView_18316", + "byteOffset": 4795692, + "byteStride": 12, + "count": 683, + "max": [ + 0.24384, + 0.2553, + 0.2553 + ], + "min": [ + 0, + 0.0602285, + 0.0602285 + ], + "type": 35665 + }, + "accessor_11631": { + "bufferView": "bufferView_18316", + "byteOffset": 4803888, + "byteStride": 12, + "count": 683, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_11647": { + "bufferView": "bufferView_18315", + "byteOffset": 577240, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11649": { + "bufferView": "bufferView_18316", + "byteOffset": 4812084, + "byteStride": 12, + "count": 40, + "max": [ + 0.195072, + 0.0643738, + 0.18605 + ], + "min": [ + 0.048768, + 0, + 0.129479 + ], + "type": 35665 + }, + "accessor_11651": { + "bufferView": "bufferView_18316", + "byteOffset": 4812564, + "byteStride": 12, + "count": 40, + "max": [ + 1, + 1, + 0.980794 + ], + "min": [ + -1, + -1, + -0.980794 + ], + "type": 35665 + }, + "accessor_11667": { + "bufferView": "bufferView_18315", + "byteOffset": 577364, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11669": { + "bufferView": "bufferView_18316", + "byteOffset": 4813068, + "byteStride": 12, + "count": 48, + "max": [ + 0.195072, + 0.111801, + 0.280294 + ], + "min": [ + 0.048768, + 0.0352349, + 0.203728 + ], + "type": 35665 + }, + "accessor_11671": { + "bufferView": "bufferView_18316", + "byteOffset": 4813644, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 0.831765, + 0.831765 + ], + "min": [ + -1, + -0.831765, + -0.831765 + ], + "type": 35665 + }, + "accessor_11687": { + "bufferView": "bufferView_18315", + "byteOffset": 577484, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11689": { + "bufferView": "bufferView_18316", + "byteOffset": 4814220, + "byteStride": 12, + "count": 40, + "max": [ + 0.195072, + 0.18605, + 0.315529 + ], + "min": [ + 0.048768, + 0.129479, + 0.251155 + ], + "type": 35665 + }, + "accessor_11691": { + "bufferView": "bufferView_18316", + "byteOffset": 4814700, + "byteStride": 12, + "count": 40, + "max": [ + 1, + 0.980794, + 1 + ], + "min": [ + -1, + -0.980794, + -1 + ], + "type": 35665 + }, + "accessor_1170": { + "bufferView": "bufferView_18315", + "byteOffset": 577360, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11707": { + "bufferView": "bufferView_18315", + "byteOffset": 577604, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11709": { + "bufferView": "bufferView_18316", + "byteOffset": 4815180, + "byteStride": 12, + "count": 44, + "max": [ + 0.195072, + 0.280294, + 0.280294 + ], + "min": [ + 0.048768, + 0.203728, + 0.203728 + ], + "type": 35665 + }, + "accessor_11711": { + "bufferView": "bufferView_18316", + "byteOffset": 4815708, + "byteStride": 12, + "count": 44, + "max": [ + 1, + 0.831765, + 0.831765 + ], + "min": [ + -1, + -0.831765, + -0.831765 + ], + "type": 35665 + }, + "accessor_1172": { + "bufferView": "bufferView_18316", + "byteOffset": 4813044, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_11727": { + "bufferView": "bufferView_18315", + "byteOffset": 577724, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11729": { + "bufferView": "bufferView_18316", + "byteOffset": 4816236, + "byteStride": 12, + "count": 48, + "max": [ + 0.195072, + 0.315529, + 0.18605 + ], + "min": [ + 0.048768, + 0.251155, + 0.129479 + ], + "type": 35665 + }, + "accessor_11731": { + "bufferView": "bufferView_18316", + "byteOffset": 4816812, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 1, + 0.980794 + ], + "min": [ + -1, + -1, + -0.980794 + ], + "type": 35665 + }, + "accessor_11747": { + "bufferView": "bufferView_18315", + "byteOffset": 577844, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11749": { + "bufferView": "bufferView_18316", + "byteOffset": 4817388, + "byteStride": 12, + "count": 44, + "max": [ + 0.195072, + 0.280294, + 0.111801 + ], + "min": [ + 0.048768, + 0.203728, + 0.0352349 + ], + "type": 35665 + }, + "accessor_11751": { + "bufferView": "bufferView_18316", + "byteOffset": 4817916, + "byteStride": 12, + "count": 44, + "max": [ + 1, + 0.831765, + 0.831765 + ], + "min": [ + -1, + -0.831765, + -0.831765 + ], + "type": 35665 + }, + "accessor_11767": { + "bufferView": "bufferView_18315", + "byteOffset": 577964, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11769": { + "bufferView": "bufferView_18316", + "byteOffset": 4818444, + "byteStride": 12, + "count": 48, + "max": [ + 0.195072, + 0.18605, + 0.0643738 + ], + "min": [ + 0.048768, + 0.129479, + 0 + ], + "type": 35665 + }, + "accessor_11771": { + "bufferView": "bufferView_18316", + "byteOffset": 4819020, + "byteStride": 12, + "count": 48, + "max": [ + 1, + 0.980794, + 1 + ], + "min": [ + -1, + -0.980794, + -1 + ], + "type": 35665 + }, + "accessor_11787": { + "bufferView": "bufferView_18315", + "byteOffset": 578084, + "byteStride": 0, + "count": 60, + "type": 5123 + }, + "accessor_11789": { + "bufferView": "bufferView_18316", + "byteOffset": 4819596, + "byteStride": 12, + "count": 43, + "max": [ + 0.195072, + 0.111801, + 0.111801 + ], + "min": [ + 0.048768, + 0.0352349, + 0.0352349 + ], + "type": 35665 + }, + "accessor_11791": { + "bufferView": "bufferView_18316", + "byteOffset": 4820112, + "byteStride": 12, + "count": 43, + "max": [ + 1, + 0.831765, + 0.831765 + ], + "min": [ + -1, + -0.831765, + -0.831765 + ], + "type": 35665 + }, + "accessor_118": { + "bufferView": "bufferView_18316", + "byteOffset": 4658088, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_11807": { + "bufferView": "bufferView_18315", + "byteOffset": 578204, + "byteStride": 0, + "count": 2388, + "type": 5123 + }, + "accessor_11809": { + "bufferView": "bufferView_18316", + "byteOffset": 4820628, + "byteStride": 12, + "count": 2123, + "max": [ + 0.243901, + 0.219456, + 0.219486 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_11811": { + "bufferView": "bufferView_18316", + "byteOffset": 4846104, + "byteStride": 12, + "count": 2123, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1182": { + "bufferView": "bufferView_18315", + "byteOffset": 583144, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11821": { + "bufferView": "bufferView_18315", + "byteOffset": 582980, + "byteStride": 0, + "count": 34, + "type": 5123 + }, + "accessor_11823": { + "bufferView": "bufferView_18316", + "byteOffset": 4871580, + "byteStride": 12, + "count": 17, + "max": [ + 3.048e-05, + 0.18291, + 0.18291 + ], + "min": [ + 0, + 0.0366065, + 0.0366065 + ], + "type": 35665 + }, + "accessor_11833": { + "bufferView": "bufferView_18315", + "byteOffset": 583048, + "byteStride": 0, + "count": 48, + "type": 5123 + }, + "accessor_11835": { + "bufferView": "bufferView_18316", + "byteOffset": 4871784, + "byteStride": 12, + "count": 24, + "max": [ + 3.048e-05, + 0.219486, + 0.219486 + ], + "min": [ + 3.048e-05, + 3.048e-05, + 3.048e-05 + ], + "type": 35665 + }, + "accessor_1184": { + "bufferView": "bufferView_18316", + "byteOffset": 4872072, + "byteStride": 12, + "count": 2, + "max": [ + 2.29213, + 0.0488734, + 0.243892 + ], + "min": [ + 2.29207, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_11851": { + "bufferView": "bufferView_18315", + "byteOffset": 583148, + "byteStride": 0, + "count": 180, + "type": 5123 + }, + "accessor_11853": { + "bufferView": "bufferView_18316", + "byteOffset": 4872096, + "byteStride": 12, + "count": 118, + "max": [ + 0.244358, + 1.46353, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.0004572, + 0 + ], + "type": 35665 + }, + "accessor_11855": { + "bufferView": "bufferView_18316", + "byteOffset": 4873512, + "byteStride": 12, + "count": 118, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_11871": { + "bufferView": "bufferView_18315", + "byteOffset": 583508, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11873": { + "bufferView": "bufferView_18316", + "byteOffset": 4874928, + "byteStride": 12, + "count": 201, + "max": [ + 0.195133, + 1.41473, + 0.146304 + ], + "min": [ + 0.048829, + 1.26843, + 0.097536 + ], + "type": 35665 + }, + "accessor_11875": { + "bufferView": "bufferView_18316", + "byteOffset": 4877340, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_11891": { + "bufferView": "bufferView_18315", + "byteOffset": 584084, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11893": { + "bufferView": "bufferView_18316", + "byteOffset": 4879752, + "byteStride": 12, + "count": 197, + "max": [ + 0.195468, + 0.439369, + 0.146304 + ], + "min": [ + 0.0491642, + 0.293065, + 0.097536 + ], + "type": 35665 + }, + "accessor_11895": { + "bufferView": "bufferView_18316", + "byteOffset": 4882116, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_11911": { + "bufferView": "bufferView_18315", + "byteOffset": 584660, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11913": { + "bufferView": "bufferView_18316", + "byteOffset": 4884480, + "byteStride": 12, + "count": 202, + "max": [ + 0.195224, + 1.17089, + 0.146304 + ], + "min": [ + 0.0489204, + 1.02459, + 0.097536 + ], + "type": 35665 + }, + "accessor_11915": { + "bufferView": "bufferView_18316", + "byteOffset": 4886904, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_11931": { + "bufferView": "bufferView_18315", + "byteOffset": 585236, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11933": { + "bufferView": "bufferView_18316", + "byteOffset": 4889328, + "byteStride": 12, + "count": 206, + "max": [ + 0.195407, + 0.683209, + 0.146304 + ], + "min": [ + 0.0491033, + 0.536905, + 0.097536 + ], + "type": 35665 + }, + "accessor_11935": { + "bufferView": "bufferView_18316", + "byteOffset": 4891800, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_1194": { + "bufferView": "bufferView_18315", + "byteOffset": 586964, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_11951": { + "bufferView": "bufferView_18315", + "byteOffset": 585812, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11953": { + "bufferView": "bufferView_18316", + "byteOffset": 4894272, + "byteStride": 12, + "count": 198, + "max": [ + 0.195316, + 0.927049, + 0.146304 + ], + "min": [ + 0.0490118, + 0.780745, + 0.097536 + ], + "type": 35665 + }, + "accessor_11955": { + "bufferView": "bufferView_18316", + "byteOffset": 4896648, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_1196": { + "bufferView": "bufferView_18316", + "byteOffset": 4903968, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_11971": { + "bufferView": "bufferView_18315", + "byteOffset": 586388, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11973": { + "bufferView": "bufferView_18316", + "byteOffset": 4899024, + "byteStride": 12, + "count": 206, + "max": [ + 0.19556, + 0.195529, + 0.146304 + ], + "min": [ + 0.0492557, + 0.0492252, + 0.097536 + ], + "type": 35665 + }, + "accessor_11975": { + "bufferView": "bufferView_18316", + "byteOffset": 4901496, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_11991": { + "bufferView": "bufferView_18315", + "byteOffset": 586968, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_11993": { + "bufferView": "bufferView_18316", + "byteOffset": 4903992, + "byteStride": 12, + "count": 225, + "max": [ + 0.170962, + 0.780745, + 0.048768 + ], + "min": [ + 0.0734263, + 0.683209, + 0 + ], + "type": 35665 + }, + "accessor_11995": { + "bufferView": "bufferView_18316", + "byteOffset": 4906692, + "byteStride": 12, + "count": 225, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_120": { + "bufferView": "bufferView_18316", + "byteOffset": 4660584, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_12011": { + "bufferView": "bufferView_18315", + "byteOffset": 587544, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12013": { + "bufferView": "bufferView_18316", + "byteOffset": 4909392, + "byteStride": 12, + "count": 214, + "max": [ + 0.170871, + 1.02459, + 0.048768 + ], + "min": [ + 0.0733349, + 0.927049, + 0 + ], + "type": 35665 + }, + "accessor_12015": { + "bufferView": "bufferView_18316", + "byteOffset": 4911960, + "byteStride": 12, + "count": 214, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12031": { + "bufferView": "bufferView_18315", + "byteOffset": 588120, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12033": { + "bufferView": "bufferView_18316", + "byteOffset": 4914528, + "byteStride": 12, + "count": 218, + "max": [ + 0.170779, + 1.26843, + 0.048768 + ], + "min": [ + 0.0732434, + 1.17089, + 0 + ], + "type": 35665 + }, + "accessor_12035": { + "bufferView": "bufferView_18316", + "byteOffset": 4917144, + "byteStride": 12, + "count": 218, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12051": { + "bufferView": "bufferView_18315", + "byteOffset": 588696, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12053": { + "bufferView": "bufferView_18316", + "byteOffset": 4919760, + "byteStride": 12, + "count": 222, + "max": [ + 0.171054, + 0.536905, + 0.048768 + ], + "min": [ + 0.0735178, + 0.439369, + 0 + ], + "type": 35665 + }, + "accessor_12055": { + "bufferView": "bufferView_18316", + "byteOffset": 4922424, + "byteStride": 12, + "count": 222, + "max": [ + 0.980765, + 0.98107, + 1 + ], + "min": [ + -0.980765, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_1206": { + "bufferView": "bufferView_18315", + "byteOffset": 589856, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12071": { + "bufferView": "bufferView_18315", + "byteOffset": 589272, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12073": { + "bufferView": "bufferView_18316", + "byteOffset": 4925088, + "byteStride": 12, + "count": 225, + "max": [ + 0.171145, + 0.293065, + 0.048768 + ], + "min": [ + 0.0736092, + 0.195529, + 0 + ], + "type": 35665 + }, + "accessor_12075": { + "bufferView": "bufferView_18316", + "byteOffset": 4927788, + "byteStride": 12, + "count": 225, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_1208": { + "bufferView": "bufferView_18316", + "byteOffset": 4930536, + "byteStride": 12, + "count": 2, + "max": [ + 1.56061, + 0.0488734, + 0.243892 + ], + "min": [ + 1.56055, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12085": { + "bufferView": "bufferView_18315", + "byteOffset": 589848, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12087": { + "bufferView": "bufferView_18316", + "byteOffset": 4930488, + "byteStride": 12, + "count": 2, + "max": [ + 6.096e-05, + 1.46307, + 0 + ], + "min": [ + 0, + 1.21929, + 0 + ], + "type": 35665 + }, + "accessor_12097": { + "bufferView": "bufferView_18315", + "byteOffset": 589852, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12099": { + "bufferView": "bufferView_18316", + "byteOffset": 4930512, + "byteStride": 12, + "count": 2, + "max": [ + 3.048e-05, + 0.243779, + 0 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12109": { + "bufferView": "bufferView_18315", + "byteOffset": 589860, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12111": { + "bufferView": "bufferView_18316", + "byteOffset": 4930560, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 1.46298, + 0 + ], + "min": [ + 9.144e-05, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_12121": { + "bufferView": "bufferView_18315", + "byteOffset": 589864, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12123": { + "bufferView": "bufferView_18316", + "byteOffset": 4930584, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 0.243779, + 0 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12139": { + "bufferView": "bufferView_18315", + "byteOffset": 589868, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_12141": { + "bufferView": "bufferView_18316", + "byteOffset": 4930608, + "byteStride": 12, + "count": 112, + "max": [ + 0.244145, + 0.97539, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12143": { + "bufferView": "bufferView_18316", + "byteOffset": 4931952, + "byteStride": 12, + "count": 112, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_12159": { + "bufferView": "bufferView_18315", + "byteOffset": 590204, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12161": { + "bufferView": "bufferView_18316", + "byteOffset": 4933296, + "byteStride": 12, + "count": 186, + "max": [ + 0.195102, + 0.926623, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780318, + 0.097536 + ], + "type": 35665 + }, + "accessor_12163": { + "bufferView": "bufferView_18316", + "byteOffset": 4935528, + "byteStride": 12, + "count": 186, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12179": { + "bufferView": "bufferView_18315", + "byteOffset": 590780, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1218": { + "bufferView": "bufferView_18315", + "byteOffset": 592508, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12181": { + "bufferView": "bufferView_18316", + "byteOffset": 4937760, + "byteStride": 12, + "count": 198, + "max": [ + 0.195194, + 0.682782, + 0.146304 + ], + "min": [ + 0.0488899, + 0.536478, + 0.097536 + ], + "type": 35665 + }, + "accessor_12183": { + "bufferView": "bufferView_18316", + "byteOffset": 4940136, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12199": { + "bufferView": "bufferView_18315", + "byteOffset": 591356, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1220": { + "bufferView": "bufferView_18316", + "byteOffset": 4951704, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12201": { + "bufferView": "bufferView_18316", + "byteOffset": 4942512, + "byteStride": 12, + "count": 205, + "max": [ + 0.195346, + 0.195102, + 0.146304 + ], + "min": [ + 0.0490423, + 0.0487985, + 0.097536 + ], + "type": 35665 + }, + "accessor_12203": { + "bufferView": "bufferView_18316", + "byteOffset": 4944972, + "byteStride": 12, + "count": 205, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_12219": { + "bufferView": "bufferView_18315", + "byteOffset": 591932, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12221": { + "bufferView": "bufferView_18316", + "byteOffset": 4947432, + "byteStride": 12, + "count": 178, + "max": [ + 0.195285, + 0.438942, + 0.146304 + ], + "min": [ + 0.0489814, + 0.292638, + 0.097536 + ], + "type": 35665 + }, + "accessor_12223": { + "bufferView": "bufferView_18316", + "byteOffset": 4949568, + "byteStride": 12, + "count": 178, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_12239": { + "bufferView": "bufferView_18315", + "byteOffset": 592512, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12241": { + "bufferView": "bufferView_18316", + "byteOffset": 4951728, + "byteStride": 12, + "count": 226, + "max": [ + 0.17084, + 0.536478, + 0.048768 + ], + "min": [ + 0.0733044, + 0.438942, + 0 + ], + "type": 35665 + }, + "accessor_12243": { + "bufferView": "bufferView_18316", + "byteOffset": 4954440, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12259": { + "bufferView": "bufferView_18315", + "byteOffset": 593088, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12261": { + "bufferView": "bufferView_18316", + "byteOffset": 4957152, + "byteStride": 12, + "count": 226, + "max": [ + 0.170901, + 0.292638, + 0.048768 + ], + "min": [ + 0.0733654, + 0.195102, + 0 + ], + "type": 35665 + }, + "accessor_12263": { + "bufferView": "bufferView_18316", + "byteOffset": 4959864, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12279": { + "bufferView": "bufferView_18315", + "byteOffset": 593664, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12281": { + "bufferView": "bufferView_18316", + "byteOffset": 4962576, + "byteStride": 12, + "count": 226, + "max": [ + 0.170749, + 0.780318, + 0.048768 + ], + "min": [ + 0.073213, + 0.682782, + 0 + ], + "type": 35665 + }, + "accessor_12283": { + "bufferView": "bufferView_18316", + "byteOffset": 4965288, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12293": { + "bufferView": "bufferView_18315", + "byteOffset": 594240, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12295": { + "bufferView": "bufferView_18316", + "byteOffset": 4968000, + "byteStride": 12, + "count": 2, + "max": [ + 0.243779, + 0.975451, + 0 + ], + "min": [ + 0.243779, + 0.97539, + 0 + ], + "type": 35665 + }, + "accessor_1230": { + "bufferView": "bufferView_18315", + "byteOffset": 595184, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12305": { + "bufferView": "bufferView_18315", + "byteOffset": 594244, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12307": { + "bufferView": "bufferView_18316", + "byteOffset": 4968024, + "byteStride": 12, + "count": 2, + "max": [ + 0.243749, + 0.24387, + 0 + ], + "min": [ + 0.243749, + 3.048e-05, + 0 + ], + "type": 35665 + }, + "accessor_1232": { + "bufferView": "bufferView_18316", + "byteOffset": 4975704, + "byteStride": 12, + "count": 2, + "max": [ + 1.80445, + 0.0488734, + 0.243892 + ], + "min": [ + 1.80439, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12323": { + "bufferView": "bufferView_18315", + "byteOffset": 594248, + "byteStride": 0, + "count": 180, + "type": 5123 + }, + "accessor_12325": { + "bufferView": "bufferView_18316", + "byteOffset": 4968048, + "byteStride": 12, + "count": 118, + "max": [ + 0.244358, + 1.46353, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.0004572, + 0 + ], + "type": 35665 + }, + "accessor_12327": { + "bufferView": "bufferView_18316", + "byteOffset": 4969464, + "byteStride": 12, + "count": 118, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_12343": { + "bufferView": "bufferView_18315", + "byteOffset": 594608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12345": { + "bufferView": "bufferView_18316", + "byteOffset": 4970880, + "byteStride": 12, + "count": 201, + "max": [ + 0.195133, + 1.41473, + 0.146304 + ], + "min": [ + 0.048829, + 1.26843, + 0.097536 + ], + "type": 35665 + }, + "accessor_12347": { + "bufferView": "bufferView_18316", + "byteOffset": 4973292, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12363": { + "bufferView": "bufferView_18315", + "byteOffset": 595188, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12365": { + "bufferView": "bufferView_18316", + "byteOffset": 4975728, + "byteStride": 12, + "count": 197, + "max": [ + 0.195468, + 0.439369, + 0.146304 + ], + "min": [ + 0.0491642, + 0.293065, + 0.097536 + ], + "type": 35665 + }, + "accessor_12367": { + "bufferView": "bufferView_18316", + "byteOffset": 4978092, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_12383": { + "bufferView": "bufferView_18315", + "byteOffset": 595764, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12385": { + "bufferView": "bufferView_18316", + "byteOffset": 4980456, + "byteStride": 12, + "count": 202, + "max": [ + 0.195224, + 1.17089, + 0.146304 + ], + "min": [ + 0.0489204, + 1.02459, + 0.097536 + ], + "type": 35665 + }, + "accessor_12387": { + "bufferView": "bufferView_18316", + "byteOffset": 4982880, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12403": { + "bufferView": "bufferView_18315", + "byteOffset": 596340, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12405": { + "bufferView": "bufferView_18316", + "byteOffset": 4985304, + "byteStride": 12, + "count": 206, + "max": [ + 0.195407, + 0.683209, + 0.146304 + ], + "min": [ + 0.0491033, + 0.536905, + 0.097536 + ], + "type": 35665 + }, + "accessor_12407": { + "bufferView": "bufferView_18316", + "byteOffset": 4987776, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_1242": { + "bufferView": "bufferView_18315", + "byteOffset": 599220, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12423": { + "bufferView": "bufferView_18315", + "byteOffset": 596916, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12425": { + "bufferView": "bufferView_18316", + "byteOffset": 4990248, + "byteStride": 12, + "count": 198, + "max": [ + 0.195316, + 0.927049, + 0.146304 + ], + "min": [ + 0.0490118, + 0.780745, + 0.097536 + ], + "type": 35665 + }, + "accessor_12427": { + "bufferView": "bufferView_18316", + "byteOffset": 4992624, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_1244": { + "bufferView": "bufferView_18316", + "byteOffset": 5010480, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12443": { + "bufferView": "bufferView_18315", + "byteOffset": 597492, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12445": { + "bufferView": "bufferView_18316", + "byteOffset": 4995000, + "byteStride": 12, + "count": 206, + "max": [ + 0.19556, + 0.195529, + 0.146304 + ], + "min": [ + 0.0492557, + 0.0492252, + 0.097536 + ], + "type": 35665 + }, + "accessor_12447": { + "bufferView": "bufferView_18316", + "byteOffset": 4997472, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12463": { + "bufferView": "bufferView_18315", + "byteOffset": 598068, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12465": { + "bufferView": "bufferView_18316", + "byteOffset": 4999944, + "byteStride": 12, + "count": 225, + "max": [ + 0.170962, + 0.780745, + 0.048768 + ], + "min": [ + 0.0734263, + 0.683209, + 0 + ], + "type": 35665 + }, + "accessor_12467": { + "bufferView": "bufferView_18316", + "byteOffset": 5002644, + "byteStride": 12, + "count": 225, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12483": { + "bufferView": "bufferView_18315", + "byteOffset": 598644, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12485": { + "bufferView": "bufferView_18316", + "byteOffset": 5005344, + "byteStride": 12, + "count": 214, + "max": [ + 0.170871, + 1.02459, + 0.048768 + ], + "min": [ + 0.0733349, + 0.927049, + 0 + ], + "type": 35665 + }, + "accessor_12487": { + "bufferView": "bufferView_18316", + "byteOffset": 5007912, + "byteStride": 12, + "count": 214, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12503": { + "bufferView": "bufferView_18315", + "byteOffset": 599224, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12505": { + "bufferView": "bufferView_18316", + "byteOffset": 5010504, + "byteStride": 12, + "count": 218, + "max": [ + 0.170779, + 1.26843, + 0.048768 + ], + "min": [ + 0.0732434, + 1.17089, + 0 + ], + "type": 35665 + }, + "accessor_12507": { + "bufferView": "bufferView_18316", + "byteOffset": 5013120, + "byteStride": 12, + "count": 218, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12523": { + "bufferView": "bufferView_18315", + "byteOffset": 599800, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12525": { + "bufferView": "bufferView_18316", + "byteOffset": 5015736, + "byteStride": 12, + "count": 222, + "max": [ + 0.171054, + 0.536905, + 0.048768 + ], + "min": [ + 0.0735178, + 0.439369, + 0 + ], + "type": 35665 + }, + "accessor_12527": { + "bufferView": "bufferView_18316", + "byteOffset": 5018400, + "byteStride": 12, + "count": 222, + "max": [ + 0.980765, + 0.98107, + 1 + ], + "min": [ + -0.980765, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_1254": { + "bufferView": "bufferView_18315", + "byteOffset": 601328, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12543": { + "bufferView": "bufferView_18315", + "byteOffset": 600376, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12545": { + "bufferView": "bufferView_18316", + "byteOffset": 5021064, + "byteStride": 12, + "count": 225, + "max": [ + 0.171145, + 0.293065, + 0.048768 + ], + "min": [ + 0.0736092, + 0.195529, + 0 + ], + "type": 35665 + }, + "accessor_12547": { + "bufferView": "bufferView_18316", + "byteOffset": 5023764, + "byteStride": 12, + "count": 225, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12557": { + "bufferView": "bufferView_18315", + "byteOffset": 600952, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12559": { + "bufferView": "bufferView_18316", + "byteOffset": 5026464, + "byteStride": 12, + "count": 2, + "max": [ + 6.096e-05, + 1.46307, + 0 + ], + "min": [ + 0, + 1.21929, + 0 + ], + "type": 35665 + }, + "accessor_1256": { + "bufferView": "bufferView_18316", + "byteOffset": 5029392, + "byteStride": 12, + "count": 2, + "max": [ + 2.04829, + 0.0488734, + 0.243892 + ], + "min": [ + 2.04823, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12569": { + "bufferView": "bufferView_18315", + "byteOffset": 600956, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12571": { + "bufferView": "bufferView_18316", + "byteOffset": 5026488, + "byteStride": 12, + "count": 2, + "max": [ + 3.048e-05, + 0.243779, + 0 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12581": { + "bufferView": "bufferView_18315", + "byteOffset": 600960, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12583": { + "bufferView": "bufferView_18316", + "byteOffset": 5026512, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 1.46298, + 0 + ], + "min": [ + 9.144e-05, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_12593": { + "bufferView": "bufferView_18315", + "byteOffset": 600964, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12595": { + "bufferView": "bufferView_18316", + "byteOffset": 5026536, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 0.243779, + 0 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12611": { + "bufferView": "bufferView_18315", + "byteOffset": 600968, + "byteStride": 0, + "count": 180, + "type": 5123 + }, + "accessor_12613": { + "bufferView": "bufferView_18316", + "byteOffset": 5026560, + "byteStride": 12, + "count": 118, + "max": [ + 0.244358, + 1.46353, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.0004572, + 0 + ], + "type": 35665 + }, + "accessor_12615": { + "bufferView": "bufferView_18316", + "byteOffset": 5027976, + "byteStride": 12, + "count": 118, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_12631": { + "bufferView": "bufferView_18315", + "byteOffset": 601332, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12633": { + "bufferView": "bufferView_18316", + "byteOffset": 5029416, + "byteStride": 12, + "count": 201, + "max": [ + 0.195133, + 1.41473, + 0.146304 + ], + "min": [ + 0.048829, + 1.26843, + 0.097536 + ], + "type": 35665 + }, + "accessor_12635": { + "bufferView": "bufferView_18316", + "byteOffset": 5031828, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12651": { + "bufferView": "bufferView_18315", + "byteOffset": 601908, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12653": { + "bufferView": "bufferView_18316", + "byteOffset": 5034240, + "byteStride": 12, + "count": 197, + "max": [ + 0.195468, + 0.439369, + 0.146304 + ], + "min": [ + 0.0491642, + 0.293065, + 0.097536 + ], + "type": 35665 + }, + "accessor_12655": { + "bufferView": "bufferView_18316", + "byteOffset": 5036604, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_1266": { + "bufferView": "bufferView_18315", + "byteOffset": 605364, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12671": { + "bufferView": "bufferView_18315", + "byteOffset": 602484, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12673": { + "bufferView": "bufferView_18316", + "byteOffset": 5038968, + "byteStride": 12, + "count": 202, + "max": [ + 0.195224, + 1.17089, + 0.146304 + ], + "min": [ + 0.0489204, + 1.02459, + 0.097536 + ], + "type": 35665 + }, + "accessor_12675": { + "bufferView": "bufferView_18316", + "byteOffset": 5041392, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_1268": { + "bufferView": "bufferView_18316", + "byteOffset": 5063856, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12691": { + "bufferView": "bufferView_18315", + "byteOffset": 603060, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12693": { + "bufferView": "bufferView_18316", + "byteOffset": 5043816, + "byteStride": 12, + "count": 206, + "max": [ + 0.195407, + 0.683209, + 0.146304 + ], + "min": [ + 0.0491033, + 0.536905, + 0.097536 + ], + "type": 35665 + }, + "accessor_12695": { + "bufferView": "bufferView_18316", + "byteOffset": 5046288, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_12711": { + "bufferView": "bufferView_18315", + "byteOffset": 603636, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12713": { + "bufferView": "bufferView_18316", + "byteOffset": 5048760, + "byteStride": 12, + "count": 198, + "max": [ + 0.195316, + 0.927049, + 0.146304 + ], + "min": [ + 0.0490118, + 0.780745, + 0.097536 + ], + "type": 35665 + }, + "accessor_12715": { + "bufferView": "bufferView_18316", + "byteOffset": 5051136, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12731": { + "bufferView": "bufferView_18315", + "byteOffset": 604212, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12733": { + "bufferView": "bufferView_18316", + "byteOffset": 5053512, + "byteStride": 12, + "count": 206, + "max": [ + 0.19556, + 0.195529, + 0.146304 + ], + "min": [ + 0.0492557, + 0.0492252, + 0.097536 + ], + "type": 35665 + }, + "accessor_12735": { + "bufferView": "bufferView_18316", + "byteOffset": 5055984, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_12751": { + "bufferView": "bufferView_18315", + "byteOffset": 604788, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12753": { + "bufferView": "bufferView_18316", + "byteOffset": 5058456, + "byteStride": 12, + "count": 225, + "max": [ + 0.170962, + 0.780745, + 0.048768 + ], + "min": [ + 0.0734263, + 0.683209, + 0 + ], + "type": 35665 + }, + "accessor_12755": { + "bufferView": "bufferView_18316", + "byteOffset": 5061156, + "byteStride": 12, + "count": 225, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_12771": { + "bufferView": "bufferView_18315", + "byteOffset": 605368, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12773": { + "bufferView": "bufferView_18316", + "byteOffset": 5063880, + "byteStride": 12, + "count": 214, + "max": [ + 0.170871, + 1.02459, + 0.048768 + ], + "min": [ + 0.0733349, + 0.927049, + 0 + ], + "type": 35665 + }, + "accessor_12775": { + "bufferView": "bufferView_18316", + "byteOffset": 5066448, + "byteStride": 12, + "count": 214, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_1278": { + "bufferView": "bufferView_18315", + "byteOffset": 607684, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12791": { + "bufferView": "bufferView_18315", + "byteOffset": 605944, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12793": { + "bufferView": "bufferView_18316", + "byteOffset": 5069016, + "byteStride": 12, + "count": 218, + "max": [ + 0.170779, + 1.26843, + 0.048768 + ], + "min": [ + 0.0732434, + 1.17089, + 0 + ], + "type": 35665 + }, + "accessor_12795": { + "bufferView": "bufferView_18316", + "byteOffset": 5071632, + "byteStride": 12, + "count": 218, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_1280": { + "bufferView": "bufferView_18316", + "byteOffset": 5085048, + "byteStride": 12, + "count": 2, + "max": [ + 2.53597, + 0.0488734, + 0.243892 + ], + "min": [ + 2.53591, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12811": { + "bufferView": "bufferView_18315", + "byteOffset": 606520, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12813": { + "bufferView": "bufferView_18316", + "byteOffset": 5074248, + "byteStride": 12, + "count": 222, + "max": [ + 0.171054, + 0.536905, + 0.048768 + ], + "min": [ + 0.0735178, + 0.439369, + 0 + ], + "type": 35665 + }, + "accessor_12815": { + "bufferView": "bufferView_18316", + "byteOffset": 5076912, + "byteStride": 12, + "count": 222, + "max": [ + 0.980765, + 0.98107, + 1 + ], + "min": [ + -0.980765, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12831": { + "bufferView": "bufferView_18315", + "byteOffset": 607096, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12833": { + "bufferView": "bufferView_18316", + "byteOffset": 5079576, + "byteStride": 12, + "count": 225, + "max": [ + 0.171145, + 0.293065, + 0.048768 + ], + "min": [ + 0.0736092, + 0.195529, + 0 + ], + "type": 35665 + }, + "accessor_12835": { + "bufferView": "bufferView_18316", + "byteOffset": 5082276, + "byteStride": 12, + "count": 225, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_12845": { + "bufferView": "bufferView_18315", + "byteOffset": 607672, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12847": { + "bufferView": "bufferView_18316", + "byteOffset": 5084976, + "byteStride": 12, + "count": 2, + "max": [ + 6.096e-05, + 1.46307, + 0 + ], + "min": [ + 0, + 1.21929, + 0 + ], + "type": 35665 + }, + "accessor_12857": { + "bufferView": "bufferView_18315", + "byteOffset": 607676, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12859": { + "bufferView": "bufferView_18316", + "byteOffset": 5085000, + "byteStride": 12, + "count": 2, + "max": [ + 3.048e-05, + 0.243779, + 0 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12869": { + "bufferView": "bufferView_18315", + "byteOffset": 607680, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12871": { + "bufferView": "bufferView_18316", + "byteOffset": 5085024, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 1.46298, + 0 + ], + "min": [ + 9.144e-05, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_12881": { + "bufferView": "bufferView_18315", + "byteOffset": 607688, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12883": { + "bufferView": "bufferView_18316", + "byteOffset": 5085072, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 0.243779, + 0 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12899": { + "bufferView": "bufferView_18315", + "byteOffset": 607692, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1290": { + "bufferView": "bufferView_18315", + "byteOffset": 610908, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_12901": { + "bufferView": "bufferView_18316", + "byteOffset": 5085096, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.195072, + 0.146304 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_12903": { + "bufferView": "bufferView_18316", + "byteOffset": 5087040, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_12919": { + "bufferView": "bufferView_18315", + "byteOffset": 608268, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_1292": { + "bufferView": "bufferView_18316", + "byteOffset": 5106840, + "byteStride": 12, + "count": 2, + "max": [ + 2.77981, + 0.0488734, + 0.243892 + ], + "min": [ + 2.77975, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_12921": { + "bufferView": "bufferView_18316", + "byteOffset": 5088984, + "byteStride": 12, + "count": 96, + "max": [ + 0.73152, + 0.24384, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_12923": { + "bufferView": "bufferView_18316", + "byteOffset": 5090136, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_12939": { + "bufferView": "bufferView_18315", + "byteOffset": 608604, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12941": { + "bufferView": "bufferView_18316", + "byteOffset": 5091288, + "byteStride": 12, + "count": 162, + "max": [ + 0.292608, + 0.170688, + 0.048768 + ], + "min": [ + 0.195072, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_12943": { + "bufferView": "bufferView_18316", + "byteOffset": 5093232, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_12959": { + "bufferView": "bufferView_18315", + "byteOffset": 609180, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12961": { + "bufferView": "bufferView_18316", + "byteOffset": 5095176, + "byteStride": 12, + "count": 162, + "max": [ + 0.682752, + 0.195072, + 0.146304 + ], + "min": [ + 0.536448, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_12963": { + "bufferView": "bufferView_18316", + "byteOffset": 5097120, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_12979": { + "bufferView": "bufferView_18315", + "byteOffset": 609756, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_12981": { + "bufferView": "bufferView_18316", + "byteOffset": 5099064, + "byteStride": 12, + "count": 162, + "max": [ + 0.438912, + 0.195072, + 0.146304 + ], + "min": [ + 0.292608, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_12983": { + "bufferView": "bufferView_18316", + "byteOffset": 5101008, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_12999": { + "bufferView": "bufferView_18315", + "byteOffset": 610332, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13001": { + "bufferView": "bufferView_18316", + "byteOffset": 5102952, + "byteStride": 12, + "count": 162, + "max": [ + 0.536448, + 0.170688, + 0.048768 + ], + "min": [ + 0.438912, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_13003": { + "bufferView": "bufferView_18316", + "byteOffset": 5104896, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_13019": { + "bufferView": "bufferView_18315", + "byteOffset": 610912, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13021": { + "bufferView": "bufferView_18316", + "byteOffset": 5106864, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.195072, + 0.146304 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_13023": { + "bufferView": "bufferView_18316", + "byteOffset": 5108808, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_13039": { + "bufferView": "bufferView_18315", + "byteOffset": 611488, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_13041": { + "bufferView": "bufferView_18316", + "byteOffset": 5110752, + "byteStride": 12, + "count": 96, + "max": [ + 0.73152, + 0.24384, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13043": { + "bufferView": "bufferView_18316", + "byteOffset": 5111904, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_13059": { + "bufferView": "bufferView_18315", + "byteOffset": 611824, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13061": { + "bufferView": "bufferView_18316", + "byteOffset": 5113056, + "byteStride": 12, + "count": 162, + "max": [ + 0.292608, + 0.170688, + 0.048768 + ], + "min": [ + 0.195072, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_13063": { + "bufferView": "bufferView_18316", + "byteOffset": 5115000, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_13079": { + "bufferView": "bufferView_18315", + "byteOffset": 612400, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1308": { + "bufferView": "bufferView_18315", + "byteOffset": 614800, + "byteStride": 0, + "count": 15336, + "type": 5123 + }, + "accessor_13081": { + "bufferView": "bufferView_18316", + "byteOffset": 5116944, + "byteStride": 12, + "count": 162, + "max": [ + 0.682752, + 0.195072, + 0.146304 + ], + "min": [ + 0.536448, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_13083": { + "bufferView": "bufferView_18316", + "byteOffset": 5118888, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_13099": { + "bufferView": "bufferView_18315", + "byteOffset": 612976, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1310": { + "bufferView": "bufferView_18316", + "byteOffset": 5134080, + "byteStride": 12, + "count": 12441, + "max": [ + 2.92608, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_13101": { + "bufferView": "bufferView_18316", + "byteOffset": 5120832, + "byteStride": 12, + "count": 162, + "max": [ + 0.438912, + 0.195072, + 0.146304 + ], + "min": [ + 0.292608, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_13103": { + "bufferView": "bufferView_18316", + "byteOffset": 5122776, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_13119": { + "bufferView": "bufferView_18315", + "byteOffset": 613552, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1312": { + "bufferView": "bufferView_18316", + "byteOffset": 5283372, + "byteStride": 12, + "count": 12441, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_13121": { + "bufferView": "bufferView_18316", + "byteOffset": 5124720, + "byteStride": 12, + "count": 162, + "max": [ + 0.536448, + 0.170688, + 0.048768 + ], + "min": [ + 0.438912, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_13123": { + "bufferView": "bufferView_18316", + "byteOffset": 5126664, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_13139": { + "bufferView": "bufferView_18315", + "byteOffset": 614128, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_13141": { + "bufferView": "bufferView_18316", + "byteOffset": 5128608, + "byteStride": 12, + "count": 116, + "max": [ + 0.24381, + 0.48765, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13143": { + "bufferView": "bufferView_18316", + "byteOffset": 5130000, + "byteStride": 12, + "count": 116, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_13159": { + "bufferView": "bufferView_18315", + "byteOffset": 614464, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_13161": { + "bufferView": "bufferView_18316", + "byteOffset": 5131392, + "byteStride": 12, + "count": 112, + "max": [ + 0.244145, + 0.97539, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13163": { + "bufferView": "bufferView_18316", + "byteOffset": 5132736, + "byteStride": 12, + "count": 112, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_13179": { + "bufferView": "bufferView_18315", + "byteOffset": 645472, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13181": { + "bufferView": "bufferView_18316", + "byteOffset": 5432664, + "byteStride": 12, + "count": 186, + "max": [ + 0.195102, + 0.926623, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780318, + 0.097536 + ], + "type": 35665 + }, + "accessor_13183": { + "bufferView": "bufferView_18316", + "byteOffset": 5434896, + "byteStride": 12, + "count": 186, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_13199": { + "bufferView": "bufferView_18315", + "byteOffset": 646048, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13201": { + "bufferView": "bufferView_18316", + "byteOffset": 5437128, + "byteStride": 12, + "count": 198, + "max": [ + 0.195194, + 0.682782, + 0.146304 + ], + "min": [ + 0.0488899, + 0.536478, + 0.097536 + ], + "type": 35665 + }, + "accessor_13203": { + "bufferView": "bufferView_18316", + "byteOffset": 5439504, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_13219": { + "bufferView": "bufferView_18315", + "byteOffset": 646624, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13221": { + "bufferView": "bufferView_18316", + "byteOffset": 5441880, + "byteStride": 12, + "count": 205, + "max": [ + 0.195346, + 0.195102, + 0.146304 + ], + "min": [ + 0.0490423, + 0.0487985, + 0.097536 + ], + "type": 35665 + }, + "accessor_13223": { + "bufferView": "bufferView_18316", + "byteOffset": 5444340, + "byteStride": 12, + "count": 205, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_13239": { + "bufferView": "bufferView_18315", + "byteOffset": 647776, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13241": { + "bufferView": "bufferView_18316", + "byteOffset": 5452368, + "byteStride": 12, + "count": 178, + "max": [ + 0.195285, + 0.438942, + 0.146304 + ], + "min": [ + 0.0489814, + 0.292638, + 0.097536 + ], + "type": 35665 + }, + "accessor_13243": { + "bufferView": "bufferView_18316", + "byteOffset": 5454504, + "byteStride": 12, + "count": 178, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_13259": { + "bufferView": "bufferView_18315", + "byteOffset": 648352, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13261": { + "bufferView": "bufferView_18316", + "byteOffset": 5456640, + "byteStride": 12, + "count": 226, + "max": [ + 0.17084, + 0.536478, + 0.048768 + ], + "min": [ + 0.0733044, + 0.438942, + 0 + ], + "type": 35665 + }, + "accessor_13263": { + "bufferView": "bufferView_18316", + "byteOffset": 5459352, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_13279": { + "bufferView": "bufferView_18315", + "byteOffset": 648928, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1328": { + "bufferView": "bufferView_18315", + "byteOffset": 650856, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13281": { + "bufferView": "bufferView_18316", + "byteOffset": 5462064, + "byteStride": 12, + "count": 226, + "max": [ + 0.170901, + 0.292638, + 0.048768 + ], + "min": [ + 0.0733654, + 0.195102, + 0 + ], + "type": 35665 + }, + "accessor_13283": { + "bufferView": "bufferView_18316", + "byteOffset": 5464776, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_13299": { + "bufferView": "bufferView_18315", + "byteOffset": 649504, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1330": { + "bufferView": "bufferView_18316", + "byteOffset": 5482176, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_13301": { + "bufferView": "bufferView_18316", + "byteOffset": 5467488, + "byteStride": 12, + "count": 226, + "max": [ + 0.170749, + 0.780318, + 0.048768 + ], + "min": [ + 0.073213, + 0.682782, + 0 + ], + "type": 35665 + }, + "accessor_13303": { + "bufferView": "bufferView_18316", + "byteOffset": 5470200, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_13313": { + "bufferView": "bufferView_18315", + "byteOffset": 650080, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13315": { + "bufferView": "bufferView_18316", + "byteOffset": 5472912, + "byteStride": 12, + "count": 2, + "max": [ + 0.243779, + 0.975451, + 0 + ], + "min": [ + 0.243779, + 0.97539, + 0 + ], + "type": 35665 + }, + "accessor_1332": { + "bufferView": "bufferView_18316", + "byteOffset": 5484960, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_13325": { + "bufferView": "bufferView_18315", + "byteOffset": 650084, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13327": { + "bufferView": "bufferView_18316", + "byteOffset": 5472936, + "byteStride": 12, + "count": 2, + "max": [ + 0.243749, + 0.24387, + 0 + ], + "min": [ + 0.243749, + 3.048e-05, + 0 + ], + "type": 35665 + }, + "accessor_13343": { + "bufferView": "bufferView_18315", + "byteOffset": 650088, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_13345": { + "bufferView": "bufferView_18316", + "byteOffset": 5472960, + "byteStride": 12, + "count": 384, + "max": [ + 0.145512, + 1.46319, + 0.143896 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13347": { + "bufferView": "bufferView_18316", + "byteOffset": 5477568, + "byteStride": 12, + "count": 384, + "max": [ + 0.999963, + 0.999999, + 0.999963 + ], + "min": [ + -0.999963, + -0.999999, + -0.999963 + ], + "type": 35665 + }, + "accessor_13363": { + "bufferView": "bufferView_18315", + "byteOffset": 651432, + "byteStride": 0, + "count": 2094, + "type": 5123 + }, + "accessor_13365": { + "bufferView": "bufferView_18316", + "byteOffset": 5487744, + "byteStride": 12, + "count": 1534, + "max": [ + 0.354269, + 0.24384, + 0.995995 + ], + "min": [ + 0.104089, + 0, + 0.736031 + ], + "type": 35665 + }, + "accessor_13367": { + "bufferView": "bufferView_18316", + "byteOffset": 5506152, + "byteStride": 12, + "count": 1534, + "max": [ + 0.999954, + 1, + 0.999954 + ], + "min": [ + -0.999954, + -1, + -0.999954 + ], + "type": 35665 + }, + "accessor_13383": { + "bufferView": "bufferView_18315", + "byteOffset": 655620, + "byteStride": 0, + "count": 432, + "type": 5123 + }, + "accessor_13385": { + "bufferView": "bufferView_18316", + "byteOffset": 5524560, + "byteStride": 12, + "count": 312, + "max": [ + 0.272491, + 0.195072, + 0.709971 + ], + "min": [ + 0, + 0.048768, + 0 + ], + "type": 35665 + }, + "accessor_13387": { + "bufferView": "bufferView_18316", + "byteOffset": 5528304, + "byteStride": 12, + "count": 312, + "max": [ + 0.982696, + 1, + 0.982881 + ], + "min": [ + -0.982696, + -1, + -0.982881 + ], + "type": 35665 + }, + "accessor_13403": { + "bufferView": "bufferView_18315", + "byteOffset": 656484, + "byteStride": 0, + "count": 192, + "type": 5123 + }, + "accessor_13405": { + "bufferView": "bufferView_18316", + "byteOffset": 5532048, + "byteStride": 12, + "count": 187, + "max": [ + 0.27179, + 0.18285, + 0.767639 + ], + "min": [ + 0.149779, + 0.0609905, + 0.733105 + ], + "type": 35665 + }, + "accessor_13407": { + "bufferView": "bufferView_18316", + "byteOffset": 5534292, + "byteStride": 12, + "count": 187, + "max": [ + 0.963982, + 0.980841, + 0.18388 + ], + "min": [ + -0.963982, + -0.980841, + -0.18388 + ], + "type": 35665 + }, + "accessor_13423": { + "bufferView": "bufferView_18315", + "byteOffset": 656868, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_13425": { + "bufferView": "bufferView_18316", + "byteOffset": 5536536, + "byteStride": 12, + "count": 512, + "max": [ + 0.293522, + 0.207264, + 0.760202 + ], + "min": [ + 0.116769, + 0.036576, + 0.680649 + ], + "type": 35665 + }, + "accessor_13427": { + "bufferView": "bufferView_18316", + "byteOffset": 5542680, + "byteStride": 12, + "count": 512, + "max": [ + 0.963773, + 0.980638, + 0.982777 + ], + "min": [ + -0.963773, + -0.980638, + -0.982777 + ], + "type": 35665 + }, + "accessor_13443": { + "bufferView": "bufferView_18315", + "byteOffset": 658404, + "byteStride": 0, + "count": 5814, + "type": 5123 + }, + "accessor_13445": { + "bufferView": "bufferView_18316", + "byteOffset": 5548824, + "byteStride": 12, + "count": 5814, + "max": [ + 0.305501, + 0.220553, + 0.77218 + ], + "min": [ + 0.0268529, + 0.024384, + 0.238536 + ], + "type": 35665 + }, + "accessor_13447": { + "bufferView": "bufferView_18316", + "byteOffset": 5618592, + "byteStride": 12, + "count": 5814, + "max": [ + 0.855066, + 0.783506, + 0.848586 + ], + "min": [ + -0.855066, + -0.783506, + -0.848586 + ], + "type": 35665 + }, + "accessor_13457": { + "bufferView": "bufferView_18315", + "byteOffset": 670032, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13459": { + "bufferView": "bufferView_18316", + "byteOffset": 5688360, + "byteStride": 12, + "count": 2, + "max": [ + 0.20571, + 0.0499872, + 0.73594 + ], + "min": [ + 0.205405, + 0.0376733, + 0.723717 + ], + "type": 35665 + }, + "accessor_13475": { + "bufferView": "bufferView_18315", + "byteOffset": 670036, + "byteStride": 0, + "count": 2244, + "type": 5123 + }, + "accessor_13477": { + "bufferView": "bufferView_18316", + "byteOffset": 5688384, + "byteStride": 12, + "count": 1856, + "max": [ + 0.370545, + 0.24384, + 0.837255 + ], + "min": [ + 0, + 0, + 0.0972312 + ], + "type": 35665 + }, + "accessor_13479": { + "bufferView": "bufferView_18316", + "byteOffset": 5710656, + "byteStride": 12, + "count": 1856, + "max": [ + 0.98273, + 1, + 0.98305 + ], + "min": [ + -0.98273, + -1, + -0.98305 + ], + "type": 35665 + }, + "accessor_1348": { + "bufferView": "bufferView_18315", + "byteOffset": 676324, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13495": { + "bufferView": "bufferView_18315", + "byteOffset": 674524, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_13497": { + "bufferView": "bufferView_18316", + "byteOffset": 5732928, + "byteStride": 12, + "count": 12, + "max": [ + 0.31815, + 0.097536, + 0.786232 + ], + "min": [ + 0.270236, + 0.048768, + 0.77721 + ], + "type": 35665 + }, + "accessor_13499": { + "bufferView": "bufferView_18316", + "byteOffset": 5733072, + "byteStride": 12, + "count": 12, + "max": [ + 0.185137, + 0.0001064, + 0.98273 + ], + "min": [ + -0.185137, + -0.0001064, + -0.98273 + ], + "type": 35665 + }, + "accessor_1350": { + "bufferView": "bufferView_18316", + "byteOffset": 5754528, + "byteStride": 12, + "count": 232, + "max": [ + 2.48717, + 0.170683, + 0.073218 + ], + "min": [ + 2.38961, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_13515": { + "bufferView": "bufferView_18315", + "byteOffset": 674548, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_13517": { + "bufferView": "bufferView_18316", + "byteOffset": 5733216, + "byteStride": 12, + "count": 12, + "max": [ + 0.222291, + 0.195072, + 0.804306 + ], + "min": [ + 0.174376, + 0.146304, + 0.795284 + ], + "type": 35665 + }, + "accessor_13519": { + "bufferView": "bufferView_18316", + "byteOffset": 5733360, + "byteStride": 12, + "count": 12, + "max": [ + 0.18528, + 0.000267, + 0.98273 + ], + "min": [ + -0.18528, + -0.000267, + -0.98273 + ], + "type": 35665 + }, + "accessor_1352": { + "bufferView": "bufferView_18316", + "byteOffset": 5757312, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_13535": { + "bufferView": "bufferView_18315", + "byteOffset": 674572, + "byteStride": 0, + "count": 876, + "type": 5123 + }, + "accessor_13537": { + "bufferView": "bufferView_18316", + "byteOffset": 5733504, + "byteStride": 12, + "count": 876, + "max": [ + 0.344363, + 0.219456, + 0.830519 + ], + "min": [ + 0.152674, + 0.024384, + 0.774954 + ], + "type": 35665 + }, + "accessor_13539": { + "bufferView": "bufferView_18316", + "byteOffset": 5744016, + "byteStride": 12, + "count": 876, + "max": [ + 0.854549, + 0.702259, + 0.830359 + ], + "min": [ + -0.854549, + -0.702259, + -0.830359 + ], + "type": 35665 + }, + "accessor_13555": { + "bufferView": "bufferView_18315", + "byteOffset": 676900, + "byteStride": 0, + "count": 1536, + "type": 5123 + }, + "accessor_13557": { + "bufferView": "bufferView_18316", + "byteOffset": 5760096, + "byteStride": 12, + "count": 1099, + "max": [ + 0.239573, + 0.24384, + 0.239634 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13559": { + "bufferView": "bufferView_18316", + "byteOffset": 5773284, + "byteStride": 12, + "count": 1099, + "max": [ + 0.999954, + 1, + 0.999954 + ], + "min": [ + -0.999954, + -1, + -0.999954 + ], + "type": 35665 + }, + "accessor_13569": { + "bufferView": "bufferView_18315", + "byteOffset": 679972, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13571": { + "bufferView": "bufferView_18316", + "byteOffset": 5786472, + "byteStride": 12, + "count": 2, + "max": [ + 0.222291, + 0.146304, + 0.795284 + ], + "min": [ + 0.181661, + 0.146304, + 0.579608 + ], + "type": 35665 + }, + "accessor_13581": { + "bufferView": "bufferView_18315", + "byteOffset": 679976, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13583": { + "bufferView": "bufferView_18316", + "byteOffset": 5786496, + "byteStride": 12, + "count": 2, + "max": [ + 0.270236, + 0.097536, + 0.786232 + ], + "min": [ + 0.229575, + 0.097536, + 0.570586 + ], + "type": 35665 + }, + "accessor_13593": { + "bufferView": "bufferView_18315", + "byteOffset": 679980, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_13595": { + "bufferView": "bufferView_18316", + "byteOffset": 5786520, + "byteStride": 12, + "count": 4, + "max": [ + 0.280355, + 0.208117, + 0.833415 + ], + "min": [ + 0.192268, + 0.18227, + 0.800466 + ], + "type": 35665 + }, + "accessor_136": { + "bufferView": "bufferView_18315", + "byteOffset": 647200, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13605": { + "bufferView": "bufferView_18315", + "byteOffset": 679992, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13607": { + "bufferView": "bufferView_18316", + "byteOffset": 5786568, + "byteStride": 12, + "count": 2, + "max": [ + 0.248534, + 0.195072, + 0.802752 + ], + "min": [ + 0.246248, + 0.195072, + 0.790743 + ], + "type": 35665 + }, + "accessor_13617": { + "bufferView": "bufferView_18315", + "byteOffset": 679996, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13619": { + "bufferView": "bufferView_18316", + "byteOffset": 5786592, + "byteStride": 12, + "count": 2, + "max": [ + 0.320406, + 0.12192, + 0.789188 + ], + "min": [ + 0.31815, + 0.12192, + 0.777179 + ], + "type": 35665 + }, + "accessor_13629": { + "bufferView": "bufferView_18315", + "byteOffset": 680000, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13631": { + "bufferView": "bufferView_18316", + "byteOffset": 5786616, + "byteStride": 12, + "count": 2, + "max": [ + 0.176632, + 0.12192, + 0.816285 + ], + "min": [ + 0.174376, + 0.12192, + 0.804276 + ], + "type": 35665 + }, + "accessor_13641": { + "bufferView": "bufferView_18315", + "byteOffset": 680004, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13643": { + "bufferView": "bufferView_18316", + "byteOffset": 5786640, + "byteStride": 12, + "count": 2, + "max": [ + 0.248534, + 0.048768, + 0.802752 + ], + "min": [ + 0.246248, + 0.048768, + 0.790743 + ], + "type": 35665 + }, + "accessor_13659": { + "bufferView": "bufferView_18315", + "byteOffset": 680008, + "byteStride": 0, + "count": 2244, + "type": 5123 + }, + "accessor_13661": { + "bufferView": "bufferView_18316", + "byteOffset": 5786664, + "byteStride": 12, + "count": 1856, + "max": [ + 0.370545, + 0.24384, + 0.837255 + ], + "min": [ + 0, + 0, + 0.0972312 + ], + "type": 35665 + }, + "accessor_13663": { + "bufferView": "bufferView_18316", + "byteOffset": 5808936, + "byteStride": 12, + "count": 1856, + "max": [ + 0.98273, + 1, + 0.98305 + ], + "min": [ + -0.98273, + -1, + -0.98305 + ], + "type": 35665 + }, + "accessor_13679": { + "bufferView": "bufferView_18315", + "byteOffset": 684496, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_1368": { + "bufferView": "bufferView_18315", + "byteOffset": 689368, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_13681": { + "bufferView": "bufferView_18316", + "byteOffset": 5831208, + "byteStride": 12, + "count": 12, + "max": [ + 0.31815, + 0.097536, + 0.786232 + ], + "min": [ + 0.270236, + 0.048768, + 0.77721 + ], + "type": 35665 + }, + "accessor_13683": { + "bufferView": "bufferView_18316", + "byteOffset": 5831352, + "byteStride": 12, + "count": 12, + "max": [ + 0.185137, + 0.0001064, + 0.98273 + ], + "min": [ + -0.185137, + -0.0001064, + -0.98273 + ], + "type": 35665 + }, + "accessor_13699": { + "bufferView": "bufferView_18315", + "byteOffset": 684520, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_1370": { + "bufferView": "bufferView_18316", + "byteOffset": 5879184, + "byteStride": 12, + "count": 232, + "max": [ + 1.99949, + 0.170683, + 0.073218 + ], + "min": [ + 1.90193, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_13701": { + "bufferView": "bufferView_18316", + "byteOffset": 5831496, + "byteStride": 12, + "count": 12, + "max": [ + 0.222291, + 0.195072, + 0.804306 + ], + "min": [ + 0.174376, + 0.146304, + 0.795284 + ], + "type": 35665 + }, + "accessor_13703": { + "bufferView": "bufferView_18316", + "byteOffset": 5831640, + "byteStride": 12, + "count": 12, + "max": [ + 0.18528, + 0.000267, + 0.98273 + ], + "min": [ + -0.18528, + -0.000267, + -0.98273 + ], + "type": 35665 + }, + "accessor_13719": { + "bufferView": "bufferView_18315", + "byteOffset": 684544, + "byteStride": 0, + "count": 876, + "type": 5123 + }, + "accessor_1372": { + "bufferView": "bufferView_18316", + "byteOffset": 5881968, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_13721": { + "bufferView": "bufferView_18316", + "byteOffset": 5831784, + "byteStride": 12, + "count": 876, + "max": [ + 0.344363, + 0.219456, + 0.830519 + ], + "min": [ + 0.152674, + 0.024384, + 0.774954 + ], + "type": 35665 + }, + "accessor_13723": { + "bufferView": "bufferView_18316", + "byteOffset": 5842296, + "byteStride": 12, + "count": 876, + "max": [ + 0.854549, + 0.702259, + 0.830359 + ], + "min": [ + -0.854549, + -0.702259, + -0.830359 + ], + "type": 35665 + }, + "accessor_13739": { + "bufferView": "bufferView_18315", + "byteOffset": 686296, + "byteStride": 0, + "count": 1536, + "type": 5123 + }, + "accessor_13741": { + "bufferView": "bufferView_18316", + "byteOffset": 5852808, + "byteStride": 12, + "count": 1099, + "max": [ + 0.239573, + 0.24384, + 0.239634 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13743": { + "bufferView": "bufferView_18316", + "byteOffset": 5865996, + "byteStride": 12, + "count": 1099, + "max": [ + 0.999954, + 1, + 0.999954 + ], + "min": [ + -0.999954, + -1, + -0.999954 + ], + "type": 35665 + }, + "accessor_13753": { + "bufferView": "bufferView_18315", + "byteOffset": 689944, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13755": { + "bufferView": "bufferView_18316", + "byteOffset": 5884752, + "byteStride": 12, + "count": 2, + "max": [ + 0.222291, + 0.146304, + 0.795284 + ], + "min": [ + 0.181661, + 0.146304, + 0.579608 + ], + "type": 35665 + }, + "accessor_13765": { + "bufferView": "bufferView_18315", + "byteOffset": 689948, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13767": { + "bufferView": "bufferView_18316", + "byteOffset": 5884776, + "byteStride": 12, + "count": 2, + "max": [ + 0.270236, + 0.097536, + 0.786232 + ], + "min": [ + 0.229575, + 0.097536, + 0.570586 + ], + "type": 35665 + }, + "accessor_13777": { + "bufferView": "bufferView_18315", + "byteOffset": 689952, + "byteStride": 0, + "count": 6, + "type": 5123 + }, + "accessor_13779": { + "bufferView": "bufferView_18316", + "byteOffset": 5884800, + "byteStride": 12, + "count": 4, + "max": [ + 0.280355, + 0.208117, + 0.833415 + ], + "min": [ + 0.192268, + 0.18227, + 0.800466 + ], + "type": 35665 + }, + "accessor_13789": { + "bufferView": "bufferView_18315", + "byteOffset": 689964, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13791": { + "bufferView": "bufferView_18316", + "byteOffset": 5884848, + "byteStride": 12, + "count": 2, + "max": [ + 0.248534, + 0.195072, + 0.802752 + ], + "min": [ + 0.246248, + 0.195072, + 0.790743 + ], + "type": 35665 + }, + "accessor_138": { + "bufferView": "bufferView_18316", + "byteOffset": 5446800, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_13801": { + "bufferView": "bufferView_18315", + "byteOffset": 689968, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13803": { + "bufferView": "bufferView_18316", + "byteOffset": 5884872, + "byteStride": 12, + "count": 2, + "max": [ + 0.320406, + 0.12192, + 0.789188 + ], + "min": [ + 0.31815, + 0.12192, + 0.777179 + ], + "type": 35665 + }, + "accessor_13813": { + "bufferView": "bufferView_18315", + "byteOffset": 689972, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13815": { + "bufferView": "bufferView_18316", + "byteOffset": 5884896, + "byteStride": 12, + "count": 2, + "max": [ + 0.176632, + 0.12192, + 0.816285 + ], + "min": [ + 0.174376, + 0.12192, + 0.804276 + ], + "type": 35665 + }, + "accessor_13825": { + "bufferView": "bufferView_18315", + "byteOffset": 689976, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13827": { + "bufferView": "bufferView_18316", + "byteOffset": 5884920, + "byteStride": 12, + "count": 2, + "max": [ + 0.248534, + 0.048768, + 0.802752 + ], + "min": [ + 0.246248, + 0.048768, + 0.790743 + ], + "type": 35665 + }, + "accessor_13843": { + "bufferView": "bufferView_18315", + "byteOffset": 689980, + "byteStride": 0, + "count": 2094, + "type": 5123 + }, + "accessor_13845": { + "bufferView": "bufferView_18316", + "byteOffset": 5884944, + "byteStride": 12, + "count": 1534, + "max": [ + 0.354269, + 0.24384, + 0.995995 + ], + "min": [ + 0.104089, + 0, + 0.736031 + ], + "type": 35665 + }, + "accessor_13847": { + "bufferView": "bufferView_18316", + "byteOffset": 5903352, + "byteStride": 12, + "count": 1534, + "max": [ + 0.999954, + 1, + 0.999954 + ], + "min": [ + -0.999954, + -1, + -0.999954 + ], + "type": 35665 + }, + "accessor_13863": { + "bufferView": "bufferView_18315", + "byteOffset": 694168, + "byteStride": 0, + "count": 432, + "type": 5123 + }, + "accessor_13865": { + "bufferView": "bufferView_18316", + "byteOffset": 5921760, + "byteStride": 12, + "count": 312, + "max": [ + 0.272491, + 0.195072, + 0.709971 + ], + "min": [ + 0, + 0.048768, + 0 + ], + "type": 35665 + }, + "accessor_13867": { + "bufferView": "bufferView_18316", + "byteOffset": 5925504, + "byteStride": 12, + "count": 312, + "max": [ + 0.982696, + 1, + 0.982881 + ], + "min": [ + -0.982696, + -1, + -0.982881 + ], + "type": 35665 + }, + "accessor_1388": { + "bufferView": "bufferView_18315", + "byteOffset": 708580, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_13883": { + "bufferView": "bufferView_18315", + "byteOffset": 695032, + "byteStride": 0, + "count": 192, + "type": 5123 + }, + "accessor_13885": { + "bufferView": "bufferView_18316", + "byteOffset": 5929248, + "byteStride": 12, + "count": 187, + "max": [ + 0.27179, + 0.18285, + 0.767639 + ], + "min": [ + 0.149779, + 0.0609905, + 0.733105 + ], + "type": 35665 + }, + "accessor_13887": { + "bufferView": "bufferView_18316", + "byteOffset": 5931492, + "byteStride": 12, + "count": 187, + "max": [ + 0.963982, + 0.980841, + 0.18388 + ], + "min": [ + -0.963982, + -0.980841, + -0.18388 + ], + "type": 35665 + }, + "accessor_1390": { + "bufferView": "bufferView_18316", + "byteOffset": 6085560, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_13903": { + "bufferView": "bufferView_18315", + "byteOffset": 695416, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_13905": { + "bufferView": "bufferView_18316", + "byteOffset": 5933736, + "byteStride": 12, + "count": 512, + "max": [ + 0.293522, + 0.207264, + 0.760202 + ], + "min": [ + 0.116769, + 0.036576, + 0.680649 + ], + "type": 35665 + }, + "accessor_13907": { + "bufferView": "bufferView_18316", + "byteOffset": 5939880, + "byteStride": 12, + "count": 512, + "max": [ + 0.963773, + 0.980638, + 0.982777 + ], + "min": [ + -0.963773, + -0.980638, + -0.982777 + ], + "type": 35665 + }, + "accessor_1392": { + "bufferView": "bufferView_18316", + "byteOffset": 6088056, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_13923": { + "bufferView": "bufferView_18315", + "byteOffset": 696952, + "byteStride": 0, + "count": 5814, + "type": 5123 + }, + "accessor_13925": { + "bufferView": "bufferView_18316", + "byteOffset": 5946024, + "byteStride": 12, + "count": 5814, + "max": [ + 0.305501, + 0.220553, + 0.77218 + ], + "min": [ + 0.0268529, + 0.024384, + 0.238536 + ], + "type": 35665 + }, + "accessor_13927": { + "bufferView": "bufferView_18316", + "byteOffset": 6015792, + "byteStride": 12, + "count": 5814, + "max": [ + 0.855066, + 0.783506, + 0.848586 + ], + "min": [ + -0.855066, + -0.783506, + -0.848586 + ], + "type": 35665 + }, + "accessor_13937": { + "bufferView": "bufferView_18315", + "byteOffset": 709036, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_13939": { + "bufferView": "bufferView_18316", + "byteOffset": 6090552, + "byteStride": 12, + "count": 2, + "max": [ + 0.20571, + 0.0499872, + 0.73594 + ], + "min": [ + 0.205405, + 0.0376733, + 0.723717 + ], + "type": 35665 + }, + "accessor_13955": { + "bufferView": "bufferView_18315", + "byteOffset": 709040, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_13957": { + "bufferView": "bufferView_18316", + "byteOffset": 6090576, + "byteStride": 12, + "count": 324, + "max": [ + 0.145207, + 1.46304, + 0.145115 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_13959": { + "bufferView": "bufferView_18316", + "byteOffset": 6094464, + "byteStride": 12, + "count": 324, + "max": [ + 0.98387, + 1, + 0.984085 + ], + "min": [ + -0.98387, + -1, + -0.984085 + ], + "type": 35665 + }, + "accessor_13975": { + "bufferView": "bufferView_18315", + "byteOffset": 709808, + "byteStride": 0, + "count": 960, + "type": 5123 + }, + "accessor_13977": { + "bufferView": "bufferView_18316", + "byteOffset": 6098352, + "byteStride": 12, + "count": 780, + "max": [ + 0.334213, + 0.231648, + 0.477957 + ], + "min": [ + 0.139172, + 0.121859, + 0.282915 + ], + "type": 35665 + }, + "accessor_13979": { + "bufferView": "bufferView_18316", + "byteOffset": 6107712, + "byteStride": 12, + "count": 780, + "max": [ + 0.983955, + 1, + 0.983767 + ], + "min": [ + -0.983955, + -1, + -0.983767 + ], + "type": 35665 + }, + "accessor_13995": { + "bufferView": "bufferView_18315", + "byteOffset": 711728, + "byteStride": 0, + "count": 3870, + "type": 5123 + }, + "accessor_13997": { + "bufferView": "bufferView_18316", + "byteOffset": 6117072, + "byteStride": 12, + "count": 3622, + "max": [ + 0.346405, + 0.231648, + 0.490149 + ], + "min": [ + 0.00896112, + 0, + 0.0226466 + ], + "type": 35665 + }, + "accessor_13999": { + "bufferView": "bufferView_18316", + "byteOffset": 6160536, + "byteStride": 12, + "count": 3622, + "max": [ + 0.999888, + 1, + 0.999888 + ], + "min": [ + -0.999888, + -1, + -0.999888 + ], + "type": 35665 + }, + "accessor_140": { + "bufferView": "bufferView_18316", + "byteOffset": 5449584, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_14015": { + "bufferView": "bufferView_18315", + "byteOffset": 719468, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_14017": { + "bufferView": "bufferView_18316", + "byteOffset": 6204000, + "byteStride": 12, + "count": 1139, + "max": [ + 0.213025, + 0.219517, + 0.103449 + ], + "min": [ + 0, + 3.048e-05, + 0 + ], + "type": 35665 + }, + "accessor_14019": { + "bufferView": "bufferView_18316", + "byteOffset": 6217668, + "byteStride": 12, + "count": 1139, + "max": [ + 0.929851, + 1, + 0.930126 + ], + "min": [ + -0.929851, + -1, + -0.930126 + ], + "type": 35665 + }, + "accessor_14035": { + "bufferView": "bufferView_18315", + "byteOffset": 721772, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_14037": { + "bufferView": "bufferView_18316", + "byteOffset": 6231336, + "byteStride": 12, + "count": 384, + "max": [ + 0.405323, + 0.14731, + 0.733958 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_14039": { + "bufferView": "bufferView_18316", + "byteOffset": 6235944, + "byteStride": 12, + "count": 384, + "max": [ + 0.929772, + 0.999999, + 0.930152 + ], + "min": [ + -0.929772, + -0.999999, + -0.930152 + ], + "type": 35665 + }, + "accessor_14055": { + "bufferView": "bufferView_18315", + "byteOffset": 722540, + "byteStride": 0, + "count": 3876, + "type": 5123 + }, + "accessor_14057": { + "bufferView": "bufferView_18316", + "byteOffset": 6240552, + "byteStride": 12, + "count": 3756, + "max": [ + 0.422148, + 0.244053, + 0.511241 + ], + "min": [ + 0.0452933, + 0, + 0.0178308 + ], + "type": 35665 + }, + "accessor_14059": { + "bufferView": "bufferView_18316", + "byteOffset": 6285624, + "byteStride": 12, + "count": 3756, + "max": [ + 0.983955, + 1, + 0.996623 + ], + "min": [ + -0.983955, + -1, + -0.996623 + ], + "type": 35665 + }, + "accessor_14075": { + "bufferView": "bufferView_18315", + "byteOffset": 730292, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_14077": { + "bufferView": "bufferView_18316", + "byteOffset": 6330696, + "byteStride": 12, + "count": 288, + "max": [ + 0.0991514, + 0.195285, + 0.261549 + ], + "min": [ + 0, + 0.0489509, + 0.107533 + ], + "type": 35665 + }, + "accessor_14079": { + "bufferView": "bufferView_18316", + "byteOffset": 6334152, + "byteStride": 12, + "count": 288, + "max": [ + 0.930155, + 0.980911, + 0.912278 + ], + "min": [ + -0.930155, + -0.980911, + -0.912278 + ], + "type": 35665 + }, + "accessor_1408": { + "bufferView": "bufferView_18315", + "byteOffset": 731444, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_14095": { + "bufferView": "bufferView_18315", + "byteOffset": 730868, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_14097": { + "bufferView": "bufferView_18316", + "byteOffset": 6337608, + "byteStride": 12, + "count": 288, + "max": [ + 0.371277, + 0.195072, + 0.153985 + ], + "min": [ + 0.272125, + 0.0487375, + 0 + ], + "type": 35665 + }, + "accessor_14099": { + "bufferView": "bufferView_18316", + "byteOffset": 6341064, + "byteStride": 12, + "count": 288, + "max": [ + 0.930155, + 0.980949, + 0.912278 + ], + "min": [ + -0.930155, + -0.980949, + -0.912278 + ], + "type": 35665 + }, + "accessor_1410": { + "bufferView": "bufferView_18316", + "byteOffset": 6344520, + "byteStride": 12, + "count": 320, + "max": [ + 2.87731, + 0.195224, + 0.341492 + ], + "min": [ + 2.73101, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_14115": { + "bufferView": "bufferView_18315", + "byteOffset": 732596, + "byteStride": 0, + "count": 960, + "type": 5123 + }, + "accessor_14117": { + "bufferView": "bufferView_18316", + "byteOffset": 6352200, + "byteStride": 12, + "count": 780, + "max": [ + 0.334213, + 0.231648, + 0.477957 + ], + "min": [ + 0.139172, + 0.121859, + 0.282915 + ], + "type": 35665 + }, + "accessor_14119": { + "bufferView": "bufferView_18316", + "byteOffset": 6361560, + "byteStride": 12, + "count": 780, + "max": [ + 0.983955, + 1, + 0.983767 + ], + "min": [ + -0.983955, + -1, + -0.983767 + ], + "type": 35665 + }, + "accessor_1412": { + "bufferView": "bufferView_18316", + "byteOffset": 6348360, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_14135": { + "bufferView": "bufferView_18315", + "byteOffset": 734516, + "byteStride": 0, + "count": 3870, + "type": 5123 + }, + "accessor_14137": { + "bufferView": "bufferView_18316", + "byteOffset": 6370920, + "byteStride": 12, + "count": 3622, + "max": [ + 0.346405, + 0.231648, + 0.490149 + ], + "min": [ + 0.00896112, + 0, + 0.0226466 + ], + "type": 35665 + }, + "accessor_14139": { + "bufferView": "bufferView_18316", + "byteOffset": 6414384, + "byteStride": 12, + "count": 3622, + "max": [ + 0.999888, + 1, + 0.999888 + ], + "min": [ + -0.999888, + -1, + -0.999888 + ], + "type": 35665 + }, + "accessor_14155": { + "bufferView": "bufferView_18315", + "byteOffset": 742256, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_14157": { + "bufferView": "bufferView_18316", + "byteOffset": 6457848, + "byteStride": 12, + "count": 1139, + "max": [ + 0.213025, + 0.219517, + 0.103449 + ], + "min": [ + 0, + 3.048e-05, + 0 + ], + "type": 35665 + }, + "accessor_14159": { + "bufferView": "bufferView_18316", + "byteOffset": 6471516, + "byteStride": 12, + "count": 1139, + "max": [ + 0.929851, + 1, + 0.930126 + ], + "min": [ + -0.929851, + -1, + -0.930126 + ], + "type": 35665 + }, + "accessor_14175": { + "bufferView": "bufferView_18315", + "byteOffset": 744560, + "byteStride": 0, + "count": 3876, + "type": 5123 + }, + "accessor_14177": { + "bufferView": "bufferView_18316", + "byteOffset": 6485184, + "byteStride": 12, + "count": 3756, + "max": [ + 0.422148, + 0.244053, + 0.511241 + ], + "min": [ + 0.0452933, + 0, + 0.0178308 + ], + "type": 35665 + }, + "accessor_14179": { + "bufferView": "bufferView_18316", + "byteOffset": 6530256, + "byteStride": 12, + "count": 3756, + "max": [ + 0.983955, + 1, + 0.996623 + ], + "min": [ + -0.983955, + -1, + -0.996623 + ], + "type": 35665 + }, + "accessor_14195": { + "bufferView": "bufferView_18315", + "byteOffset": 752312, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_14197": { + "bufferView": "bufferView_18316", + "byteOffset": 6575328, + "byteStride": 12, + "count": 288, + "max": [ + 0.0991514, + 0.195285, + 0.261549 + ], + "min": [ + 0, + 0.0489509, + 0.107533 + ], + "type": 35665 + }, + "accessor_14199": { + "bufferView": "bufferView_18316", + "byteOffset": 6578784, + "byteStride": 12, + "count": 288, + "max": [ + 0.930155, + 0.980911, + 0.912278 + ], + "min": [ + -0.930155, + -0.980911, + -0.912278 + ], + "type": 35665 + }, + "accessor_14215": { + "bufferView": "bufferView_18315", + "byteOffset": 752888, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_14217": { + "bufferView": "bufferView_18316", + "byteOffset": 6582240, + "byteStride": 12, + "count": 288, + "max": [ + 0.371277, + 0.195072, + 0.153985 + ], + "min": [ + 0.272125, + 0.0487375, + 0 + ], + "type": 35665 + }, + "accessor_14219": { + "bufferView": "bufferView_18316", + "byteOffset": 6585696, + "byteStride": 12, + "count": 288, + "max": [ + 0.930155, + 0.980949, + 0.912278 + ], + "min": [ + -0.930155, + -0.980949, + -0.912278 + ], + "type": 35665 + }, + "accessor_14235": { + "bufferView": "bufferView_18315", + "byteOffset": 753464, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_14237": { + "bufferView": "bufferView_18316", + "byteOffset": 6589152, + "byteStride": 12, + "count": 384, + "max": [ + 0.405323, + 0.14731, + 0.733958 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_14239": { + "bufferView": "bufferView_18316", + "byteOffset": 6593760, + "byteStride": 12, + "count": 384, + "max": [ + 0.929772, + 0.999999, + 0.930152 + ], + "min": [ + -0.929772, + -0.999999, + -0.930152 + ], + "type": 35665 + }, + "accessor_14267": { + "bufferView": "bufferView_18315", + "byteOffset": 754232, + "byteStride": 0, + "count": 369, + "type": 5123 + }, + "accessor_14270": { + "bufferView": "bufferView_18315", + "byteOffset": 754970, + "byteStride": 0, + "count": 369, + "type": 5123 + }, + "accessor_14272": { + "bufferView": "bufferView_18316", + "byteOffset": 6598368, + "byteStride": 12, + "count": 642, + "max": [ + 0.0979932, + 0.48771, + 0.487741 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_14274": { + "bufferView": "bufferView_18316", + "byteOffset": 6606072, + "byteStride": 12, + "count": 642, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1428": { + "bufferView": "bufferView_18315", + "byteOffset": 757184, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1430": { + "bufferView": "bufferView_18316", + "byteOffset": 6629184, + "byteStride": 12, + "count": 320, + "max": [ + 2.38963, + 0.195224, + 0.341492 + ], + "min": [ + 2.24333, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_14302": { + "bufferView": "bufferView_18315", + "byteOffset": 755708, + "byteStride": 0, + "count": 369, + "type": 5123 + }, + "accessor_14305": { + "bufferView": "bufferView_18315", + "byteOffset": 756446, + "byteStride": 0, + "count": 369, + "type": 5123 + }, + "accessor_14307": { + "bufferView": "bufferView_18316", + "byteOffset": 6613776, + "byteStride": 12, + "count": 642, + "max": [ + 0.0979932, + 0.48771, + 0.487741 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_14309": { + "bufferView": "bufferView_18316", + "byteOffset": 6621480, + "byteStride": 12, + "count": 642, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1432": { + "bufferView": "bufferView_18316", + "byteOffset": 6633024, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_14325": { + "bufferView": "bufferView_18315", + "byteOffset": 758336, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14327": { + "bufferView": "bufferView_18316", + "byteOffset": 6636864, + "byteStride": 12, + "count": 690, + "max": [ + 1.22184, + 0.804672, + 0.56128 + ], + "min": [ + 0.838596, + 0, + 0.234864 + ], + "type": 35665 + }, + "accessor_14329": { + "bufferView": "bufferView_18316", + "byteOffset": 6645144, + "byteStride": 12, + "count": 690, + "max": [ + 0.94437, + 1, + 0.973205 + ], + "min": [ + -0.94437, + -1, + -0.973205 + ], + "type": 35665 + }, + "accessor_14345": { + "bufferView": "bufferView_18315", + "byteOffset": 759932, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_14347": { + "bufferView": "bufferView_18316", + "byteOffset": 6653424, + "byteStride": 12, + "count": 650, + "max": [ + 1.23774, + 0.804672, + 0.758165 + ], + "min": [ + 0.890894, + 0, + 0.482868 + ], + "type": 35665 + }, + "accessor_14349": { + "bufferView": "bufferView_18316", + "byteOffset": 6661224, + "byteStride": 12, + "count": 650, + "max": [ + 0.994915, + 1, + 1 + ], + "min": [ + -0.994915, + -1, + -1 + ], + "type": 35665 + }, + "accessor_14365": { + "bufferView": "bufferView_18315", + "byteOffset": 761384, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14367": { + "bufferView": "bufferView_18316", + "byteOffset": 6669024, + "byteStride": 12, + "count": 18, + "max": [ + 1.15169, + 0.804672, + 0.742532 + ], + "min": [ + 1.08034, + 0.67056, + 0.72696 + ], + "type": 35665 + }, + "accessor_14369": { + "bufferView": "bufferView_18316", + "byteOffset": 6669240, + "byteStride": 12, + "count": 18, + "max": [ + 0.211997, + 0.0117743, + 0.980193 + ], + "min": [ + -0.211997, + -0.0117743, + -0.980193 + ], + "type": 35665 + }, + "accessor_14385": { + "bufferView": "bufferView_18315", + "byteOffset": 761420, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14387": { + "bufferView": "bufferView_18316", + "byteOffset": 6669456, + "byteStride": 12, + "count": 690, + "max": [ + 1.10189, + 0.804672, + 0.449418 + ], + "min": [ + 0.74182, + 0, + 0.0636192 + ], + "type": 35665 + }, + "accessor_14389": { + "bufferView": "bufferView_18316", + "byteOffset": 6677736, + "byteStride": 12, + "count": 690, + "max": [ + 0.911927, + 1, + 0.847582 + ], + "min": [ + -0.911927, + -1, + -0.847582 + ], + "type": 35665 + }, + "accessor_14405": { + "bufferView": "bufferView_18315", + "byteOffset": 763016, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_14407": { + "bufferView": "bufferView_18316", + "byteOffset": 6686016, + "byteStride": 12, + "count": 668, + "max": [ + 0.886367, + 0.804672, + 0.371768 + ], + "min": [ + 0.618043, + 0, + 0.00309245 + ], + "type": 35665 + }, + "accessor_14409": { + "bufferView": "bufferView_18316", + "byteOffset": 6694032, + "byteStride": 12, + "count": 668, + "max": [ + 0.99999, + 1, + 0.993922 + ], + "min": [ + -0.99999, + -1, + -0.993922 + ], + "type": 35665 + }, + "accessor_14425": { + "bufferView": "bufferView_18315", + "byteOffset": 764552, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14427": { + "bufferView": "bufferView_18316", + "byteOffset": 6702048, + "byteStride": 12, + "count": 18, + "max": [ + 0.61933, + 0.134112, + 0.14883 + ], + "min": [ + 0.618652, + 0, + 0.0759065 + ], + "type": 35665 + }, + "accessor_14429": { + "bufferView": "bufferView_18316", + "byteOffset": 6702264, + "byteStride": 12, + "count": 18, + "max": [ + 0.999959, + 0.0007971, + 0.0110205 + ], + "min": [ + -0.999959, + -0.0007971, + -0.0110205 + ], + "type": 35665 + }, + "accessor_14445": { + "bufferView": "bufferView_18315", + "byteOffset": 764588, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14447": { + "bufferView": "bufferView_18316", + "byteOffset": 6702480, + "byteStride": 12, + "count": 690, + "max": [ + 0.403423, + 0.804672, + 0.558587 + ], + "min": [ + 0.016418, + 0, + 0.237455 + ], + "type": 35665 + }, + "accessor_14449": { + "bufferView": "bufferView_18316", + "byteOffset": 6710760, + "byteStride": 12, + "count": 690, + "max": [ + 0.943994, + 1, + 0.980107 + ], + "min": [ + -0.943994, + -1, + -0.980107 + ], + "type": 35665 + }, + "accessor_14465": { + "bufferView": "bufferView_18315", + "byteOffset": 766184, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_14467": { + "bufferView": "bufferView_18316", + "byteOffset": 6719040, + "byteStride": 12, + "count": 650, + "max": [ + 0.621678, + 0.804672, + 0.370108 + ], + "min": [ + 0.350907, + 0, + 0.00416487 + ], + "type": 35665 + }, + "accessor_14469": { + "bufferView": "bufferView_18316", + "byteOffset": 6726840, + "byteStride": 12, + "count": 650, + "max": [ + 0.999982, + 1, + 0.994048 + ], + "min": [ + -0.999982, + -1, + -0.994048 + ], + "type": 35665 + }, + "accessor_1448": { + "bufferView": "bufferView_18315", + "byteOffset": 770828, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_14485": { + "bufferView": "bufferView_18315", + "byteOffset": 767636, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14487": { + "bufferView": "bufferView_18316", + "byteOffset": 6734640, + "byteStride": 12, + "count": 690, + "max": [ + 0.500728, + 0.804672, + 0.447002 + ], + "min": [ + 0.13564, + 0, + 0.0657051 + ], + "type": 35665 + }, + "accessor_14489": { + "bufferView": "bufferView_18316", + "byteOffset": 6742920, + "byteStride": 12, + "count": 690, + "max": [ + 0.898201, + 1, + 0.848187 + ], + "min": [ + -0.898201, + -1, + -0.848187 + ], + "type": 35665 + }, + "accessor_1450": { + "bufferView": "bufferView_18316", + "byteOffset": 6767760, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_14505": { + "bufferView": "bufferView_18315", + "byteOffset": 769232, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14507": { + "bufferView": "bufferView_18316", + "byteOffset": 6751200, + "byteStride": 12, + "count": 690, + "max": [ + 0.34906, + 0.804672, + 0.760747 + ], + "min": [ + 0.0021897, + 0, + 0.48545 + ], + "type": 35665 + }, + "accessor_14509": { + "bufferView": "bufferView_18316", + "byteOffset": 6759480, + "byteStride": 12, + "count": 690, + "max": [ + 0.994959, + 1, + 1 + ], + "min": [ + -0.994959, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1452": { + "bufferView": "bufferView_18316", + "byteOffset": 6770544, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_14525": { + "bufferView": "bufferView_18315", + "byteOffset": 771404, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14527": { + "bufferView": "bufferView_18316", + "byteOffset": 6773328, + "byteStride": 12, + "count": 690, + "max": [ + 0.401255, + 0.804672, + 1.0088 + ], + "min": [ + 0.0180293, + 0, + 0.682479 + ], + "type": 35665 + }, + "accessor_14529": { + "bufferView": "bufferView_18316", + "byteOffset": 6781608, + "byteStride": 12, + "count": 690, + "max": [ + 0.944513, + 1, + 0.973305 + ], + "min": [ + -0.944513, + -1, + -0.973305 + ], + "type": 35665 + }, + "accessor_14545": { + "bufferView": "bufferView_18315", + "byteOffset": 773000, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14547": { + "bufferView": "bufferView_18316", + "byteOffset": 6789888, + "byteStride": 12, + "count": 18, + "max": [ + 0.620512, + 0.804672, + 0.149734 + ], + "min": [ + 0.618958, + 0.67056, + 0.0769243 + ], + "type": 35665 + }, + "accessor_14549": { + "bufferView": "bufferView_18316", + "byteOffset": 6790104, + "byteStride": 12, + "count": 18, + "max": [ + 0.999886, + 0.0117743, + 0.0238999 + ], + "min": [ + -0.999886, + -0.0117743, + -0.0238999 + ], + "type": 35665 + }, + "accessor_14565": { + "bufferView": "bufferView_18315", + "byteOffset": 773036, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_14567": { + "bufferView": "bufferView_18316", + "byteOffset": 6790320, + "byteStride": 12, + "count": 668, + "max": [ + 0.890115, + 0.804672, + 1.23971 + ], + "min": [ + 0.618796, + 0, + 0.873533 + ], + "type": 35665 + }, + "accessor_14569": { + "bufferView": "bufferView_18316", + "byteOffset": 6798336, + "byteStride": 12, + "count": 668, + "max": [ + 0.999968, + 1, + 0.993831 + ], + "min": [ + -0.999968, + -1, + -0.993831 + ], + "type": 35665 + }, + "accessor_14585": { + "bufferView": "bufferView_18315", + "byteOffset": 774572, + "byteStride": 0, + "count": 822, + "type": 5123 + }, + "accessor_14587": { + "bufferView": "bufferView_18316", + "byteOffset": 6806352, + "byteStride": 12, + "count": 702, + "max": [ + 1.23774, + 0.804672, + 0.758688 + ], + "min": [ + 0.890839, + 0, + 0.483392 + ], + "type": 35665 + }, + "accessor_14589": { + "bufferView": "bufferView_18316", + "byteOffset": 6814776, + "byteStride": 12, + "count": 702, + "max": [ + 0.994983, + 1, + 1 + ], + "min": [ + -0.994983, + -1, + -1 + ], + "type": 35665 + }, + "accessor_14605": { + "bufferView": "bufferView_18315", + "byteOffset": 776216, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14607": { + "bufferView": "bufferView_18316", + "byteOffset": 6823200, + "byteStride": 12, + "count": 690, + "max": [ + 1.22345, + 0.804672, + 1.00663 + ], + "min": [ + 0.836428, + 0, + 0.685408 + ], + "type": 35665 + }, + "accessor_14609": { + "bufferView": "bufferView_18316", + "byteOffset": 6831480, + "byteStride": 12, + "count": 690, + "max": [ + 0.943851, + 1, + 0.98002 + ], + "min": [ + -0.943851, + -1, + -0.98002 + ], + "type": 35665 + }, + "accessor_14625": { + "bufferView": "bufferView_18315", + "byteOffset": 777812, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14627": { + "bufferView": "bufferView_18316", + "byteOffset": 6839760, + "byteStride": 12, + "count": 690, + "max": [ + 0.622041, + 0.804672, + 1.24079 + ], + "min": [ + 0.353318, + 0, + 0.872056 + ], + "type": 35665 + }, + "accessor_14629": { + "bufferView": "bufferView_18316", + "byteOffset": 6848040, + "byteStride": 12, + "count": 690, + "max": [ + 0.999992, + 1, + 0.993874 + ], + "min": [ + -0.999992, + -1, + -0.993874 + ], + "type": 35665 + }, + "accessor_14645": { + "bufferView": "bufferView_18315", + "byteOffset": 779408, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_14647": { + "bufferView": "bufferView_18316", + "byteOffset": 6856320, + "byteStride": 12, + "count": 680, + "max": [ + 1.22196, + 0.804672, + 0.561516 + ], + "min": [ + 0.838746, + 0, + 0.235284 + ], + "type": 35665 + }, + "accessor_14649": { + "bufferView": "bufferView_18316", + "byteOffset": 6864480, + "byteStride": 12, + "count": 680, + "max": [ + 0.944656, + 1, + 0.973405 + ], + "min": [ + -0.944656, + -1, + -0.973405 + ], + "type": 35665 + }, + "accessor_14665": { + "bufferView": "bufferView_18315", + "byteOffset": 780992, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_14667": { + "bufferView": "bufferView_18316", + "byteOffset": 6872640, + "byteStride": 12, + "count": 690, + "max": [ + 0.497998, + 0.804672, + 1.18014 + ], + "min": [ + 0.137873, + 0, + 0.794364 + ], + "type": 35665 + }, + "accessor_14669": { + "bufferView": "bufferView_18316", + "byteOffset": 6880920, + "byteStride": 12, + "count": 690, + "max": [ + 0.911749, + 1, + 0.847351 + ], + "min": [ + -0.911749, + -1, + -0.847351 + ], + "type": 35665 + }, + "accessor_1468": { + "bufferView": "bufferView_18315", + "byteOffset": 784076, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_14685": { + "bufferView": "bufferView_18315", + "byteOffset": 782588, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_14687": { + "bufferView": "bufferView_18316", + "byteOffset": 6889200, + "byteStride": 12, + "count": 650, + "max": [ + 1.10412, + 0.804672, + 1.17829 + ], + "min": [ + 0.739089, + 0, + 0.796969 + ], + "type": 35665 + }, + "accessor_14689": { + "bufferView": "bufferView_18316", + "byteOffset": 6897000, + "byteStride": 12, + "count": 650, + "max": [ + 0.898392, + 1, + 0.848417 + ], + "min": [ + -0.898392, + -1, + -0.848417 + ], + "type": 35665 + }, + "accessor_1470": { + "bufferView": "bufferView_18316", + "byteOffset": 6905232, + "byteStride": 12, + "count": 208, + "max": [ + 1.56061, + 0.195177, + 0.243923 + ], + "min": [ + 1.36545, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_14705": { + "bufferView": "bufferView_18315", + "byteOffset": 784040, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14707": { + "bufferView": "bufferView_18316", + "byteOffset": 6904800, + "byteStride": 12, + "count": 18, + "max": [ + 0.857984, + 0.134112, + 1.11336 + ], + "min": [ + 0.825743, + 0, + 1.04795 + ], + "type": 35665 + }, + "accessor_14709": { + "bufferView": "bufferView_18316", + "byteOffset": 6905016, + "byteStride": 12, + "count": 18, + "max": [ + 0.897081, + 0.0007971, + 0.443649 + ], + "min": [ + -0.897081, + -0.0007971, + -0.443649 + ], + "type": 35665 + }, + "accessor_1472": { + "bufferView": "bufferView_18316", + "byteOffset": 6907728, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_14725": { + "bufferView": "bufferView_18315", + "byteOffset": 784532, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14727": { + "bufferView": "bufferView_18316", + "byteOffset": 6910224, + "byteStride": 12, + "count": 18, + "max": [ + 0.857266, + 0.804672, + 1.113 + ], + "min": [ + 0.824286, + 0.67056, + 1.04765 + ], + "type": 35665 + }, + "accessor_14729": { + "bufferView": "bufferView_18316", + "byteOffset": 6910440, + "byteStride": 12, + "count": 18, + "max": [ + 0.896817, + 0.0117743, + 0.455144 + ], + "min": [ + -0.896817, + -0.0117743, + -0.455144 + ], + "type": 35665 + }, + "accessor_14745": { + "bufferView": "bufferView_18315", + "byteOffset": 784568, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_14747": { + "bufferView": "bufferView_18316", + "byteOffset": 6910656, + "byteStride": 12, + "count": 18, + "max": [ + 1.04654, + 0.134112, + 0.326994 + ], + "min": [ + 0.989882, + 0, + 0.281078 + ], + "type": 35665 + }, + "accessor_14749": { + "bufferView": "bufferView_18316", + "byteOffset": 6910872, + "byteStride": 12, + "count": 18, + "max": [ + 0.630959, + 0.0007971, + 0.77707 + ], + "min": [ + -0.630959, + -0.0007971, + -0.77707 + ], + "type": 35665 + }, + "accessor_14759": { + "bufferView": "bufferView_18315", + "byteOffset": 784604, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14761": { + "bufferView": "bufferView_18316", + "byteOffset": 6911088, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72696 + ], + "min": [ + 1.08034, + 0.024384, + 0.516433 + ], + "type": 35665 + }, + "accessor_14771": { + "bufferView": "bufferView_18315", + "byteOffset": 784612, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14773": { + "bufferView": "bufferView_18316", + "byteOffset": 6911124, + "byteStride": 12, + "count": 3, + "max": [ + 1.18718, + 0.402336, + 0.750364 + ], + "min": [ + 1.15145, + 0.134112, + 0.742532 + ], + "type": 35665 + }, + "accessor_14783": { + "bufferView": "bufferView_18315", + "byteOffset": 784620, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14785": { + "bufferView": "bufferView_18316", + "byteOffset": 6911160, + "byteStride": 12, + "count": 3, + "max": [ + 1.18648, + 0.402336, + 0.499838 + ], + "min": [ + 1.1511, + 0.134112, + 0.490637 + ], + "type": 35665 + }, + "accessor_14795": { + "bufferView": "bufferView_18315", + "byteOffset": 784628, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14797": { + "bufferView": "bufferView_18316", + "byteOffset": 6911196, + "byteStride": 12, + "count": 3, + "max": [ + 1.08029, + 0.024384, + 0.51668 + ], + "min": [ + 0.989625, + 0.024384, + 0.326672 + ], + "type": 35665 + }, + "accessor_14807": { + "bufferView": "bufferView_18315", + "byteOffset": 784636, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14809": { + "bufferView": "bufferView_18316", + "byteOffset": 6911232, + "byteStride": 12, + "count": 3, + "max": [ + 0.988947, + 0.024384, + 0.327273 + ], + "min": [ + 0.824786, + 0.024384, + 0.195465 + ], + "type": 35665 + }, + "accessor_14819": { + "bufferView": "bufferView_18315", + "byteOffset": 784644, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14821": { + "bufferView": "bufferView_18316", + "byteOffset": 6911268, + "byteStride": 12, + "count": 3, + "max": [ + 1.07367, + 0.402336, + 0.281357 + ], + "min": [ + 1.04543, + 0.134112, + 0.257772 + ], + "type": 35665 + }, + "accessor_14831": { + "bufferView": "bufferView_18315", + "byteOffset": 784652, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14833": { + "bufferView": "bufferView_18316", + "byteOffset": 6911304, + "byteStride": 12, + "count": 3, + "max": [ + 0.824436, + 0.024384, + 0.196301 + ], + "min": [ + 0.61933, + 0.024384, + 0.14883 + ], + "type": 35665 + }, + "accessor_14843": { + "bufferView": "bufferView_18315", + "byteOffset": 784660, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14845": { + "bufferView": "bufferView_18316", + "byteOffset": 6911340, + "byteStride": 12, + "count": 3, + "max": [ + 0.870891, + 0.402336, + 0.130415 + ], + "min": [ + 0.855385, + 0.134112, + 0.0971235 + ], + "type": 35665 + }, + "accessor_14855": { + "bufferView": "bufferView_18315", + "byteOffset": 784668, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14857": { + "bufferView": "bufferView_18316", + "byteOffset": 6911376, + "byteStride": 12, + "count": 3, + "max": [ + 0.193679, + 0.402336, + 0.28238 + ], + "min": [ + 0.164539, + 0.134112, + 0.259904 + ], + "type": 35665 + }, + "accessor_14867": { + "bufferView": "bufferView_18315", + "byteOffset": 784676, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14869": { + "bufferView": "bufferView_18316", + "byteOffset": 6911412, + "byteStride": 12, + "count": 3, + "max": [ + 0.250955, + 0.024384, + 0.516561 + ], + "min": [ + 0.158739, + 0.024384, + 0.327303 + ], + "type": 35665 + }, + "accessor_14879": { + "bufferView": "bufferView_18315", + "byteOffset": 784684, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1488": { + "bufferView": "bufferView_18315", + "byteOffset": 784700, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_14881": { + "bufferView": "bufferView_18316", + "byteOffset": 6911448, + "byteStride": 12, + "count": 3, + "max": [ + 0.0885313, + 0.402336, + 0.501114 + ], + "min": [ + 0.0527994, + 0.134112, + 0.493267 + ], + "type": 35665 + }, + "accessor_14891": { + "bufferView": "bufferView_18315", + "byteOffset": 784692, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14893": { + "bufferView": "bufferView_18316", + "byteOffset": 6911484, + "byteStride": 12, + "count": 3, + "max": [ + 0.619963, + 0.402336, + 0.0769445 + ], + "min": [ + 0.618891, + 0.134112, + 0.0405446 + ], + "type": 35665 + }, + "accessor_1490": { + "bufferView": "bufferView_18316", + "byteOffset": 6911520, + "byteStride": 12, + "count": 320, + "max": [ + 1.65811, + 0.195224, + 0.341492 + ], + "min": [ + 1.51181, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_14903": { + "bufferView": "bufferView_18315", + "byteOffset": 785852, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14905": { + "bufferView": "bufferView_18316", + "byteOffset": 6919200, + "byteStride": 12, + "count": 3, + "max": [ + 0.159631, + 0.024384, + 0.727244 + ], + "min": [ + 0.147732, + 0.024384, + 0.516717 + ], + "type": 35665 + }, + "accessor_14915": { + "bufferView": "bufferView_18315", + "byteOffset": 785860, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14917": { + "bufferView": "bufferView_18316", + "byteOffset": 6919236, + "byteStride": 12, + "count": 3, + "max": [ + 0.620512, + 0.024384, + 0.195522 + ], + "min": [ + 0.415022, + 0.024384, + 0.149734 + ], + "type": 35665 + }, + "accessor_1492": { + "bufferView": "bufferView_18316", + "byteOffset": 6915360, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_14927": { + "bufferView": "bufferView_18315", + "byteOffset": 785868, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14929": { + "bufferView": "bufferView_18316", + "byteOffset": 6919272, + "byteStride": 12, + "count": 3, + "max": [ + 0.415456, + 0.024384, + 0.326775 + ], + "min": [ + 0.250219, + 0.024384, + 0.196317 + ], + "type": 35665 + }, + "accessor_14939": { + "bufferView": "bufferView_18315", + "byteOffset": 785876, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14941": { + "bufferView": "bufferView_18316", + "byteOffset": 6919308, + "byteStride": 12, + "count": 3, + "max": [ + 0.383361, + 0.402336, + 0.130982 + ], + "min": [ + 0.366592, + 0.134112, + 0.0983342 + ], + "type": 35665 + }, + "accessor_14951": { + "bufferView": "bufferView_18315", + "byteOffset": 785884, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14953": { + "bufferView": "bufferView_18316", + "byteOffset": 6919344, + "byteStride": 12, + "count": 3, + "max": [ + 0.0887701, + 0.402336, + 0.752994 + ], + "min": [ + 0.053393, + 0.134112, + 0.743808 + ], + "type": 35665 + }, + "accessor_14963": { + "bufferView": "bufferView_18315", + "byteOffset": 785892, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14965": { + "bufferView": "bufferView_18316", + "byteOffset": 6919380, + "byteStride": 12, + "count": 3, + "max": [ + 0.194348, + 0.402336, + 0.985908 + ], + "min": [ + 0.166098, + 0.134112, + 0.962335 + ], + "type": 35665 + }, + "accessor_14975": { + "bufferView": "bufferView_18315", + "byteOffset": 785900, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14977": { + "bufferView": "bufferView_18316", + "byteOffset": 6919416, + "byteStride": 12, + "count": 3, + "max": [ + 1.18707, + 0.402336, + 0.750856 + ], + "min": [ + 1.15134, + 0.134112, + 0.742994 + ], + "type": 35665 + }, + "accessor_14987": { + "bufferView": "bufferView_18315", + "byteOffset": 785908, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_14989": { + "bufferView": "bufferView_18316", + "byteOffset": 6919452, + "byteStride": 12, + "count": 3, + "max": [ + 1.07523, + 0.402336, + 0.984171 + ], + "min": [ + 1.0461, + 0.134112, + 0.961682 + ], + "type": 35665 + }, + "accessor_14999": { + "bufferView": "bufferView_18315", + "byteOffset": 785916, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15001": { + "bufferView": "bufferView_18316", + "byteOffset": 6919488, + "byteStride": 12, + "count": 3, + "max": [ + 1.18659, + 0.402336, + 0.500299 + ], + "min": [ + 1.15121, + 0.134112, + 0.491129 + ], + "type": 35665 + }, + "accessor_15011": { + "bufferView": "bufferView_18315", + "byteOffset": 785924, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15013": { + "bufferView": "bufferView_18316", + "byteOffset": 6919524, + "byteStride": 12, + "count": 3, + "max": [ + 0.384328, + 0.402336, + 1.14664 + ], + "min": [ + 0.368808, + 0.134112, + 1.11336 + ], + "type": 35665 + }, + "accessor_15023": { + "bufferView": "bufferView_18315", + "byteOffset": 785932, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15025": { + "bufferView": "bufferView_18316", + "byteOffset": 6919560, + "byteStride": 12, + "count": 3, + "max": [ + 1.08114, + 0.024384, + 0.916734 + ], + "min": [ + 0.988843, + 0.024384, + 0.727517 + ], + "type": 35665 + }, + "accessor_15035": { + "bufferView": "bufferView_18315", + "byteOffset": 785940, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15037": { + "bufferView": "bufferView_18316", + "byteOffset": 6919596, + "byteStride": 12, + "count": 3, + "max": [ + 0.250173, + 0.024384, + 0.917044 + ], + "min": [ + 0.159594, + 0.024384, + 0.726997 + ], + "type": 35665 + }, + "accessor_15047": { + "bufferView": "bufferView_18315", + "byteOffset": 785948, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15049": { + "bufferView": "bufferView_18316", + "byteOffset": 6919632, + "byteStride": 12, + "count": 3, + "max": [ + 0.873107, + 0.402336, + 1.14565 + ], + "min": [ + 0.856352, + 0.134112, + 1.113 + ], + "type": 35665 + }, + "accessor_15059": { + "bufferView": "bufferView_18315", + "byteOffset": 785956, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15061": { + "bufferView": "bufferView_18316", + "byteOffset": 6919668, + "byteStride": 12, + "count": 3, + "max": [ + 0.989579, + 0.024384, + 1.04765 + ], + "min": [ + 0.824286, + 0.024384, + 0.917263 + ], + "type": 35665 + }, + "accessor_15071": { + "bufferView": "bufferView_18315", + "byteOffset": 785964, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15073": { + "bufferView": "bufferView_18316", + "byteOffset": 6919704, + "byteStride": 12, + "count": 3, + "max": [ + 1.08038, + 0.024384, + 0.51708 + ], + "min": [ + 0.989882, + 0.024384, + 0.326994 + ], + "type": 35665 + }, + "accessor_1508": { + "bufferView": "bufferView_18315", + "byteOffset": 785972, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_15083": { + "bufferView": "bufferView_18315", + "byteOffset": 787124, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15085": { + "bufferView": "bufferView_18316", + "byteOffset": 6927420, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72736 + ], + "min": [ + 1.08025, + 0.024384, + 0.516834 + ], + "type": 35665 + }, + "accessor_15095": { + "bufferView": "bufferView_18315", + "byteOffset": 787132, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15097": { + "bufferView": "bufferView_18316", + "byteOffset": 6927456, + "byteStride": 12, + "count": 3, + "max": [ + 0.414955, + 0.024384, + 1.04832 + ], + "min": [ + 0.250851, + 0.024384, + 0.916443 + ], + "type": 35665 + }, + "accessor_1510": { + "bufferView": "bufferView_18316", + "byteOffset": 6919740, + "byteStride": 12, + "count": 320, + "max": [ + 2.14579, + 0.195224, + 0.341492 + ], + "min": [ + 1.99949, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_15107": { + "bufferView": "bufferView_18315", + "byteOffset": 787140, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15109": { + "bufferView": "bufferView_18316", + "byteOffset": 6927492, + "byteStride": 12, + "count": 3, + "max": [ + 0.825743, + 0.024384, + 1.09414 + ], + "min": [ + 0.620344, + 0.024384, + 1.04795 + ], + "type": 35665 + }, + "accessor_15119": { + "bufferView": "bufferView_18315", + "byteOffset": 787148, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1512": { + "bufferView": "bufferView_18316", + "byteOffset": 6923580, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_15121": { + "bufferView": "bufferView_18316", + "byteOffset": 6927528, + "byteStride": 12, + "count": 3, + "max": [ + 0.62218, + 0.402336, + 1.20333 + ], + "min": [ + 0.621036, + 0.134112, + 1.16693 + ], + "type": 35665 + }, + "accessor_15131": { + "bufferView": "bufferView_18315", + "byteOffset": 787156, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15133": { + "bufferView": "bufferView_18316", + "byteOffset": 6927564, + "byteStride": 12, + "count": 3, + "max": [ + 0.620391, + 0.024384, + 1.09505 + ], + "min": [ + 0.415305, + 0.024384, + 1.04749 + ], + "type": 35665 + }, + "accessor_15149": { + "bufferView": "bufferView_18315", + "byteOffset": 787620, + "byteStride": 0, + "count": 8400, + "type": 5123 + }, + "accessor_15151": { + "bufferView": "bufferView_18316", + "byteOffset": 6932592, + "byteStride": 12, + "count": 5996, + "max": [ + 0.927384, + 0.707136, + 0.927384 + ], + "min": [ + -0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_15153": { + "bufferView": "bufferView_18316", + "byteOffset": 7004544, + "byteStride": 12, + "count": 5996, + "max": [ + 0.999277, + 1, + 0.999241 + ], + "min": [ + -0.999277, + -1, + -0.999241 + ], + "type": 35665 + }, + "accessor_15169": { + "bufferView": "bufferView_18315", + "byteOffset": 804420, + "byteStride": 0, + "count": 14988, + "type": 5123 + }, + "accessor_15171": { + "bufferView": "bufferView_18316", + "byteOffset": 7076496, + "byteStride": 12, + "count": 8051, + "max": [ + 0.721187, + 0.512064, + 0.719907 + ], + "min": [ + 0.206197, + 0.18288, + 0.207477 + ], + "type": 35665 + }, + "accessor_15173": { + "bufferView": "bufferView_18316", + "byteOffset": 7173108, + "byteStride": 12, + "count": 8051, + "max": [ + 0.998081, + 1, + 1 + ], + "min": [ + -0.998081, + -1, + -1 + ], + "type": 35665 + }, + "accessor_15189": { + "bufferView": "bufferView_18315", + "byteOffset": 834396, + "byteStride": 0, + "count": 1392, + "type": 5123 + }, + "accessor_15191": { + "bufferView": "bufferView_18316", + "byteOffset": 7269720, + "byteStride": 12, + "count": 918, + "max": [ + 0.57351, + 0.6096, + 0.573316 + ], + "min": [ + 0.354177, + 0.36576, + 0.353983 + ], + "type": 35665 + }, + "accessor_15193": { + "bufferView": "bufferView_18316", + "byteOffset": 7280736, + "byteStride": 12, + "count": 918, + "max": [ + 0.998666, + 1, + 0.998631 + ], + "min": [ + -0.998666, + -1, + -0.998631 + ], + "type": 35665 + }, + "accessor_15203": { + "bufferView": "bufferView_18315", + "byteOffset": 837180, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_15205": { + "bufferView": "bufferView_18316", + "byteOffset": 7291752, + "byteStride": 12, + "count": 2, + "max": [ + 0.316793, + 0.390144, + 0.536875 + ], + "min": [ + 0.315986, + 0.390144, + 0.536071 + ], + "type": 35665 + }, + "accessor_15221": { + "bufferView": "bufferView_18315", + "byteOffset": 837184, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15223": { + "bufferView": "bufferView_18316", + "byteOffset": 7291776, + "byteStride": 12, + "count": 690, + "max": [ + 1.22184, + 0.804672, + 0.56128 + ], + "min": [ + 0.838596, + 0, + 0.234864 + ], + "type": 35665 + }, + "accessor_15225": { + "bufferView": "bufferView_18316", + "byteOffset": 7300056, + "byteStride": 12, + "count": 690, + "max": [ + 0.94437, + 1, + 0.973205 + ], + "min": [ + -0.94437, + -1, + -0.973205 + ], + "type": 35665 + }, + "accessor_15241": { + "bufferView": "bufferView_18315", + "byteOffset": 838780, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_15243": { + "bufferView": "bufferView_18316", + "byteOffset": 7308336, + "byteStride": 12, + "count": 650, + "max": [ + 1.23774, + 0.804672, + 0.758165 + ], + "min": [ + 0.890894, + 0, + 0.482868 + ], + "type": 35665 + }, + "accessor_15245": { + "bufferView": "bufferView_18316", + "byteOffset": 7316136, + "byteStride": 12, + "count": 650, + "max": [ + 0.994915, + 1, + 1 + ], + "min": [ + -0.994915, + -1, + -1 + ], + "type": 35665 + }, + "accessor_15261": { + "bufferView": "bufferView_18315", + "byteOffset": 840232, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15263": { + "bufferView": "bufferView_18316", + "byteOffset": 7323936, + "byteStride": 12, + "count": 18, + "max": [ + 1.15169, + 0.804672, + 0.742532 + ], + "min": [ + 1.08034, + 0.67056, + 0.72696 + ], + "type": 35665 + }, + "accessor_15265": { + "bufferView": "bufferView_18316", + "byteOffset": 7324152, + "byteStride": 12, + "count": 18, + "max": [ + 0.211997, + 0.0117743, + 0.980193 + ], + "min": [ + -0.211997, + -0.0117743, + -0.980193 + ], + "type": 35665 + }, + "accessor_1528": { + "bufferView": "bufferView_18315", + "byteOffset": 840268, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_15281": { + "bufferView": "bufferView_18315", + "byteOffset": 840844, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15283": { + "bufferView": "bufferView_18316", + "byteOffset": 7329936, + "byteStride": 12, + "count": 690, + "max": [ + 1.10189, + 0.804672, + 0.449418 + ], + "min": [ + 0.74182, + 0, + 0.0636192 + ], + "type": 35665 + }, + "accessor_15285": { + "bufferView": "bufferView_18316", + "byteOffset": 7338216, + "byteStride": 12, + "count": 690, + "max": [ + 0.911927, + 1, + 0.847582 + ], + "min": [ + -0.911927, + -1, + -0.847582 + ], + "type": 35665 + }, + "accessor_1530": { + "bufferView": "bufferView_18316", + "byteOffset": 7324368, + "byteStride": 12, + "count": 232, + "max": [ + 2.24333, + 0.170683, + 0.073218 + ], + "min": [ + 2.14577, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_15301": { + "bufferView": "bufferView_18315", + "byteOffset": 842440, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_15303": { + "bufferView": "bufferView_18316", + "byteOffset": 7346496, + "byteStride": 12, + "count": 668, + "max": [ + 0.886367, + 0.804672, + 0.371768 + ], + "min": [ + 0.618043, + 0, + 0.00309245 + ], + "type": 35665 + }, + "accessor_15305": { + "bufferView": "bufferView_18316", + "byteOffset": 7354512, + "byteStride": 12, + "count": 668, + "max": [ + 0.99999, + 1, + 0.993922 + ], + "min": [ + -0.99999, + -1, + -0.993922 + ], + "type": 35665 + }, + "accessor_1532": { + "bufferView": "bufferView_18316", + "byteOffset": 7327152, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_15321": { + "bufferView": "bufferView_18315", + "byteOffset": 843976, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15323": { + "bufferView": "bufferView_18316", + "byteOffset": 7362528, + "byteStride": 12, + "count": 18, + "max": [ + 0.61933, + 0.134112, + 0.14883 + ], + "min": [ + 0.618652, + 0, + 0.0759065 + ], + "type": 35665 + }, + "accessor_15325": { + "bufferView": "bufferView_18316", + "byteOffset": 7362744, + "byteStride": 12, + "count": 18, + "max": [ + 0.999959, + 0.0007971, + 0.0110205 + ], + "min": [ + -0.999959, + -0.0007971, + -0.0110205 + ], + "type": 35665 + }, + "accessor_15341": { + "bufferView": "bufferView_18315", + "byteOffset": 844012, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15343": { + "bufferView": "bufferView_18316", + "byteOffset": 7362960, + "byteStride": 12, + "count": 690, + "max": [ + 0.403423, + 0.804672, + 0.558587 + ], + "min": [ + 0.016418, + 0, + 0.237455 + ], + "type": 35665 + }, + "accessor_15345": { + "bufferView": "bufferView_18316", + "byteOffset": 7371240, + "byteStride": 12, + "count": 690, + "max": [ + 0.943994, + 1, + 0.980107 + ], + "min": [ + -0.943994, + -1, + -0.980107 + ], + "type": 35665 + }, + "accessor_15361": { + "bufferView": "bufferView_18315", + "byteOffset": 845608, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_15363": { + "bufferView": "bufferView_18316", + "byteOffset": 7379520, + "byteStride": 12, + "count": 650, + "max": [ + 0.621678, + 0.804672, + 0.370108 + ], + "min": [ + 0.350907, + 0, + 0.00416487 + ], + "type": 35665 + }, + "accessor_15365": { + "bufferView": "bufferView_18316", + "byteOffset": 7387320, + "byteStride": 12, + "count": 650, + "max": [ + 0.999982, + 1, + 0.994048 + ], + "min": [ + -0.999982, + -1, + -0.994048 + ], + "type": 35665 + }, + "accessor_15381": { + "bufferView": "bufferView_18315", + "byteOffset": 847060, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15383": { + "bufferView": "bufferView_18316", + "byteOffset": 7395120, + "byteStride": 12, + "count": 689, + "max": [ + 0.34906, + 0.804672, + 0.760747 + ], + "min": [ + 0.0021897, + 0, + 0.48545 + ], + "type": 35665 + }, + "accessor_15385": { + "bufferView": "bufferView_18316", + "byteOffset": 7403388, + "byteStride": 12, + "count": 689, + "max": [ + 0.994959, + 1, + 1 + ], + "min": [ + -0.994959, + -1, + -1 + ], + "type": 35665 + }, + "accessor_15401": { + "bufferView": "bufferView_18315", + "byteOffset": 848656, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15403": { + "bufferView": "bufferView_18316", + "byteOffset": 7411656, + "byteStride": 12, + "count": 690, + "max": [ + 0.500728, + 0.804672, + 0.447002 + ], + "min": [ + 0.13564, + 0, + 0.0657051 + ], + "type": 35665 + }, + "accessor_15405": { + "bufferView": "bufferView_18316", + "byteOffset": 7419936, + "byteStride": 12, + "count": 690, + "max": [ + 0.898201, + 1, + 0.848187 + ], + "min": [ + -0.898201, + -1, + -0.848187 + ], + "type": 35665 + }, + "accessor_15421": { + "bufferView": "bufferView_18315", + "byteOffset": 850252, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15423": { + "bufferView": "bufferView_18316", + "byteOffset": 7428216, + "byteStride": 12, + "count": 690, + "max": [ + 0.401255, + 0.804672, + 1.0088 + ], + "min": [ + 0.0180293, + 0, + 0.682479 + ], + "type": 35665 + }, + "accessor_15425": { + "bufferView": "bufferView_18316", + "byteOffset": 7436496, + "byteStride": 12, + "count": 690, + "max": [ + 0.944513, + 1, + 0.973305 + ], + "min": [ + -0.944513, + -1, + -0.973305 + ], + "type": 35665 + }, + "accessor_15441": { + "bufferView": "bufferView_18315", + "byteOffset": 851848, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15443": { + "bufferView": "bufferView_18316", + "byteOffset": 7444776, + "byteStride": 12, + "count": 18, + "max": [ + 0.620512, + 0.804672, + 0.149734 + ], + "min": [ + 0.618958, + 0.67056, + 0.0769243 + ], + "type": 35665 + }, + "accessor_15445": { + "bufferView": "bufferView_18316", + "byteOffset": 7444992, + "byteStride": 12, + "count": 18, + "max": [ + 0.999886, + 0.0117743, + 0.0238999 + ], + "min": [ + -0.999886, + -0.0117743, + -0.0238999 + ], + "type": 35665 + }, + "accessor_15461": { + "bufferView": "bufferView_18315", + "byteOffset": 851884, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_15463": { + "bufferView": "bufferView_18316", + "byteOffset": 7445208, + "byteStride": 12, + "count": 668, + "max": [ + 0.890115, + 0.804672, + 1.23971 + ], + "min": [ + 0.618796, + 0, + 0.873533 + ], + "type": 35665 + }, + "accessor_15465": { + "bufferView": "bufferView_18316", + "byteOffset": 7453224, + "byteStride": 12, + "count": 668, + "max": [ + 0.999968, + 1, + 0.993831 + ], + "min": [ + -0.999968, + -1, + -0.993831 + ], + "type": 35665 + }, + "accessor_1548": { + "bufferView": "bufferView_18315", + "byteOffset": 853420, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_15481": { + "bufferView": "bufferView_18315", + "byteOffset": 853876, + "byteStride": 0, + "count": 822, + "type": 5123 + }, + "accessor_15483": { + "bufferView": "bufferView_18316", + "byteOffset": 7466232, + "byteStride": 12, + "count": 702, + "max": [ + 1.23774, + 0.804672, + 0.758688 + ], + "min": [ + 0.890839, + 0, + 0.483392 + ], + "type": 35665 + }, + "accessor_15485": { + "bufferView": "bufferView_18316", + "byteOffset": 7474656, + "byteStride": 12, + "count": 702, + "max": [ + 0.994983, + 1, + 1 + ], + "min": [ + -0.994983, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1550": { + "bufferView": "bufferView_18316", + "byteOffset": 7461240, + "byteStride": 12, + "count": 208, + "max": [ + 2.29213, + 0.195177, + 0.243923 + ], + "min": [ + 2.09697, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_15501": { + "bufferView": "bufferView_18315", + "byteOffset": 855520, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15503": { + "bufferView": "bufferView_18316", + "byteOffset": 7483080, + "byteStride": 12, + "count": 690, + "max": [ + 1.22345, + 0.804672, + 1.00663 + ], + "min": [ + 0.836428, + 0, + 0.685408 + ], + "type": 35665 + }, + "accessor_15505": { + "bufferView": "bufferView_18316", + "byteOffset": 7491360, + "byteStride": 12, + "count": 690, + "max": [ + 0.943851, + 1, + 0.98002 + ], + "min": [ + -0.943851, + -1, + -0.98002 + ], + "type": 35665 + }, + "accessor_1552": { + "bufferView": "bufferView_18316", + "byteOffset": 7463736, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_15521": { + "bufferView": "bufferView_18315", + "byteOffset": 857116, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15523": { + "bufferView": "bufferView_18316", + "byteOffset": 7499640, + "byteStride": 12, + "count": 690, + "max": [ + 0.622041, + 0.804672, + 1.24079 + ], + "min": [ + 0.353318, + 0, + 0.872056 + ], + "type": 35665 + }, + "accessor_15525": { + "bufferView": "bufferView_18316", + "byteOffset": 7507920, + "byteStride": 12, + "count": 690, + "max": [ + 0.999992, + 1, + 0.993874 + ], + "min": [ + -0.999992, + -1, + -0.993874 + ], + "type": 35665 + }, + "accessor_15541": { + "bufferView": "bufferView_18315", + "byteOffset": 858712, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_15543": { + "bufferView": "bufferView_18316", + "byteOffset": 7516200, + "byteStride": 12, + "count": 680, + "max": [ + 1.22196, + 0.804672, + 0.561516 + ], + "min": [ + 0.838746, + 0, + 0.235284 + ], + "type": 35665 + }, + "accessor_15545": { + "bufferView": "bufferView_18316", + "byteOffset": 7524360, + "byteStride": 12, + "count": 680, + "max": [ + 0.944656, + 1, + 0.973405 + ], + "min": [ + -0.944656, + -1, + -0.973405 + ], + "type": 35665 + }, + "accessor_15561": { + "bufferView": "bufferView_18315", + "byteOffset": 860296, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_15563": { + "bufferView": "bufferView_18316", + "byteOffset": 7532520, + "byteStride": 12, + "count": 690, + "max": [ + 0.497998, + 0.804672, + 1.18014 + ], + "min": [ + 0.137873, + 0, + 0.794364 + ], + "type": 35665 + }, + "accessor_15565": { + "bufferView": "bufferView_18316", + "byteOffset": 7540800, + "byteStride": 12, + "count": 690, + "max": [ + 0.911749, + 1, + 0.847351 + ], + "min": [ + -0.911749, + -1, + -0.847351 + ], + "type": 35665 + }, + "accessor_15581": { + "bufferView": "bufferView_18315", + "byteOffset": 861892, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_15583": { + "bufferView": "bufferView_18316", + "byteOffset": 7549080, + "byteStride": 12, + "count": 650, + "max": [ + 1.10412, + 0.804672, + 1.17829 + ], + "min": [ + 0.739089, + 0, + 0.796969 + ], + "type": 35665 + }, + "accessor_15585": { + "bufferView": "bufferView_18316", + "byteOffset": 7556880, + "byteStride": 12, + "count": 650, + "max": [ + 0.898392, + 1, + 0.848417 + ], + "min": [ + -0.898392, + -1, + -0.848417 + ], + "type": 35665 + }, + "accessor_156": { + "bufferView": "bufferView_18315", + "byteOffset": 787164, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_15601": { + "bufferView": "bufferView_18315", + "byteOffset": 863344, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15603": { + "bufferView": "bufferView_18316", + "byteOffset": 7564680, + "byteStride": 12, + "count": 18, + "max": [ + 0.857984, + 0.134112, + 1.11336 + ], + "min": [ + 0.825743, + 0, + 1.04795 + ], + "type": 35665 + }, + "accessor_15605": { + "bufferView": "bufferView_18316", + "byteOffset": 7564896, + "byteStride": 12, + "count": 18, + "max": [ + 0.897081, + 0.0007971, + 0.443649 + ], + "min": [ + -0.897081, + -0.0007971, + -0.443649 + ], + "type": 35665 + }, + "accessor_15621": { + "bufferView": "bufferView_18315", + "byteOffset": 863380, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15623": { + "bufferView": "bufferView_18316", + "byteOffset": 7565112, + "byteStride": 12, + "count": 18, + "max": [ + 0.857266, + 0.804672, + 1.113 + ], + "min": [ + 0.824286, + 0.67056, + 1.04765 + ], + "type": 35665 + }, + "accessor_15625": { + "bufferView": "bufferView_18316", + "byteOffset": 7565328, + "byteStride": 12, + "count": 18, + "max": [ + 0.896817, + 0.0117743, + 0.455144 + ], + "min": [ + -0.896817, + -0.0117743, + -0.455144 + ], + "type": 35665 + }, + "accessor_15641": { + "bufferView": "bufferView_18315", + "byteOffset": 863416, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_15643": { + "bufferView": "bufferView_18316", + "byteOffset": 7565544, + "byteStride": 12, + "count": 18, + "max": [ + 1.04654, + 0.134112, + 0.326994 + ], + "min": [ + 0.989882, + 0, + 0.281078 + ], + "type": 35665 + }, + "accessor_15645": { + "bufferView": "bufferView_18316", + "byteOffset": 7565760, + "byteStride": 12, + "count": 18, + "max": [ + 0.630959, + 0.0007971, + 0.77707 + ], + "min": [ + -0.630959, + -0.0007971, + -0.77707 + ], + "type": 35665 + }, + "accessor_15655": { + "bufferView": "bufferView_18315", + "byteOffset": 863452, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15657": { + "bufferView": "bufferView_18316", + "byteOffset": 7565976, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72696 + ], + "min": [ + 1.08034, + 0.024384, + 0.516433 + ], + "type": 35665 + }, + "accessor_15667": { + "bufferView": "bufferView_18315", + "byteOffset": 864036, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15669": { + "bufferView": "bufferView_18316", + "byteOffset": 7571580, + "byteStride": 12, + "count": 3, + "max": [ + 1.18718, + 0.402336, + 0.750364 + ], + "min": [ + 1.15145, + 0.134112, + 0.742532 + ], + "type": 35665 + }, + "accessor_15679": { + "bufferView": "bufferView_18315", + "byteOffset": 864044, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1568": { + "bufferView": "bufferView_18315", + "byteOffset": 863460, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_15681": { + "bufferView": "bufferView_18316", + "byteOffset": 7571616, + "byteStride": 12, + "count": 3, + "max": [ + 1.18648, + 0.402336, + 0.499838 + ], + "min": [ + 1.1511, + 0.134112, + 0.490637 + ], + "type": 35665 + }, + "accessor_15691": { + "bufferView": "bufferView_18315", + "byteOffset": 864052, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15693": { + "bufferView": "bufferView_18316", + "byteOffset": 7571652, + "byteStride": 12, + "count": 3, + "max": [ + 1.08029, + 0.024384, + 0.51668 + ], + "min": [ + 0.989625, + 0.024384, + 0.326672 + ], + "type": 35665 + }, + "accessor_1570": { + "bufferView": "bufferView_18316", + "byteOffset": 7566012, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_15703": { + "bufferView": "bufferView_18315", + "byteOffset": 864060, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15705": { + "bufferView": "bufferView_18316", + "byteOffset": 7571688, + "byteStride": 12, + "count": 3, + "max": [ + 0.988947, + 0.024384, + 0.327273 + ], + "min": [ + 0.824786, + 0.024384, + 0.195465 + ], + "type": 35665 + }, + "accessor_15715": { + "bufferView": "bufferView_18315", + "byteOffset": 864068, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15717": { + "bufferView": "bufferView_18316", + "byteOffset": 7571724, + "byteStride": 12, + "count": 3, + "max": [ + 1.07367, + 0.402336, + 0.281357 + ], + "min": [ + 1.04543, + 0.134112, + 0.257772 + ], + "type": 35665 + }, + "accessor_1572": { + "bufferView": "bufferView_18316", + "byteOffset": 7568796, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_15727": { + "bufferView": "bufferView_18315", + "byteOffset": 864076, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15729": { + "bufferView": "bufferView_18316", + "byteOffset": 7571760, + "byteStride": 12, + "count": 3, + "max": [ + 0.824436, + 0.024384, + 0.196301 + ], + "min": [ + 0.61933, + 0.024384, + 0.14883 + ], + "type": 35665 + }, + "accessor_15739": { + "bufferView": "bufferView_18315", + "byteOffset": 864084, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15741": { + "bufferView": "bufferView_18316", + "byteOffset": 7571796, + "byteStride": 12, + "count": 3, + "max": [ + 0.870891, + 0.402336, + 0.130415 + ], + "min": [ + 0.855385, + 0.134112, + 0.0971235 + ], + "type": 35665 + }, + "accessor_15751": { + "bufferView": "bufferView_18315", + "byteOffset": 864092, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15753": { + "bufferView": "bufferView_18316", + "byteOffset": 7571832, + "byteStride": 12, + "count": 3, + "max": [ + 0.193679, + 0.402336, + 0.28238 + ], + "min": [ + 0.164539, + 0.134112, + 0.259904 + ], + "type": 35665 + }, + "accessor_15763": { + "bufferView": "bufferView_18315", + "byteOffset": 864100, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15765": { + "bufferView": "bufferView_18316", + "byteOffset": 7571868, + "byteStride": 12, + "count": 3, + "max": [ + 0.250955, + 0.024384, + 0.516561 + ], + "min": [ + 0.158739, + 0.024384, + 0.327303 + ], + "type": 35665 + }, + "accessor_15775": { + "bufferView": "bufferView_18315", + "byteOffset": 864108, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15777": { + "bufferView": "bufferView_18316", + "byteOffset": 7571904, + "byteStride": 12, + "count": 3, + "max": [ + 0.0885313, + 0.402336, + 0.501114 + ], + "min": [ + 0.0527994, + 0.134112, + 0.493267 + ], + "type": 35665 + }, + "accessor_15787": { + "bufferView": "bufferView_18315", + "byteOffset": 864116, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15789": { + "bufferView": "bufferView_18316", + "byteOffset": 7571940, + "byteStride": 12, + "count": 3, + "max": [ + 0.619963, + 0.402336, + 0.0769445 + ], + "min": [ + 0.618891, + 0.134112, + 0.0405446 + ], + "type": 35665 + }, + "accessor_15799": { + "bufferView": "bufferView_18315", + "byteOffset": 864124, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_158": { + "bufferView": "bufferView_18316", + "byteOffset": 6927600, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_15801": { + "bufferView": "bufferView_18316", + "byteOffset": 7571976, + "byteStride": 12, + "count": 3, + "max": [ + 0.159631, + 0.024384, + 0.727244 + ], + "min": [ + 0.147732, + 0.024384, + 0.516717 + ], + "type": 35665 + }, + "accessor_15811": { + "bufferView": "bufferView_18315", + "byteOffset": 864132, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15813": { + "bufferView": "bufferView_18316", + "byteOffset": 7572012, + "byteStride": 12, + "count": 3, + "max": [ + 0.620512, + 0.024384, + 0.195522 + ], + "min": [ + 0.415022, + 0.024384, + 0.149734 + ], + "type": 35665 + }, + "accessor_15823": { + "bufferView": "bufferView_18315", + "byteOffset": 864140, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15825": { + "bufferView": "bufferView_18316", + "byteOffset": 7572048, + "byteStride": 12, + "count": 3, + "max": [ + 0.415456, + 0.024384, + 0.326775 + ], + "min": [ + 0.250219, + 0.024384, + 0.196317 + ], + "type": 35665 + }, + "accessor_15835": { + "bufferView": "bufferView_18315", + "byteOffset": 864148, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15837": { + "bufferView": "bufferView_18316", + "byteOffset": 7572084, + "byteStride": 12, + "count": 3, + "max": [ + 0.383361, + 0.402336, + 0.130982 + ], + "min": [ + 0.366592, + 0.134112, + 0.0983342 + ], + "type": 35665 + }, + "accessor_15847": { + "bufferView": "bufferView_18315", + "byteOffset": 864732, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15849": { + "bufferView": "bufferView_18316", + "byteOffset": 7577688, + "byteStride": 12, + "count": 3, + "max": [ + 0.0887701, + 0.402336, + 0.752994 + ], + "min": [ + 0.053393, + 0.134112, + 0.743808 + ], + "type": 35665 + }, + "accessor_15859": { + "bufferView": "bufferView_18315", + "byteOffset": 864740, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15861": { + "bufferView": "bufferView_18316", + "byteOffset": 7577724, + "byteStride": 12, + "count": 3, + "max": [ + 0.194348, + 0.402336, + 0.985908 + ], + "min": [ + 0.166098, + 0.134112, + 0.962335 + ], + "type": 35665 + }, + "accessor_15871": { + "bufferView": "bufferView_18315", + "byteOffset": 864748, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15873": { + "bufferView": "bufferView_18316", + "byteOffset": 7577760, + "byteStride": 12, + "count": 3, + "max": [ + 1.18707, + 0.402336, + 0.750856 + ], + "min": [ + 1.15134, + 0.134112, + 0.742994 + ], + "type": 35665 + }, + "accessor_1588": { + "bufferView": "bufferView_18315", + "byteOffset": 864156, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_15883": { + "bufferView": "bufferView_18315", + "byteOffset": 864756, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15885": { + "bufferView": "bufferView_18316", + "byteOffset": 7577796, + "byteStride": 12, + "count": 3, + "max": [ + 1.07523, + 0.402336, + 0.984171 + ], + "min": [ + 1.0461, + 0.134112, + 0.961682 + ], + "type": 35665 + }, + "accessor_15895": { + "bufferView": "bufferView_18315", + "byteOffset": 864764, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15897": { + "bufferView": "bufferView_18316", + "byteOffset": 7577832, + "byteStride": 12, + "count": 3, + "max": [ + 1.18659, + 0.402336, + 0.500299 + ], + "min": [ + 1.15121, + 0.134112, + 0.491129 + ], + "type": 35665 + }, + "accessor_1590": { + "bufferView": "bufferView_18316", + "byteOffset": 7572120, + "byteStride": 12, + "count": 232, + "max": [ + 2.73101, + 0.170683, + 0.073218 + ], + "min": [ + 2.63345, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_15907": { + "bufferView": "bufferView_18315", + "byteOffset": 864772, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15909": { + "bufferView": "bufferView_18316", + "byteOffset": 7577868, + "byteStride": 12, + "count": 3, + "max": [ + 0.384328, + 0.402336, + 1.14664 + ], + "min": [ + 0.368808, + 0.134112, + 1.11336 + ], + "type": 35665 + }, + "accessor_15919": { + "bufferView": "bufferView_18315", + "byteOffset": 864780, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1592": { + "bufferView": "bufferView_18316", + "byteOffset": 7574904, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_15921": { + "bufferView": "bufferView_18316", + "byteOffset": 7577904, + "byteStride": 12, + "count": 3, + "max": [ + 1.08114, + 0.024384, + 0.916734 + ], + "min": [ + 0.988843, + 0.024384, + 0.727517 + ], + "type": 35665 + }, + "accessor_15931": { + "bufferView": "bufferView_18315", + "byteOffset": 864788, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15933": { + "bufferView": "bufferView_18316", + "byteOffset": 7577940, + "byteStride": 12, + "count": 3, + "max": [ + 0.250173, + 0.024384, + 0.917044 + ], + "min": [ + 0.159594, + 0.024384, + 0.726997 + ], + "type": 35665 + }, + "accessor_15943": { + "bufferView": "bufferView_18315", + "byteOffset": 864796, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15945": { + "bufferView": "bufferView_18316", + "byteOffset": 7577976, + "byteStride": 12, + "count": 3, + "max": [ + 0.873107, + 0.402336, + 1.14565 + ], + "min": [ + 0.856352, + 0.134112, + 1.113 + ], + "type": 35665 + }, + "accessor_15955": { + "bufferView": "bufferView_18315", + "byteOffset": 864804, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15957": { + "bufferView": "bufferView_18316", + "byteOffset": 7578012, + "byteStride": 12, + "count": 3, + "max": [ + 0.989579, + 0.024384, + 1.04765 + ], + "min": [ + 0.824286, + 0.024384, + 0.917263 + ], + "type": 35665 + }, + "accessor_15967": { + "bufferView": "bufferView_18315", + "byteOffset": 864812, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15969": { + "bufferView": "bufferView_18316", + "byteOffset": 7578048, + "byteStride": 12, + "count": 3, + "max": [ + 1.08038, + 0.024384, + 0.51708 + ], + "min": [ + 0.989882, + 0.024384, + 0.326994 + ], + "type": 35665 + }, + "accessor_15979": { + "bufferView": "bufferView_18315", + "byteOffset": 864820, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15981": { + "bufferView": "bufferView_18316", + "byteOffset": 7578084, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72736 + ], + "min": [ + 1.08025, + 0.024384, + 0.516834 + ], + "type": 35665 + }, + "accessor_15991": { + "bufferView": "bufferView_18315", + "byteOffset": 864828, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_15993": { + "bufferView": "bufferView_18316", + "byteOffset": 7578120, + "byteStride": 12, + "count": 3, + "max": [ + 0.414955, + 0.024384, + 1.04832 + ], + "min": [ + 0.250851, + 0.024384, + 0.916443 + ], + "type": 35665 + }, + "accessor_16": { + "bufferView": "bufferView_18315", + "byteOffset": 420944, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_160": { + "bufferView": "bufferView_18316", + "byteOffset": 6930096, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_16003": { + "bufferView": "bufferView_18315", + "byteOffset": 864836, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16005": { + "bufferView": "bufferView_18316", + "byteOffset": 7578156, + "byteStride": 12, + "count": 3, + "max": [ + 0.825743, + 0.024384, + 1.09414 + ], + "min": [ + 0.620344, + 0.024384, + 1.04795 + ], + "type": 35665 + }, + "accessor_16015": { + "bufferView": "bufferView_18315", + "byteOffset": 864844, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16017": { + "bufferView": "bufferView_18316", + "byteOffset": 7578192, + "byteStride": 12, + "count": 3, + "max": [ + 0.62218, + 0.402336, + 1.20333 + ], + "min": [ + 0.621036, + 0.134112, + 1.16693 + ], + "type": 35665 + }, + "accessor_16027": { + "bufferView": "bufferView_18315", + "byteOffset": 865308, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16029": { + "bufferView": "bufferView_18316", + "byteOffset": 7583220, + "byteStride": 12, + "count": 3, + "max": [ + 0.620391, + 0.024384, + 1.09505 + ], + "min": [ + 0.415305, + 0.024384, + 1.04749 + ], + "type": 35665 + }, + "accessor_16045": { + "bufferView": "bufferView_18315", + "byteOffset": 865316, + "byteStride": 0, + "count": 8400, + "type": 5123 + }, + "accessor_16047": { + "bufferView": "bufferView_18316", + "byteOffset": 7583256, + "byteStride": 12, + "count": 5996, + "max": [ + 0.927384, + 0.707136, + 0.927384 + ], + "min": [ + -0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_16049": { + "bufferView": "bufferView_18316", + "byteOffset": 7655208, + "byteStride": 12, + "count": 5996, + "max": [ + 0.999277, + 1, + 0.999241 + ], + "min": [ + -0.999277, + -1, + -0.999241 + ], + "type": 35665 + }, + "accessor_16065": { + "bufferView": "bufferView_18315", + "byteOffset": 882116, + "byteStride": 0, + "count": 14988, + "type": 5123 + }, + "accessor_16067": { + "bufferView": "bufferView_18316", + "byteOffset": 7727160, + "byteStride": 12, + "count": 8047, + "max": [ + 0.721187, + 0.512064, + 0.719907 + ], + "min": [ + 0.206197, + 0.18288, + 0.207477 + ], + "type": 35665 + }, + "accessor_16069": { + "bufferView": "bufferView_18316", + "byteOffset": 7823724, + "byteStride": 12, + "count": 8047, + "max": [ + 0.998081, + 1, + 1 + ], + "min": [ + -0.998081, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1608": { + "bufferView": "bufferView_18315", + "byteOffset": 864852, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_16085": { + "bufferView": "bufferView_18315", + "byteOffset": 912092, + "byteStride": 0, + "count": 1392, + "type": 5123 + }, + "accessor_16087": { + "bufferView": "bufferView_18316", + "byteOffset": 7920288, + "byteStride": 12, + "count": 916, + "max": [ + 0.57351, + 0.6096, + 0.573316 + ], + "min": [ + 0.354177, + 0.36576, + 0.353983 + ], + "type": 35665 + }, + "accessor_16089": { + "bufferView": "bufferView_18316", + "byteOffset": 7931280, + "byteStride": 12, + "count": 916, + "max": [ + 0.998666, + 1, + 0.998631 + ], + "min": [ + -0.998666, + -1, + -0.998631 + ], + "type": 35665 + }, + "accessor_16099": { + "bufferView": "bufferView_18315", + "byteOffset": 914876, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_1610": { + "bufferView": "bufferView_18316", + "byteOffset": 7578228, + "byteStride": 12, + "count": 208, + "max": [ + 2.77981, + 0.195177, + 0.243923 + ], + "min": [ + 2.58465, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_16101": { + "bufferView": "bufferView_18316", + "byteOffset": 7942272, + "byteStride": 12, + "count": 2, + "max": [ + 0.316793, + 0.390144, + 0.536875 + ], + "min": [ + 0.315986, + 0.390144, + 0.536071 + ], + "type": 35665 + }, + "accessor_16117": { + "bufferView": "bufferView_18315", + "byteOffset": 914880, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16119": { + "bufferView": "bufferView_18316", + "byteOffset": 7942296, + "byteStride": 12, + "count": 690, + "max": [ + 1.22184, + 0.804672, + 0.56128 + ], + "min": [ + 0.838596, + 0, + 0.234864 + ], + "type": 35665 + }, + "accessor_1612": { + "bufferView": "bufferView_18316", + "byteOffset": 7580724, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_16121": { + "bufferView": "bufferView_18316", + "byteOffset": 7950576, + "byteStride": 12, + "count": 690, + "max": [ + 0.94437, + 1, + 0.973205 + ], + "min": [ + -0.94437, + -1, + -0.973205 + ], + "type": 35665 + }, + "accessor_16137": { + "bufferView": "bufferView_18315", + "byteOffset": 916476, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_16139": { + "bufferView": "bufferView_18316", + "byteOffset": 7958856, + "byteStride": 12, + "count": 650, + "max": [ + 1.23774, + 0.804672, + 0.758165 + ], + "min": [ + 0.890894, + 0, + 0.482868 + ], + "type": 35665 + }, + "accessor_16141": { + "bufferView": "bufferView_18316", + "byteOffset": 7966656, + "byteStride": 12, + "count": 650, + "max": [ + 0.994915, + 1, + 1 + ], + "min": [ + -0.994915, + -1, + -1 + ], + "type": 35665 + }, + "accessor_16157": { + "bufferView": "bufferView_18315", + "byteOffset": 917928, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16159": { + "bufferView": "bufferView_18316", + "byteOffset": 7974456, + "byteStride": 12, + "count": 18, + "max": [ + 1.15169, + 0.804672, + 0.742532 + ], + "min": [ + 1.08034, + 0.67056, + 0.72696 + ], + "type": 35665 + }, + "accessor_16161": { + "bufferView": "bufferView_18316", + "byteOffset": 7974672, + "byteStride": 12, + "count": 18, + "max": [ + 0.211997, + 0.0117743, + 0.980193 + ], + "min": [ + -0.211997, + -0.0117743, + -0.980193 + ], + "type": 35665 + }, + "accessor_16177": { + "bufferView": "bufferView_18315", + "byteOffset": 917964, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16179": { + "bufferView": "bufferView_18316", + "byteOffset": 7974888, + "byteStride": 12, + "count": 690, + "max": [ + 1.10189, + 0.804672, + 0.449418 + ], + "min": [ + 0.74182, + 0, + 0.0636192 + ], + "type": 35665 + }, + "accessor_16181": { + "bufferView": "bufferView_18316", + "byteOffset": 7983168, + "byteStride": 12, + "count": 690, + "max": [ + 0.911927, + 1, + 0.847582 + ], + "min": [ + -0.911927, + -1, + -0.847582 + ], + "type": 35665 + }, + "accessor_16197": { + "bufferView": "bufferView_18315", + "byteOffset": 919560, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_16199": { + "bufferView": "bufferView_18316", + "byteOffset": 7991448, + "byteStride": 12, + "count": 668, + "max": [ + 0.886367, + 0.804672, + 0.371768 + ], + "min": [ + 0.618043, + 0, + 0.00309245 + ], + "type": 35665 + }, + "accessor_16201": { + "bufferView": "bufferView_18316", + "byteOffset": 7999464, + "byteStride": 12, + "count": 668, + "max": [ + 0.99999, + 1, + 0.993922 + ], + "min": [ + -0.99999, + -1, + -0.993922 + ], + "type": 35665 + }, + "accessor_16217": { + "bufferView": "bufferView_18315", + "byteOffset": 921672, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16219": { + "bufferView": "bufferView_18316", + "byteOffset": 8013048, + "byteStride": 12, + "count": 18, + "max": [ + 0.61933, + 0.134112, + 0.14883 + ], + "min": [ + 0.618652, + 0, + 0.0759065 + ], + "type": 35665 + }, + "accessor_16221": { + "bufferView": "bufferView_18316", + "byteOffset": 8013264, + "byteStride": 12, + "count": 18, + "max": [ + 0.999959, + 0.0007971, + 0.0110205 + ], + "min": [ + -0.999959, + -0.0007971, + -0.0110205 + ], + "type": 35665 + }, + "accessor_16237": { + "bufferView": "bufferView_18315", + "byteOffset": 921708, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16239": { + "bufferView": "bufferView_18316", + "byteOffset": 8013480, + "byteStride": 12, + "count": 690, + "max": [ + 0.403423, + 0.804672, + 0.558587 + ], + "min": [ + 0.016418, + 0, + 0.237455 + ], + "type": 35665 + }, + "accessor_16241": { + "bufferView": "bufferView_18316", + "byteOffset": 8021760, + "byteStride": 12, + "count": 690, + "max": [ + 0.943994, + 1, + 0.980107 + ], + "min": [ + -0.943994, + -1, + -0.980107 + ], + "type": 35665 + }, + "accessor_16257": { + "bufferView": "bufferView_18315", + "byteOffset": 923304, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_16259": { + "bufferView": "bufferView_18316", + "byteOffset": 8030040, + "byteStride": 12, + "count": 650, + "max": [ + 0.621678, + 0.804672, + 0.370108 + ], + "min": [ + 0.350907, + 0, + 0.00416487 + ], + "type": 35665 + }, + "accessor_16261": { + "bufferView": "bufferView_18316", + "byteOffset": 8037840, + "byteStride": 12, + "count": 650, + "max": [ + 0.999982, + 1, + 0.994048 + ], + "min": [ + -0.999982, + -1, + -0.994048 + ], + "type": 35665 + }, + "accessor_16277": { + "bufferView": "bufferView_18315", + "byteOffset": 924756, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16279": { + "bufferView": "bufferView_18316", + "byteOffset": 8045640, + "byteStride": 12, + "count": 690, + "max": [ + 0.500728, + 0.804672, + 0.447002 + ], + "min": [ + 0.13564, + 0, + 0.0657051 + ], + "type": 35665 + }, + "accessor_1628": { + "bufferView": "bufferView_18315", + "byteOffset": 921096, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_16281": { + "bufferView": "bufferView_18316", + "byteOffset": 8053920, + "byteStride": 12, + "count": 690, + "max": [ + 0.898201, + 1, + 0.848187 + ], + "min": [ + -0.898201, + -1, + -0.848187 + ], + "type": 35665 + }, + "accessor_16297": { + "bufferView": "bufferView_18315", + "byteOffset": 926352, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16299": { + "bufferView": "bufferView_18316", + "byteOffset": 8062200, + "byteStride": 12, + "count": 690, + "max": [ + 0.34906, + 0.804672, + 0.760747 + ], + "min": [ + 0.0021897, + 0, + 0.48545 + ], + "type": 35665 + }, + "accessor_1630": { + "bufferView": "bufferView_18316", + "byteOffset": 8007480, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_16301": { + "bufferView": "bufferView_18316", + "byteOffset": 8070480, + "byteStride": 12, + "count": 690, + "max": [ + 0.994959, + 1, + 1 + ], + "min": [ + -0.994959, + -1, + -1 + ], + "type": 35665 + }, + "accessor_16317": { + "bufferView": "bufferView_18315", + "byteOffset": 927948, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16319": { + "bufferView": "bufferView_18316", + "byteOffset": 8078760, + "byteStride": 12, + "count": 690, + "max": [ + 0.401255, + 0.804672, + 1.0088 + ], + "min": [ + 0.0180293, + 0, + 0.682479 + ], + "type": 35665 + }, + "accessor_1632": { + "bufferView": "bufferView_18316", + "byteOffset": 8010264, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_16321": { + "bufferView": "bufferView_18316", + "byteOffset": 8087040, + "byteStride": 12, + "count": 690, + "max": [ + 0.944513, + 1, + 0.973305 + ], + "min": [ + -0.944513, + -1, + -0.973305 + ], + "type": 35665 + }, + "accessor_16337": { + "bufferView": "bufferView_18315", + "byteOffset": 929544, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16339": { + "bufferView": "bufferView_18316", + "byteOffset": 8095320, + "byteStride": 12, + "count": 18, + "max": [ + 0.620512, + 0.804672, + 0.149734 + ], + "min": [ + 0.618958, + 0.67056, + 0.0769243 + ], + "type": 35665 + }, + "accessor_16341": { + "bufferView": "bufferView_18316", + "byteOffset": 8095536, + "byteStride": 12, + "count": 18, + "max": [ + 0.999886, + 0.0117743, + 0.0238999 + ], + "min": [ + -0.999886, + -0.0117743, + -0.0238999 + ], + "type": 35665 + }, + "accessor_16357": { + "bufferView": "bufferView_18315", + "byteOffset": 929580, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_16359": { + "bufferView": "bufferView_18316", + "byteOffset": 8095752, + "byteStride": 12, + "count": 668, + "max": [ + 0.890115, + 0.804672, + 1.23971 + ], + "min": [ + 0.618796, + 0, + 0.873533 + ], + "type": 35665 + }, + "accessor_16361": { + "bufferView": "bufferView_18316", + "byteOffset": 8103768, + "byteStride": 12, + "count": 668, + "max": [ + 0.999968, + 1, + 0.993831 + ], + "min": [ + -0.999968, + -1, + -0.993831 + ], + "type": 35665 + }, + "accessor_16377": { + "bufferView": "bufferView_18315", + "byteOffset": 931116, + "byteStride": 0, + "count": 822, + "type": 5123 + }, + "accessor_16379": { + "bufferView": "bufferView_18316", + "byteOffset": 8111784, + "byteStride": 12, + "count": 702, + "max": [ + 1.23774, + 0.804672, + 0.758688 + ], + "min": [ + 0.890839, + 0, + 0.483392 + ], + "type": 35665 + }, + "accessor_16381": { + "bufferView": "bufferView_18316", + "byteOffset": 8120208, + "byteStride": 12, + "count": 702, + "max": [ + 0.994983, + 1, + 1 + ], + "min": [ + -0.994983, + -1, + -1 + ], + "type": 35665 + }, + "accessor_16397": { + "bufferView": "bufferView_18315", + "byteOffset": 932760, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16399": { + "bufferView": "bufferView_18316", + "byteOffset": 8128632, + "byteStride": 12, + "count": 690, + "max": [ + 1.22345, + 0.804672, + 1.00663 + ], + "min": [ + 0.836428, + 0, + 0.685408 + ], + "type": 35665 + }, + "accessor_16401": { + "bufferView": "bufferView_18316", + "byteOffset": 8136912, + "byteStride": 12, + "count": 690, + "max": [ + 0.943851, + 1, + 0.98002 + ], + "min": [ + -0.943851, + -1, + -0.98002 + ], + "type": 35665 + }, + "accessor_16417": { + "bufferView": "bufferView_18315", + "byteOffset": 935508, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16419": { + "bufferView": "bufferView_18316", + "byteOffset": 8152872, + "byteStride": 12, + "count": 690, + "max": [ + 0.622041, + 0.804672, + 1.24079 + ], + "min": [ + 0.353318, + 0, + 0.872056 + ], + "type": 35665 + }, + "accessor_16421": { + "bufferView": "bufferView_18316", + "byteOffset": 8161152, + "byteStride": 12, + "count": 690, + "max": [ + 0.999992, + 1, + 0.993874 + ], + "min": [ + -0.999992, + -1, + -0.993874 + ], + "type": 35665 + }, + "accessor_16437": { + "bufferView": "bufferView_18315", + "byteOffset": 937104, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_16439": { + "bufferView": "bufferView_18316", + "byteOffset": 8169432, + "byteStride": 12, + "count": 680, + "max": [ + 1.22196, + 0.804672, + 0.561516 + ], + "min": [ + 0.838746, + 0, + 0.235284 + ], + "type": 35665 + }, + "accessor_16441": { + "bufferView": "bufferView_18316", + "byteOffset": 8177592, + "byteStride": 12, + "count": 680, + "max": [ + 0.944656, + 1, + 0.973405 + ], + "min": [ + -0.944656, + -1, + -0.973405 + ], + "type": 35665 + }, + "accessor_16457": { + "bufferView": "bufferView_18315", + "byteOffset": 938688, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_16459": { + "bufferView": "bufferView_18316", + "byteOffset": 8185752, + "byteStride": 12, + "count": 690, + "max": [ + 0.497998, + 0.804672, + 1.18014 + ], + "min": [ + 0.137873, + 0, + 0.794364 + ], + "type": 35665 + }, + "accessor_16461": { + "bufferView": "bufferView_18316", + "byteOffset": 8194032, + "byteStride": 12, + "count": 690, + "max": [ + 0.911749, + 1, + 0.847351 + ], + "min": [ + -0.911749, + -1, + -0.847351 + ], + "type": 35665 + }, + "accessor_16477": { + "bufferView": "bufferView_18315", + "byteOffset": 940284, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_16479": { + "bufferView": "bufferView_18316", + "byteOffset": 8202312, + "byteStride": 12, + "count": 650, + "max": [ + 1.10412, + 0.804672, + 1.17829 + ], + "min": [ + 0.739089, + 0, + 0.796969 + ], + "type": 35665 + }, + "accessor_1648": { + "bufferView": "bufferView_18315", + "byteOffset": 934356, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_16481": { + "bufferView": "bufferView_18316", + "byteOffset": 8210112, + "byteStride": 12, + "count": 650, + "max": [ + 0.898392, + 1, + 0.848417 + ], + "min": [ + -0.898392, + -1, + -0.848417 + ], + "type": 35665 + }, + "accessor_16497": { + "bufferView": "bufferView_18315", + "byteOffset": 941736, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16499": { + "bufferView": "bufferView_18316", + "byteOffset": 8217912, + "byteStride": 12, + "count": 18, + "max": [ + 0.857984, + 0.134112, + 1.11336 + ], + "min": [ + 0.825743, + 0, + 1.04795 + ], + "type": 35665 + }, + "accessor_1650": { + "bufferView": "bufferView_18316", + "byteOffset": 8145192, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_16501": { + "bufferView": "bufferView_18316", + "byteOffset": 8218128, + "byteStride": 12, + "count": 18, + "max": [ + 0.897081, + 0.0007971, + 0.443649 + ], + "min": [ + -0.897081, + -0.0007971, + -0.443649 + ], + "type": 35665 + }, + "accessor_16517": { + "bufferView": "bufferView_18315", + "byteOffset": 941772, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16519": { + "bufferView": "bufferView_18316", + "byteOffset": 8218344, + "byteStride": 12, + "count": 18, + "max": [ + 0.857266, + 0.804672, + 1.113 + ], + "min": [ + 0.824286, + 0.67056, + 1.04765 + ], + "type": 35665 + }, + "accessor_1652": { + "bufferView": "bufferView_18316", + "byteOffset": 8149032, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_16521": { + "bufferView": "bufferView_18316", + "byteOffset": 8218560, + "byteStride": 12, + "count": 18, + "max": [ + 0.896817, + 0.0117743, + 0.455144 + ], + "min": [ + -0.896817, + -0.0117743, + -0.455144 + ], + "type": 35665 + }, + "accessor_16537": { + "bufferView": "bufferView_18315", + "byteOffset": 941808, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_16539": { + "bufferView": "bufferView_18316", + "byteOffset": 8218776, + "byteStride": 12, + "count": 18, + "max": [ + 1.04654, + 0.134112, + 0.326994 + ], + "min": [ + 0.989882, + 0, + 0.281078 + ], + "type": 35665 + }, + "accessor_16541": { + "bufferView": "bufferView_18316", + "byteOffset": 8218992, + "byteStride": 12, + "count": 18, + "max": [ + 0.630959, + 0.0007971, + 0.77707 + ], + "min": [ + -0.630959, + -0.0007971, + -0.77707 + ], + "type": 35665 + }, + "accessor_16551": { + "bufferView": "bufferView_18315", + "byteOffset": 941844, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16553": { + "bufferView": "bufferView_18316", + "byteOffset": 8219208, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72696 + ], + "min": [ + 1.08034, + 0.024384, + 0.516433 + ], + "type": 35665 + }, + "accessor_16563": { + "bufferView": "bufferView_18315", + "byteOffset": 941852, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16565": { + "bufferView": "bufferView_18316", + "byteOffset": 8219244, + "byteStride": 12, + "count": 3, + "max": [ + 1.18718, + 0.402336, + 0.750364 + ], + "min": [ + 1.15145, + 0.134112, + 0.742532 + ], + "type": 35665 + }, + "accessor_16575": { + "bufferView": "bufferView_18315", + "byteOffset": 941860, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16577": { + "bufferView": "bufferView_18316", + "byteOffset": 8219280, + "byteStride": 12, + "count": 3, + "max": [ + 1.18648, + 0.402336, + 0.499838 + ], + "min": [ + 1.1511, + 0.134112, + 0.490637 + ], + "type": 35665 + }, + "accessor_16587": { + "bufferView": "bufferView_18315", + "byteOffset": 941868, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16589": { + "bufferView": "bufferView_18316", + "byteOffset": 8219316, + "byteStride": 12, + "count": 3, + "max": [ + 1.08029, + 0.024384, + 0.51668 + ], + "min": [ + 0.989625, + 0.024384, + 0.326672 + ], + "type": 35665 + }, + "accessor_16599": { + "bufferView": "bufferView_18315", + "byteOffset": 941876, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16601": { + "bufferView": "bufferView_18316", + "byteOffset": 8219352, + "byteStride": 12, + "count": 3, + "max": [ + 0.988947, + 0.024384, + 0.327273 + ], + "min": [ + 0.824786, + 0.024384, + 0.195465 + ], + "type": 35665 + }, + "accessor_16611": { + "bufferView": "bufferView_18315", + "byteOffset": 942340, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16613": { + "bufferView": "bufferView_18316", + "byteOffset": 8224380, + "byteStride": 12, + "count": 3, + "max": [ + 1.07367, + 0.402336, + 0.281357 + ], + "min": [ + 1.04543, + 0.134112, + 0.257772 + ], + "type": 35665 + }, + "accessor_16623": { + "bufferView": "bufferView_18315", + "byteOffset": 942348, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16625": { + "bufferView": "bufferView_18316", + "byteOffset": 8224416, + "byteStride": 12, + "count": 3, + "max": [ + 0.824436, + 0.024384, + 0.196301 + ], + "min": [ + 0.61933, + 0.024384, + 0.14883 + ], + "type": 35665 + }, + "accessor_16635": { + "bufferView": "bufferView_18315", + "byteOffset": 942356, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16637": { + "bufferView": "bufferView_18316", + "byteOffset": 8224452, + "byteStride": 12, + "count": 3, + "max": [ + 0.870891, + 0.402336, + 0.130415 + ], + "min": [ + 0.855385, + 0.134112, + 0.0971235 + ], + "type": 35665 + }, + "accessor_16647": { + "bufferView": "bufferView_18315", + "byteOffset": 942364, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16649": { + "bufferView": "bufferView_18316", + "byteOffset": 8224488, + "byteStride": 12, + "count": 3, + "max": [ + 0.193679, + 0.402336, + 0.28238 + ], + "min": [ + 0.164539, + 0.134112, + 0.259904 + ], + "type": 35665 + }, + "accessor_16659": { + "bufferView": "bufferView_18315", + "byteOffset": 942372, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16661": { + "bufferView": "bufferView_18316", + "byteOffset": 8224524, + "byteStride": 12, + "count": 3, + "max": [ + 0.250955, + 0.024384, + 0.516561 + ], + "min": [ + 0.158739, + 0.024384, + 0.327303 + ], + "type": 35665 + }, + "accessor_16671": { + "bufferView": "bufferView_18315", + "byteOffset": 942380, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16673": { + "bufferView": "bufferView_18316", + "byteOffset": 8224560, + "byteStride": 12, + "count": 3, + "max": [ + 0.0885313, + 0.402336, + 0.501114 + ], + "min": [ + 0.0527994, + 0.134112, + 0.493267 + ], + "type": 35665 + }, + "accessor_1668": { + "bufferView": "bufferView_18315", + "byteOffset": 941884, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_16683": { + "bufferView": "bufferView_18315", + "byteOffset": 942388, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16685": { + "bufferView": "bufferView_18316", + "byteOffset": 8224596, + "byteStride": 12, + "count": 3, + "max": [ + 0.619963, + 0.402336, + 0.0769445 + ], + "min": [ + 0.618891, + 0.134112, + 0.0405446 + ], + "type": 35665 + }, + "accessor_16695": { + "bufferView": "bufferView_18315", + "byteOffset": 942396, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16697": { + "bufferView": "bufferView_18316", + "byteOffset": 8224632, + "byteStride": 12, + "count": 3, + "max": [ + 0.159631, + 0.024384, + 0.727244 + ], + "min": [ + 0.147732, + 0.024384, + 0.516717 + ], + "type": 35665 + }, + "accessor_1670": { + "bufferView": "bufferView_18316", + "byteOffset": 8219388, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_16707": { + "bufferView": "bufferView_18315", + "byteOffset": 942404, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16709": { + "bufferView": "bufferView_18316", + "byteOffset": 8224668, + "byteStride": 12, + "count": 3, + "max": [ + 0.620512, + 0.024384, + 0.195522 + ], + "min": [ + 0.415022, + 0.024384, + 0.149734 + ], + "type": 35665 + }, + "accessor_16719": { + "bufferView": "bufferView_18315", + "byteOffset": 942412, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1672": { + "bufferView": "bufferView_18316", + "byteOffset": 8221884, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_16721": { + "bufferView": "bufferView_18316", + "byteOffset": 8224704, + "byteStride": 12, + "count": 3, + "max": [ + 0.415456, + 0.024384, + 0.326775 + ], + "min": [ + 0.250219, + 0.024384, + 0.196317 + ], + "type": 35665 + }, + "accessor_16731": { + "bufferView": "bufferView_18315", + "byteOffset": 942420, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16733": { + "bufferView": "bufferView_18316", + "byteOffset": 8224740, + "byteStride": 12, + "count": 3, + "max": [ + 0.383361, + 0.402336, + 0.130982 + ], + "min": [ + 0.366592, + 0.134112, + 0.0983342 + ], + "type": 35665 + }, + "accessor_16743": { + "bufferView": "bufferView_18315", + "byteOffset": 942428, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16745": { + "bufferView": "bufferView_18316", + "byteOffset": 8224776, + "byteStride": 12, + "count": 3, + "max": [ + 0.0887701, + 0.402336, + 0.752994 + ], + "min": [ + 0.053393, + 0.134112, + 0.743808 + ], + "type": 35665 + }, + "accessor_16755": { + "bufferView": "bufferView_18315", + "byteOffset": 942436, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16757": { + "bufferView": "bufferView_18316", + "byteOffset": 8224812, + "byteStride": 12, + "count": 3, + "max": [ + 0.194348, + 0.402336, + 0.985908 + ], + "min": [ + 0.166098, + 0.134112, + 0.962335 + ], + "type": 35665 + }, + "accessor_16767": { + "bufferView": "bufferView_18315", + "byteOffset": 942444, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16769": { + "bufferView": "bufferView_18316", + "byteOffset": 8224848, + "byteStride": 12, + "count": 3, + "max": [ + 1.18707, + 0.402336, + 0.750856 + ], + "min": [ + 1.15134, + 0.134112, + 0.742994 + ], + "type": 35665 + }, + "accessor_16779": { + "bufferView": "bufferView_18315", + "byteOffset": 942452, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16781": { + "bufferView": "bufferView_18316", + "byteOffset": 8224884, + "byteStride": 12, + "count": 3, + "max": [ + 1.07523, + 0.402336, + 0.984171 + ], + "min": [ + 1.0461, + 0.134112, + 0.961682 + ], + "type": 35665 + }, + "accessor_16791": { + "bufferView": "bufferView_18315", + "byteOffset": 943612, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16793": { + "bufferView": "bufferView_18316", + "byteOffset": 8232600, + "byteStride": 12, + "count": 3, + "max": [ + 1.18659, + 0.402336, + 0.500299 + ], + "min": [ + 1.15121, + 0.134112, + 0.491129 + ], + "type": 35665 + }, + "accessor_16803": { + "bufferView": "bufferView_18315", + "byteOffset": 943620, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16805": { + "bufferView": "bufferView_18316", + "byteOffset": 8232636, + "byteStride": 12, + "count": 3, + "max": [ + 0.384328, + 0.402336, + 1.14664 + ], + "min": [ + 0.368808, + 0.134112, + 1.11336 + ], + "type": 35665 + }, + "accessor_16815": { + "bufferView": "bufferView_18315", + "byteOffset": 943628, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16817": { + "bufferView": "bufferView_18316", + "byteOffset": 8232672, + "byteStride": 12, + "count": 3, + "max": [ + 1.08114, + 0.024384, + 0.916734 + ], + "min": [ + 0.988843, + 0.024384, + 0.727517 + ], + "type": 35665 + }, + "accessor_16827": { + "bufferView": "bufferView_18315", + "byteOffset": 943636, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16829": { + "bufferView": "bufferView_18316", + "byteOffset": 8232708, + "byteStride": 12, + "count": 3, + "max": [ + 0.250173, + 0.024384, + 0.917044 + ], + "min": [ + 0.159594, + 0.024384, + 0.726997 + ], + "type": 35665 + }, + "accessor_16839": { + "bufferView": "bufferView_18315", + "byteOffset": 943644, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16841": { + "bufferView": "bufferView_18316", + "byteOffset": 8232744, + "byteStride": 12, + "count": 3, + "max": [ + 0.873107, + 0.402336, + 1.14565 + ], + "min": [ + 0.856352, + 0.134112, + 1.113 + ], + "type": 35665 + }, + "accessor_16851": { + "bufferView": "bufferView_18315", + "byteOffset": 943652, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16853": { + "bufferView": "bufferView_18316", + "byteOffset": 8232780, + "byteStride": 12, + "count": 3, + "max": [ + 0.989579, + 0.024384, + 1.04765 + ], + "min": [ + 0.824286, + 0.024384, + 0.917263 + ], + "type": 35665 + }, + "accessor_16863": { + "bufferView": "bufferView_18315", + "byteOffset": 943660, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16865": { + "bufferView": "bufferView_18316", + "byteOffset": 8232816, + "byteStride": 12, + "count": 3, + "max": [ + 1.08038, + 0.024384, + 0.51708 + ], + "min": [ + 0.989882, + 0.024384, + 0.326994 + ], + "type": 35665 + }, + "accessor_16875": { + "bufferView": "bufferView_18315", + "byteOffset": 943668, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16877": { + "bufferView": "bufferView_18316", + "byteOffset": 8232852, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72736 + ], + "min": [ + 1.08025, + 0.024384, + 0.516834 + ], + "type": 35665 + }, + "accessor_1688": { + "bufferView": "bufferView_18315", + "byteOffset": 942460, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_16887": { + "bufferView": "bufferView_18315", + "byteOffset": 943676, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16889": { + "bufferView": "bufferView_18316", + "byteOffset": 8232888, + "byteStride": 12, + "count": 3, + "max": [ + 0.414955, + 0.024384, + 1.04832 + ], + "min": [ + 0.250851, + 0.024384, + 0.916443 + ], + "type": 35665 + }, + "accessor_16899": { + "bufferView": "bufferView_18315", + "byteOffset": 943684, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1690": { + "bufferView": "bufferView_18316", + "byteOffset": 8224920, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_16901": { + "bufferView": "bufferView_18316", + "byteOffset": 8232924, + "byteStride": 12, + "count": 3, + "max": [ + 0.825743, + 0.024384, + 1.09414 + ], + "min": [ + 0.620344, + 0.024384, + 1.04795 + ], + "type": 35665 + }, + "accessor_16911": { + "bufferView": "bufferView_18315", + "byteOffset": 943692, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16913": { + "bufferView": "bufferView_18316", + "byteOffset": 8232960, + "byteStride": 12, + "count": 3, + "max": [ + 0.62218, + 0.402336, + 1.20333 + ], + "min": [ + 0.621036, + 0.134112, + 1.16693 + ], + "type": 35665 + }, + "accessor_1692": { + "bufferView": "bufferView_18316", + "byteOffset": 8228760, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_16923": { + "bufferView": "bufferView_18315", + "byteOffset": 943700, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_16925": { + "bufferView": "bufferView_18316", + "byteOffset": 8232996, + "byteStride": 12, + "count": 3, + "max": [ + 0.620391, + 0.024384, + 1.09505 + ], + "min": [ + 0.415305, + 0.024384, + 1.04749 + ], + "type": 35665 + }, + "accessor_16941": { + "bufferView": "bufferView_18315", + "byteOffset": 943708, + "byteStride": 0, + "count": 8400, + "type": 5123 + }, + "accessor_16943": { + "bufferView": "bufferView_18316", + "byteOffset": 8233032, + "byteStride": 12, + "count": 5996, + "max": [ + 0.927384, + 0.707136, + 0.927384 + ], + "min": [ + -0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_16945": { + "bufferView": "bufferView_18316", + "byteOffset": 8304984, + "byteStride": 12, + "count": 5996, + "max": [ + 0.999277, + 1, + 0.999241 + ], + "min": [ + -0.999277, + -1, + -0.999241 + ], + "type": 35665 + }, + "accessor_16961": { + "bufferView": "bufferView_18315", + "byteOffset": 960508, + "byteStride": 0, + "count": 14988, + "type": 5123 + }, + "accessor_16963": { + "bufferView": "bufferView_18316", + "byteOffset": 8376936, + "byteStride": 12, + "count": 8046, + "max": [ + 0.721187, + 0.512064, + 0.719907 + ], + "min": [ + 0.206197, + 0.18288, + 0.207477 + ], + "type": 35665 + }, + "accessor_16965": { + "bufferView": "bufferView_18316", + "byteOffset": 8473488, + "byteStride": 12, + "count": 8046, + "max": [ + 0.998081, + 1, + 1 + ], + "min": [ + -0.998081, + -1, + -1 + ], + "type": 35665 + }, + "accessor_16981": { + "bufferView": "bufferView_18315", + "byteOffset": 991636, + "byteStride": 0, + "count": 1392, + "type": 5123 + }, + "accessor_16983": { + "bufferView": "bufferView_18316", + "byteOffset": 8577720, + "byteStride": 12, + "count": 915, + "max": [ + 0.57351, + 0.6096, + 0.573316 + ], + "min": [ + 0.354177, + 0.36576, + 0.353983 + ], + "type": 35665 + }, + "accessor_16985": { + "bufferView": "bufferView_18316", + "byteOffset": 8588700, + "byteStride": 12, + "count": 915, + "max": [ + 0.998666, + 1, + 0.998631 + ], + "min": [ + -0.998666, + -1, + -0.998631 + ], + "type": 35665 + }, + "accessor_16995": { + "bufferView": "bufferView_18315", + "byteOffset": 994420, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_16997": { + "bufferView": "bufferView_18316", + "byteOffset": 8599680, + "byteStride": 12, + "count": 2, + "max": [ + 0.316793, + 0.390144, + 0.536875 + ], + "min": [ + 0.315986, + 0.390144, + 0.536071 + ], + "type": 35665 + }, + "accessor_17013": { + "bufferView": "bufferView_18315", + "byteOffset": 994424, + "byteStride": 0, + "count": 8400, + "type": 5123 + }, + "accessor_17015": { + "bufferView": "bufferView_18316", + "byteOffset": 8599704, + "byteStride": 12, + "count": 5996, + "max": [ + 0.927384, + 0.707136, + 0.927384 + ], + "min": [ + -0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_17017": { + "bufferView": "bufferView_18316", + "byteOffset": 8671656, + "byteStride": 12, + "count": 5996, + "max": [ + 0.999277, + 1, + 0.999241 + ], + "min": [ + -0.999277, + -1, + -0.999241 + ], + "type": 35665 + }, + "accessor_17033": { + "bufferView": "bufferView_18315", + "byteOffset": 1011680, + "byteStride": 0, + "count": 14988, + "type": 5123 + }, + "accessor_17035": { + "bufferView": "bufferView_18316", + "byteOffset": 8748600, + "byteStride": 12, + "count": 8051, + "max": [ + 0.721187, + 0.512064, + 0.719907 + ], + "min": [ + 0.206197, + 0.18288, + 0.207477 + ], + "type": 35665 + }, + "accessor_17037": { + "bufferView": "bufferView_18316", + "byteOffset": 8845212, + "byteStride": 12, + "count": 8051, + "max": [ + 0.998081, + 1, + 1 + ], + "min": [ + -0.998081, + -1, + -1 + ], + "type": 35665 + }, + "accessor_17053": { + "bufferView": "bufferView_18315", + "byteOffset": 1041656, + "byteStride": 0, + "count": 1392, + "type": 5123 + }, + "accessor_17055": { + "bufferView": "bufferView_18316", + "byteOffset": 8941824, + "byteStride": 12, + "count": 917, + "max": [ + 0.57351, + 0.6096, + 0.573316 + ], + "min": [ + 0.354177, + 0.36576, + 0.353983 + ], + "type": 35665 + }, + "accessor_17057": { + "bufferView": "bufferView_18316", + "byteOffset": 8952828, + "byteStride": 12, + "count": 917, + "max": [ + 0.998666, + 1, + 0.998631 + ], + "min": [ + -0.998666, + -1, + -0.998631 + ], + "type": 35665 + }, + "accessor_17067": { + "bufferView": "bufferView_18315", + "byteOffset": 1044440, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_17069": { + "bufferView": "bufferView_18316", + "byteOffset": 8963832, + "byteStride": 12, + "count": 2, + "max": [ + 0.316793, + 0.390144, + 0.536875 + ], + "min": [ + 0.315986, + 0.390144, + 0.536071 + ], + "type": 35665 + }, + "accessor_1708": { + "bufferView": "bufferView_18315", + "byteOffset": 990484, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_17085": { + "bufferView": "bufferView_18315", + "byteOffset": 1044444, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17087": { + "bufferView": "bufferView_18316", + "byteOffset": 8963856, + "byteStride": 12, + "count": 690, + "max": [ + 1.22184, + 0.804672, + 0.56128 + ], + "min": [ + 0.838596, + 0, + 0.234864 + ], + "type": 35665 + }, + "accessor_17089": { + "bufferView": "bufferView_18316", + "byteOffset": 8972136, + "byteStride": 12, + "count": 690, + "max": [ + 0.94437, + 1, + 0.973205 + ], + "min": [ + -0.94437, + -1, + -0.973205 + ], + "type": 35665 + }, + "accessor_1710": { + "bufferView": "bufferView_18316", + "byteOffset": 8570040, + "byteStride": 12, + "count": 320, + "max": [ + 2.63347, + 0.195224, + 0.341492 + ], + "min": [ + 2.48717, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_17105": { + "bufferView": "bufferView_18315", + "byteOffset": 1046040, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_17107": { + "bufferView": "bufferView_18316", + "byteOffset": 8980416, + "byteStride": 12, + "count": 650, + "max": [ + 1.23774, + 0.804672, + 0.758165 + ], + "min": [ + 0.890894, + 0, + 0.482868 + ], + "type": 35665 + }, + "accessor_17109": { + "bufferView": "bufferView_18316", + "byteOffset": 8988216, + "byteStride": 12, + "count": 650, + "max": [ + 0.994915, + 1, + 1 + ], + "min": [ + -0.994915, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1712": { + "bufferView": "bufferView_18316", + "byteOffset": 8573880, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_17125": { + "bufferView": "bufferView_18315", + "byteOffset": 1047492, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17127": { + "bufferView": "bufferView_18316", + "byteOffset": 8996016, + "byteStride": 12, + "count": 18, + "max": [ + 1.15169, + 0.804672, + 0.742532 + ], + "min": [ + 1.08034, + 0.67056, + 0.72696 + ], + "type": 35665 + }, + "accessor_17129": { + "bufferView": "bufferView_18316", + "byteOffset": 8996232, + "byteStride": 12, + "count": 18, + "max": [ + 0.211997, + 0.0117743, + 0.980193 + ], + "min": [ + -0.211997, + -0.0117743, + -0.980193 + ], + "type": 35665 + }, + "accessor_17145": { + "bufferView": "bufferView_18315", + "byteOffset": 1047528, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17147": { + "bufferView": "bufferView_18316", + "byteOffset": 8996448, + "byteStride": 12, + "count": 690, + "max": [ + 1.10189, + 0.804672, + 0.449418 + ], + "min": [ + 0.74182, + 0, + 0.0636192 + ], + "type": 35665 + }, + "accessor_17149": { + "bufferView": "bufferView_18316", + "byteOffset": 9004728, + "byteStride": 12, + "count": 690, + "max": [ + 0.911927, + 1, + 0.847582 + ], + "min": [ + -0.911927, + -1, + -0.847582 + ], + "type": 35665 + }, + "accessor_17165": { + "bufferView": "bufferView_18315", + "byteOffset": 1049580, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_17167": { + "bufferView": "bufferView_18316", + "byteOffset": 9018000, + "byteStride": 12, + "count": 668, + "max": [ + 0.886367, + 0.804672, + 0.371768 + ], + "min": [ + 0.618043, + 0, + 0.00309245 + ], + "type": 35665 + }, + "accessor_17169": { + "bufferView": "bufferView_18316", + "byteOffset": 9026016, + "byteStride": 12, + "count": 668, + "max": [ + 0.99999, + 1, + 0.993922 + ], + "min": [ + -0.99999, + -1, + -0.993922 + ], + "type": 35665 + }, + "accessor_17185": { + "bufferView": "bufferView_18315", + "byteOffset": 1051116, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17187": { + "bufferView": "bufferView_18316", + "byteOffset": 9034032, + "byteStride": 12, + "count": 18, + "max": [ + 0.61933, + 0.134112, + 0.14883 + ], + "min": [ + 0.618652, + 0, + 0.0759065 + ], + "type": 35665 + }, + "accessor_17189": { + "bufferView": "bufferView_18316", + "byteOffset": 9034248, + "byteStride": 12, + "count": 18, + "max": [ + 0.999959, + 0.0007971, + 0.0110205 + ], + "min": [ + -0.999959, + -0.0007971, + -0.0110205 + ], + "type": 35665 + }, + "accessor_17205": { + "bufferView": "bufferView_18315", + "byteOffset": 1051152, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17207": { + "bufferView": "bufferView_18316", + "byteOffset": 9034464, + "byteStride": 12, + "count": 690, + "max": [ + 0.403423, + 0.804672, + 0.558587 + ], + "min": [ + 0.016418, + 0, + 0.237455 + ], + "type": 35665 + }, + "accessor_17209": { + "bufferView": "bufferView_18316", + "byteOffset": 9042744, + "byteStride": 12, + "count": 690, + "max": [ + 0.943994, + 1, + 0.980107 + ], + "min": [ + -0.943994, + -1, + -0.980107 + ], + "type": 35665 + }, + "accessor_17225": { + "bufferView": "bufferView_18315", + "byteOffset": 1052748, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_17227": { + "bufferView": "bufferView_18316", + "byteOffset": 9051024, + "byteStride": 12, + "count": 650, + "max": [ + 0.621678, + 0.804672, + 0.370108 + ], + "min": [ + 0.350907, + 0, + 0.00416487 + ], + "type": 35665 + }, + "accessor_17229": { + "bufferView": "bufferView_18316", + "byteOffset": 9058824, + "byteStride": 12, + "count": 650, + "max": [ + 0.999982, + 1, + 0.994048 + ], + "min": [ + -0.999982, + -1, + -0.994048 + ], + "type": 35665 + }, + "accessor_17245": { + "bufferView": "bufferView_18315", + "byteOffset": 1054200, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17247": { + "bufferView": "bufferView_18316", + "byteOffset": 9066624, + "byteStride": 12, + "count": 690, + "max": [ + 0.500728, + 0.804672, + 0.447002 + ], + "min": [ + 0.13564, + 0, + 0.0657051 + ], + "type": 35665 + }, + "accessor_17249": { + "bufferView": "bufferView_18316", + "byteOffset": 9074904, + "byteStride": 12, + "count": 690, + "max": [ + 0.898201, + 1, + 0.848187 + ], + "min": [ + -0.898201, + -1, + -0.848187 + ], + "type": 35665 + }, + "accessor_17265": { + "bufferView": "bufferView_18315", + "byteOffset": 1055796, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17267": { + "bufferView": "bufferView_18316", + "byteOffset": 9083184, + "byteStride": 12, + "count": 689, + "max": [ + 0.34906, + 0.804672, + 0.760747 + ], + "min": [ + 0.0021897, + 0, + 0.48545 + ], + "type": 35665 + }, + "accessor_17269": { + "bufferView": "bufferView_18316", + "byteOffset": 9091452, + "byteStride": 12, + "count": 689, + "max": [ + 0.994959, + 1, + 1 + ], + "min": [ + -0.994959, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1728": { + "bufferView": "bufferView_18315", + "byteOffset": 1049124, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_17285": { + "bufferView": "bufferView_18315", + "byteOffset": 1057392, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17287": { + "bufferView": "bufferView_18316", + "byteOffset": 9099720, + "byteStride": 12, + "count": 690, + "max": [ + 0.401255, + 0.804672, + 1.0088 + ], + "min": [ + 0.0180293, + 0, + 0.682479 + ], + "type": 35665 + }, + "accessor_17289": { + "bufferView": "bufferView_18316", + "byteOffset": 9108000, + "byteStride": 12, + "count": 690, + "max": [ + 0.944513, + 1, + 0.973305 + ], + "min": [ + -0.944513, + -1, + -0.973305 + ], + "type": 35665 + }, + "accessor_1730": { + "bufferView": "bufferView_18316", + "byteOffset": 9013008, + "byteStride": 12, + "count": 208, + "max": [ + 1.80445, + 0.195177, + 0.243923 + ], + "min": [ + 1.60929, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_17305": { + "bufferView": "bufferView_18315", + "byteOffset": 1058988, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17307": { + "bufferView": "bufferView_18316", + "byteOffset": 9116280, + "byteStride": 12, + "count": 18, + "max": [ + 0.620512, + 0.804672, + 0.149734 + ], + "min": [ + 0.618958, + 0.67056, + 0.0769243 + ], + "type": 35665 + }, + "accessor_17309": { + "bufferView": "bufferView_18316", + "byteOffset": 9116496, + "byteStride": 12, + "count": 18, + "max": [ + 0.999886, + 0.0117743, + 0.0238999 + ], + "min": [ + -0.999886, + -0.0117743, + -0.0238999 + ], + "type": 35665 + }, + "accessor_1732": { + "bufferView": "bufferView_18316", + "byteOffset": 9015504, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_17325": { + "bufferView": "bufferView_18315", + "byteOffset": 1059024, + "byteStride": 0, + "count": 768, + "type": 5123 + }, + "accessor_17327": { + "bufferView": "bufferView_18316", + "byteOffset": 9116712, + "byteStride": 12, + "count": 668, + "max": [ + 0.890115, + 0.804672, + 1.23971 + ], + "min": [ + 0.618796, + 0, + 0.873533 + ], + "type": 35665 + }, + "accessor_17329": { + "bufferView": "bufferView_18316", + "byteOffset": 9124728, + "byteStride": 12, + "count": 668, + "max": [ + 0.999968, + 1, + 0.993831 + ], + "min": [ + -0.999968, + -1, + -0.993831 + ], + "type": 35665 + }, + "accessor_17345": { + "bufferView": "bufferView_18315", + "byteOffset": 1060560, + "byteStride": 0, + "count": 822, + "type": 5123 + }, + "accessor_17347": { + "bufferView": "bufferView_18316", + "byteOffset": 9132744, + "byteStride": 12, + "count": 702, + "max": [ + 1.23774, + 0.804672, + 0.758688 + ], + "min": [ + 0.890839, + 0, + 0.483392 + ], + "type": 35665 + }, + "accessor_17349": { + "bufferView": "bufferView_18316", + "byteOffset": 9141168, + "byteStride": 12, + "count": 702, + "max": [ + 0.994983, + 1, + 1 + ], + "min": [ + -0.994983, + -1, + -1 + ], + "type": 35665 + }, + "accessor_17365": { + "bufferView": "bufferView_18315", + "byteOffset": 1062780, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17367": { + "bufferView": "bufferView_18316", + "byteOffset": 9155160, + "byteStride": 12, + "count": 690, + "max": [ + 1.22345, + 0.804672, + 1.00663 + ], + "min": [ + 0.836428, + 0, + 0.685408 + ], + "type": 35665 + }, + "accessor_17369": { + "bufferView": "bufferView_18316", + "byteOffset": 9163440, + "byteStride": 12, + "count": 690, + "max": [ + 0.943851, + 1, + 0.98002 + ], + "min": [ + -0.943851, + -1, + -0.98002 + ], + "type": 35665 + }, + "accessor_17385": { + "bufferView": "bufferView_18315", + "byteOffset": 1064376, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17387": { + "bufferView": "bufferView_18316", + "byteOffset": 9171720, + "byteStride": 12, + "count": 690, + "max": [ + 0.622041, + 0.804672, + 1.24079 + ], + "min": [ + 0.353318, + 0, + 0.872056 + ], + "type": 35665 + }, + "accessor_17389": { + "bufferView": "bufferView_18316", + "byteOffset": 9180000, + "byteStride": 12, + "count": 690, + "max": [ + 0.999992, + 1, + 0.993874 + ], + "min": [ + -0.999992, + -1, + -0.993874 + ], + "type": 35665 + }, + "accessor_17405": { + "bufferView": "bufferView_18315", + "byteOffset": 1065972, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_17407": { + "bufferView": "bufferView_18316", + "byteOffset": 9188280, + "byteStride": 12, + "count": 680, + "max": [ + 1.22196, + 0.804672, + 0.561516 + ], + "min": [ + 0.838746, + 0, + 0.235284 + ], + "type": 35665 + }, + "accessor_17409": { + "bufferView": "bufferView_18316", + "byteOffset": 9196440, + "byteStride": 12, + "count": 680, + "max": [ + 0.944656, + 1, + 0.973405 + ], + "min": [ + -0.944656, + -1, + -0.973405 + ], + "type": 35665 + }, + "accessor_17425": { + "bufferView": "bufferView_18315", + "byteOffset": 1067556, + "byteStride": 0, + "count": 798, + "type": 5123 + }, + "accessor_17427": { + "bufferView": "bufferView_18316", + "byteOffset": 9204600, + "byteStride": 12, + "count": 690, + "max": [ + 0.497998, + 0.804672, + 1.18014 + ], + "min": [ + 0.137873, + 0, + 0.794364 + ], + "type": 35665 + }, + "accessor_17429": { + "bufferView": "bufferView_18316", + "byteOffset": 9212880, + "byteStride": 12, + "count": 690, + "max": [ + 0.911749, + 1, + 0.847351 + ], + "min": [ + -0.911749, + -1, + -0.847351 + ], + "type": 35665 + }, + "accessor_17445": { + "bufferView": "bufferView_18315", + "byteOffset": 1069152, + "byteStride": 0, + "count": 726, + "type": 5123 + }, + "accessor_17447": { + "bufferView": "bufferView_18316", + "byteOffset": 9221160, + "byteStride": 12, + "count": 650, + "max": [ + 1.10412, + 0.804672, + 1.17829 + ], + "min": [ + 0.739089, + 0, + 0.796969 + ], + "type": 35665 + }, + "accessor_17449": { + "bufferView": "bufferView_18316", + "byteOffset": 9228960, + "byteStride": 12, + "count": 650, + "max": [ + 0.898392, + 1, + 0.848417 + ], + "min": [ + -0.898392, + -1, + -0.848417 + ], + "type": 35665 + }, + "accessor_17465": { + "bufferView": "bufferView_18315", + "byteOffset": 1070604, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17467": { + "bufferView": "bufferView_18316", + "byteOffset": 9236760, + "byteStride": 12, + "count": 18, + "max": [ + 0.857984, + 0.134112, + 1.11336 + ], + "min": [ + 0.825743, + 0, + 1.04795 + ], + "type": 35665 + }, + "accessor_17469": { + "bufferView": "bufferView_18316", + "byteOffset": 9236976, + "byteStride": 12, + "count": 18, + "max": [ + 0.897081, + 0.0007971, + 0.443649 + ], + "min": [ + -0.897081, + -0.0007971, + -0.443649 + ], + "type": 35665 + }, + "accessor_1748": { + "bufferView": "bufferView_18315", + "byteOffset": 1062204, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_17485": { + "bufferView": "bufferView_18315", + "byteOffset": 1070640, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17487": { + "bufferView": "bufferView_18316", + "byteOffset": 9237192, + "byteStride": 12, + "count": 18, + "max": [ + 0.857266, + 0.804672, + 1.113 + ], + "min": [ + 0.824286, + 0.67056, + 1.04765 + ], + "type": 35665 + }, + "accessor_17489": { + "bufferView": "bufferView_18316", + "byteOffset": 9237408, + "byteStride": 12, + "count": 18, + "max": [ + 0.896817, + 0.0117743, + 0.455144 + ], + "min": [ + -0.896817, + -0.0117743, + -0.455144 + ], + "type": 35665 + }, + "accessor_1750": { + "bufferView": "bufferView_18316", + "byteOffset": 9149592, + "byteStride": 12, + "count": 232, + "max": [ + 1.51181, + 0.170683, + 0.073218 + ], + "min": [ + 1.41425, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_17505": { + "bufferView": "bufferView_18315", + "byteOffset": 1070676, + "byteStride": 0, + "count": 18, + "type": 5123 + }, + "accessor_17507": { + "bufferView": "bufferView_18316", + "byteOffset": 9237624, + "byteStride": 12, + "count": 18, + "max": [ + 1.04654, + 0.134112, + 0.326994 + ], + "min": [ + 0.989882, + 0, + 0.281078 + ], + "type": 35665 + }, + "accessor_17509": { + "bufferView": "bufferView_18316", + "byteOffset": 9237840, + "byteStride": 12, + "count": 18, + "max": [ + 0.630959, + 0.0007971, + 0.77707 + ], + "min": [ + -0.630959, + -0.0007971, + -0.77707 + ], + "type": 35665 + }, + "accessor_17519": { + "bufferView": "bufferView_18315", + "byteOffset": 1070712, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1752": { + "bufferView": "bufferView_18316", + "byteOffset": 9152376, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_17521": { + "bufferView": "bufferView_18316", + "byteOffset": 9238056, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72696 + ], + "min": [ + 1.08034, + 0.024384, + 0.516433 + ], + "type": 35665 + }, + "accessor_17531": { + "bufferView": "bufferView_18315", + "byteOffset": 1070720, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17533": { + "bufferView": "bufferView_18316", + "byteOffset": 9238092, + "byteStride": 12, + "count": 3, + "max": [ + 1.18718, + 0.402336, + 0.750364 + ], + "min": [ + 1.15145, + 0.134112, + 0.742532 + ], + "type": 35665 + }, + "accessor_17543": { + "bufferView": "bufferView_18315", + "byteOffset": 1070728, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17545": { + "bufferView": "bufferView_18316", + "byteOffset": 9238128, + "byteStride": 12, + "count": 3, + "max": [ + 1.18648, + 0.402336, + 0.499838 + ], + "min": [ + 1.1511, + 0.134112, + 0.490637 + ], + "type": 35665 + }, + "accessor_17555": { + "bufferView": "bufferView_18315", + "byteOffset": 1071192, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17557": { + "bufferView": "bufferView_18316", + "byteOffset": 9243156, + "byteStride": 12, + "count": 3, + "max": [ + 1.08029, + 0.024384, + 0.51668 + ], + "min": [ + 0.989625, + 0.024384, + 0.326672 + ], + "type": 35665 + }, + "accessor_17567": { + "bufferView": "bufferView_18315", + "byteOffset": 1071200, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17569": { + "bufferView": "bufferView_18316", + "byteOffset": 9243192, + "byteStride": 12, + "count": 3, + "max": [ + 0.988947, + 0.024384, + 0.327273 + ], + "min": [ + 0.824786, + 0.024384, + 0.195465 + ], + "type": 35665 + }, + "accessor_17579": { + "bufferView": "bufferView_18315", + "byteOffset": 1071208, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17581": { + "bufferView": "bufferView_18316", + "byteOffset": 9243228, + "byteStride": 12, + "count": 3, + "max": [ + 1.07367, + 0.402336, + 0.281357 + ], + "min": [ + 1.04543, + 0.134112, + 0.257772 + ], + "type": 35665 + }, + "accessor_17591": { + "bufferView": "bufferView_18315", + "byteOffset": 1071216, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17593": { + "bufferView": "bufferView_18316", + "byteOffset": 9243264, + "byteStride": 12, + "count": 3, + "max": [ + 0.824436, + 0.024384, + 0.196301 + ], + "min": [ + 0.61933, + 0.024384, + 0.14883 + ], + "type": 35665 + }, + "accessor_176": { + "bufferView": "bufferView_18315", + "byteOffset": 1011224, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_17603": { + "bufferView": "bufferView_18315", + "byteOffset": 1071224, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17605": { + "bufferView": "bufferView_18316", + "byteOffset": 9243300, + "byteStride": 12, + "count": 3, + "max": [ + 0.870891, + 0.402336, + 0.130415 + ], + "min": [ + 0.855385, + 0.134112, + 0.0971235 + ], + "type": 35665 + }, + "accessor_17615": { + "bufferView": "bufferView_18315", + "byteOffset": 1071232, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17617": { + "bufferView": "bufferView_18316", + "byteOffset": 9243336, + "byteStride": 12, + "count": 3, + "max": [ + 0.193679, + 0.402336, + 0.28238 + ], + "min": [ + 0.164539, + 0.134112, + 0.259904 + ], + "type": 35665 + }, + "accessor_17627": { + "bufferView": "bufferView_18315", + "byteOffset": 1071240, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17629": { + "bufferView": "bufferView_18316", + "byteOffset": 9243372, + "byteStride": 12, + "count": 3, + "max": [ + 0.250955, + 0.024384, + 0.516561 + ], + "min": [ + 0.158739, + 0.024384, + 0.327303 + ], + "type": 35665 + }, + "accessor_17639": { + "bufferView": "bufferView_18315", + "byteOffset": 1071248, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17641": { + "bufferView": "bufferView_18316", + "byteOffset": 9243408, + "byteStride": 12, + "count": 3, + "max": [ + 0.0885313, + 0.402336, + 0.501114 + ], + "min": [ + 0.0527994, + 0.134112, + 0.493267 + ], + "type": 35665 + }, + "accessor_17651": { + "bufferView": "bufferView_18315", + "byteOffset": 1071256, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17653": { + "bufferView": "bufferView_18316", + "byteOffset": 9243444, + "byteStride": 12, + "count": 3, + "max": [ + 0.619963, + 0.402336, + 0.0769445 + ], + "min": [ + 0.618891, + 0.134112, + 0.0405446 + ], + "type": 35665 + }, + "accessor_17663": { + "bufferView": "bufferView_18315", + "byteOffset": 1071264, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17665": { + "bufferView": "bufferView_18316", + "byteOffset": 9243480, + "byteStride": 12, + "count": 3, + "max": [ + 0.159631, + 0.024384, + 0.727244 + ], + "min": [ + 0.147732, + 0.024384, + 0.516717 + ], + "type": 35665 + }, + "accessor_17675": { + "bufferView": "bufferView_18315", + "byteOffset": 1071272, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17677": { + "bufferView": "bufferView_18316", + "byteOffset": 9243516, + "byteStride": 12, + "count": 3, + "max": [ + 0.620512, + 0.024384, + 0.195522 + ], + "min": [ + 0.415022, + 0.024384, + 0.149734 + ], + "type": 35665 + }, + "accessor_1768": { + "bufferView": "bufferView_18315", + "byteOffset": 1070736, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_17687": { + "bufferView": "bufferView_18315", + "byteOffset": 1071280, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17689": { + "bufferView": "bufferView_18316", + "byteOffset": 9243552, + "byteStride": 12, + "count": 3, + "max": [ + 0.415456, + 0.024384, + 0.326775 + ], + "min": [ + 0.250219, + 0.024384, + 0.196317 + ], + "type": 35665 + }, + "accessor_17699": { + "bufferView": "bufferView_18315", + "byteOffset": 1071288, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1770": { + "bufferView": "bufferView_18316", + "byteOffset": 9238164, + "byteStride": 12, + "count": 208, + "max": [ + 2.04829, + 0.195177, + 0.243923 + ], + "min": [ + 1.85313, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_17701": { + "bufferView": "bufferView_18316", + "byteOffset": 9243588, + "byteStride": 12, + "count": 3, + "max": [ + 0.383361, + 0.402336, + 0.130982 + ], + "min": [ + 0.366592, + 0.134112, + 0.0983342 + ], + "type": 35665 + }, + "accessor_17711": { + "bufferView": "bufferView_18315", + "byteOffset": 1071296, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17713": { + "bufferView": "bufferView_18316", + "byteOffset": 9243624, + "byteStride": 12, + "count": 3, + "max": [ + 0.0887701, + 0.402336, + 0.752994 + ], + "min": [ + 0.053393, + 0.134112, + 0.743808 + ], + "type": 35665 + }, + "accessor_1772": { + "bufferView": "bufferView_18316", + "byteOffset": 9240660, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_17723": { + "bufferView": "bufferView_18315", + "byteOffset": 1071304, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17725": { + "bufferView": "bufferView_18316", + "byteOffset": 9243660, + "byteStride": 12, + "count": 3, + "max": [ + 0.194348, + 0.402336, + 0.985908 + ], + "min": [ + 0.166098, + 0.134112, + 0.962335 + ], + "type": 35665 + }, + "accessor_17735": { + "bufferView": "bufferView_18315", + "byteOffset": 1072464, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17737": { + "bufferView": "bufferView_18316", + "byteOffset": 9251376, + "byteStride": 12, + "count": 3, + "max": [ + 1.18707, + 0.402336, + 0.750856 + ], + "min": [ + 1.15134, + 0.134112, + 0.742994 + ], + "type": 35665 + }, + "accessor_17747": { + "bufferView": "bufferView_18315", + "byteOffset": 1072472, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17749": { + "bufferView": "bufferView_18316", + "byteOffset": 9251412, + "byteStride": 12, + "count": 3, + "max": [ + 1.07523, + 0.402336, + 0.984171 + ], + "min": [ + 1.0461, + 0.134112, + 0.961682 + ], + "type": 35665 + }, + "accessor_17759": { + "bufferView": "bufferView_18315", + "byteOffset": 1072480, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17761": { + "bufferView": "bufferView_18316", + "byteOffset": 9251448, + "byteStride": 12, + "count": 3, + "max": [ + 1.18659, + 0.402336, + 0.500299 + ], + "min": [ + 1.15121, + 0.134112, + 0.491129 + ], + "type": 35665 + }, + "accessor_17771": { + "bufferView": "bufferView_18315", + "byteOffset": 1072488, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17773": { + "bufferView": "bufferView_18316", + "byteOffset": 9251484, + "byteStride": 12, + "count": 3, + "max": [ + 0.384328, + 0.402336, + 1.14664 + ], + "min": [ + 0.368808, + 0.134112, + 1.11336 + ], + "type": 35665 + }, + "accessor_17783": { + "bufferView": "bufferView_18315", + "byteOffset": 1072496, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17785": { + "bufferView": "bufferView_18316", + "byteOffset": 9251520, + "byteStride": 12, + "count": 3, + "max": [ + 1.08114, + 0.024384, + 0.916734 + ], + "min": [ + 0.988843, + 0.024384, + 0.727517 + ], + "type": 35665 + }, + "accessor_17795": { + "bufferView": "bufferView_18315", + "byteOffset": 1072504, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17797": { + "bufferView": "bufferView_18316", + "byteOffset": 9251556, + "byteStride": 12, + "count": 3, + "max": [ + 0.250173, + 0.024384, + 0.917044 + ], + "min": [ + 0.159594, + 0.024384, + 0.726997 + ], + "type": 35665 + }, + "accessor_178": { + "bufferView": "bufferView_18316", + "byteOffset": 8743608, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_17807": { + "bufferView": "bufferView_18315", + "byteOffset": 1072512, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17809": { + "bufferView": "bufferView_18316", + "byteOffset": 9251592, + "byteStride": 12, + "count": 3, + "max": [ + 0.873107, + 0.402336, + 1.14565 + ], + "min": [ + 0.856352, + 0.134112, + 1.113 + ], + "type": 35665 + }, + "accessor_17819": { + "bufferView": "bufferView_18315", + "byteOffset": 1072520, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17821": { + "bufferView": "bufferView_18316", + "byteOffset": 9251628, + "byteStride": 12, + "count": 3, + "max": [ + 0.989579, + 0.024384, + 1.04765 + ], + "min": [ + 0.824286, + 0.024384, + 0.917263 + ], + "type": 35665 + }, + "accessor_17831": { + "bufferView": "bufferView_18315", + "byteOffset": 1072528, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17833": { + "bufferView": "bufferView_18316", + "byteOffset": 9251664, + "byteStride": 12, + "count": 3, + "max": [ + 1.08038, + 0.024384, + 0.51708 + ], + "min": [ + 0.989882, + 0.024384, + 0.326994 + ], + "type": 35665 + }, + "accessor_17843": { + "bufferView": "bufferView_18315", + "byteOffset": 1072536, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17845": { + "bufferView": "bufferView_18316", + "byteOffset": 9251700, + "byteStride": 12, + "count": 3, + "max": [ + 1.09219, + 0.024384, + 0.72736 + ], + "min": [ + 1.08025, + 0.024384, + 0.516834 + ], + "type": 35665 + }, + "accessor_17855": { + "bufferView": "bufferView_18315", + "byteOffset": 1072544, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17857": { + "bufferView": "bufferView_18316", + "byteOffset": 9251736, + "byteStride": 12, + "count": 3, + "max": [ + 0.414955, + 0.024384, + 1.04832 + ], + "min": [ + 0.250851, + 0.024384, + 0.916443 + ], + "type": 35665 + }, + "accessor_17867": { + "bufferView": "bufferView_18315", + "byteOffset": 1072552, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17869": { + "bufferView": "bufferView_18316", + "byteOffset": 9251772, + "byteStride": 12, + "count": 3, + "max": [ + 0.825743, + 0.024384, + 1.09414 + ], + "min": [ + 0.620344, + 0.024384, + 1.04795 + ], + "type": 35665 + }, + "accessor_17879": { + "bufferView": "bufferView_18315", + "byteOffset": 1072560, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_1788": { + "bufferView": "bufferView_18315", + "byteOffset": 1071312, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_17881": { + "bufferView": "bufferView_18316", + "byteOffset": 9251808, + "byteStride": 12, + "count": 3, + "max": [ + 0.62218, + 0.402336, + 1.20333 + ], + "min": [ + 0.621036, + 0.134112, + 1.16693 + ], + "type": 35665 + }, + "accessor_17891": { + "bufferView": "bufferView_18315", + "byteOffset": 1072568, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_17893": { + "bufferView": "bufferView_18316", + "byteOffset": 9251844, + "byteStride": 12, + "count": 3, + "max": [ + 0.620391, + 0.024384, + 1.09505 + ], + "min": [ + 0.415305, + 0.024384, + 1.04749 + ], + "type": 35665 + }, + "accessor_1790": { + "bufferView": "bufferView_18316", + "byteOffset": 9243696, + "byteStride": 12, + "count": 320, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_17909": { + "bufferView": "bufferView_18315", + "byteOffset": 1073032, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_17911": { + "bufferView": "bufferView_18316", + "byteOffset": 9256872, + "byteStride": 12, + "count": 98, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_17913": { + "bufferView": "bufferView_18316", + "byteOffset": 9258048, + "byteStride": 12, + "count": 98, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1792": { + "bufferView": "bufferView_18316", + "byteOffset": 9247536, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_17929": { + "bufferView": "bufferView_18315", + "byteOffset": 1073608, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_17931": { + "bufferView": "bufferView_18316", + "byteOffset": 9259224, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_17933": { + "bufferView": "bufferView_18316", + "byteOffset": 9260760, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_17949": { + "bufferView": "bufferView_18315", + "byteOffset": 1074160, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_17951": { + "bufferView": "bufferView_18316", + "byteOffset": 9262296, + "byteStride": 12, + "count": 98, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_17953": { + "bufferView": "bufferView_18316", + "byteOffset": 9263472, + "byteStride": 12, + "count": 98, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_17969": { + "bufferView": "bufferView_18315", + "byteOffset": 1074736, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_17971": { + "bufferView": "bufferView_18316", + "byteOffset": 9264648, + "byteStride": 12, + "count": 130, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_17973": { + "bufferView": "bufferView_18316", + "byteOffset": 9266208, + "byteStride": 12, + "count": 130, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_17989": { + "bufferView": "bufferView_18315", + "byteOffset": 1075480, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_17991": { + "bufferView": "bufferView_18316", + "byteOffset": 9267768, + "byteStride": 12, + "count": 98, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_17993": { + "bufferView": "bufferView_18316", + "byteOffset": 9268944, + "byteStride": 12, + "count": 98, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18": { + "bufferView": "bufferView_18316", + "byteOffset": 3405240, + "byteStride": 12, + "count": 5619, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_180": { + "bufferView": "bufferView_18316", + "byteOffset": 8746104, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_18009": { + "bufferView": "bufferView_18315", + "byteOffset": 1076056, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_18011": { + "bufferView": "bufferView_18316", + "byteOffset": 9270120, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18013": { + "bufferView": "bufferView_18316", + "byteOffset": 9271656, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18029": { + "bufferView": "bufferView_18315", + "byteOffset": 1076608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_18031": { + "bufferView": "bufferView_18316", + "byteOffset": 9273192, + "byteStride": 12, + "count": 98, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_18033": { + "bufferView": "bufferView_18316", + "byteOffset": 9274368, + "byteStride": 12, + "count": 98, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18049": { + "bufferView": "bufferView_18315", + "byteOffset": 1077184, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_18051": { + "bufferView": "bufferView_18316", + "byteOffset": 9275544, + "byteStride": 12, + "count": 130, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_18053": { + "bufferView": "bufferView_18316", + "byteOffset": 9277104, + "byteStride": 12, + "count": 130, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18069": { + "bufferView": "bufferView_18315", + "byteOffset": 1077928, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_18071": { + "bufferView": "bufferView_18316", + "byteOffset": 9278664, + "byteStride": 12, + "count": 640, + "max": [ + 0.195073, + 0.0922107, + 0.195088 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18073": { + "bufferView": "bufferView_18316", + "byteOffset": 9286344, + "byteStride": 12, + "count": 640, + "max": [ + 0.980948, + 1, + 0.980886 + ], + "min": [ + -0.980948, + -1, + -0.980886 + ], + "type": 35665 + }, + "accessor_1808": { + "bufferView": "bufferView_18315", + "byteOffset": 1072576, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_18089": { + "bufferView": "bufferView_18315", + "byteOffset": 1079512, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_18091": { + "bufferView": "bufferView_18316", + "byteOffset": 9294024, + "byteStride": 12, + "count": 644, + "max": [ + 0.438913, + 0.0922107, + 0.195088 + ], + "min": [ + 0.24384, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18093": { + "bufferView": "bufferView_18316", + "byteOffset": 9301752, + "byteStride": 12, + "count": 644, + "max": [ + 0.980948, + 1, + 0.980886 + ], + "min": [ + -0.980948, + -1, + -0.980886 + ], + "type": 35665 + }, + "accessor_1810": { + "bufferView": "bufferView_18316", + "byteOffset": 9251880, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_18109": { + "bufferView": "bufferView_18315", + "byteOffset": 1081672, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_18111": { + "bufferView": "bufferView_18316", + "byteOffset": 9315048, + "byteStride": 12, + "count": 639, + "max": [ + 0.195073, + 0.0922107, + 0.195088 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18113": { + "bufferView": "bufferView_18316", + "byteOffset": 9322716, + "byteStride": 12, + "count": 639, + "max": [ + 0.980948, + 1, + 0.980886 + ], + "min": [ + -0.980948, + -1, + -0.980886 + ], + "type": 35665 + }, + "accessor_1812": { + "bufferView": "bufferView_18316", + "byteOffset": 9254376, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_18129": { + "bufferView": "bufferView_18315", + "byteOffset": 1083256, + "byteStride": 0, + "count": 792, + "type": 5123 + }, + "accessor_18131": { + "bufferView": "bufferView_18316", + "byteOffset": 9330384, + "byteStride": 12, + "count": 644, + "max": [ + 0.438913, + 0.0922107, + 0.195088 + ], + "min": [ + 0.24384, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18133": { + "bufferView": "bufferView_18316", + "byteOffset": 9338112, + "byteStride": 12, + "count": 644, + "max": [ + 0.980948, + 1, + 0.980886 + ], + "min": [ + -0.980948, + -1, + -0.980886 + ], + "type": 35665 + }, + "accessor_18149": { + "bufferView": "bufferView_18315", + "byteOffset": 1084840, + "byteStride": 0, + "count": 2802, + "type": 5123 + }, + "accessor_18151": { + "bufferView": "bufferView_18316", + "byteOffset": 9345840, + "byteStride": 12, + "count": 1625, + "max": [ + 0.97536, + 0.97536, + 0.816864 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18153": { + "bufferView": "bufferView_18316", + "byteOffset": 9365340, + "byteStride": 12, + "count": 1625, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18169": { + "bufferView": "bufferView_18315", + "byteOffset": 1090444, + "byteStride": 0, + "count": 156, + "type": 5123 + }, + "accessor_18171": { + "bufferView": "bufferView_18316", + "byteOffset": 9384840, + "byteStride": 12, + "count": 88, + "max": [ + 0.780288, + 0.512064, + 0.725424 + ], + "min": [ + 0.73152, + 0.12192, + 0.481584 + ], + "type": 35665 + }, + "accessor_18173": { + "bufferView": "bufferView_18316", + "byteOffset": 9385896, + "byteStride": 12, + "count": 88, + "max": [ + 1, + 1, + 0.986394 + ], + "min": [ + -1, + -1, + -0.986394 + ], + "type": 35665 + }, + "accessor_18189": { + "bufferView": "bufferView_18315", + "byteOffset": 1090756, + "byteStride": 0, + "count": 1080, + "type": 5123 + }, + "accessor_18191": { + "bufferView": "bufferView_18316", + "byteOffset": 9386952, + "byteStride": 12, + "count": 632, + "max": [ + 0.585216, + 0.73152, + 0.73152 + ], + "min": [ + 0.390144, + 0.536448, + 0.627888 + ], + "type": 35665 + }, + "accessor_18193": { + "bufferView": "bufferView_18316", + "byteOffset": 9394536, + "byteStride": 12, + "count": 632, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_18209": { + "bufferView": "bufferView_18315", + "byteOffset": 1092916, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_18211": { + "bufferView": "bufferView_18316", + "byteOffset": 9402120, + "byteStride": 12, + "count": 320, + "max": [ + 0.585216, + 0.97536, + 0.585216 + ], + "min": [ + 0.390144, + 0.926592, + 0.390144 + ], + "type": 35665 + }, + "accessor_18213": { + "bufferView": "bufferView_18316", + "byteOffset": 9405960, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 1, + 0.986394 + ], + "min": [ + -0.986394, + -1, + -0.986394 + ], + "type": 35665 + }, + "accessor_18229": { + "bufferView": "bufferView_18315", + "byteOffset": 1094068, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_18231": { + "bufferView": "bufferView_18316", + "byteOffset": 9409800, + "byteStride": 12, + "count": 320, + "max": [ + 0.585216, + 0.97536, + 0.341376 + ], + "min": [ + 0.390144, + 0.926592, + 0.146304 + ], + "type": 35665 + }, + "accessor_18233": { + "bufferView": "bufferView_18316", + "byteOffset": 9413640, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 1, + 0.986394 + ], + "min": [ + -0.986394, + -1, + -0.986394 + ], + "type": 35665 + }, + "accessor_18249": { + "bufferView": "bufferView_18315", + "byteOffset": 1095220, + "byteStride": 0, + "count": 2496, + "type": 5123 + }, + "accessor_18251": { + "bufferView": "bufferView_18316", + "byteOffset": 9417480, + "byteStride": 12, + "count": 2016, + "max": [ + 0.219456, + 0.219456, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18253": { + "bufferView": "bufferView_18316", + "byteOffset": 9441672, + "byteStride": 12, + "count": 2016, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_18269": { + "bufferView": "bufferView_18315", + "byteOffset": 1100212, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_18271": { + "bufferView": "bufferView_18316", + "byteOffset": 9465864, + "byteStride": 12, + "count": 768, + "max": [ + 0.219456, + 0.219456, + 0.12192 + ], + "min": [ + 0, + 0, + 0.097536 + ], + "type": 35665 + }, + "accessor_18273": { + "bufferView": "bufferView_18316", + "byteOffset": 9475080, + "byteStride": 12, + "count": 768, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1828": { + "bufferView": "bufferView_18315", + "byteOffset": 1081096, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_18289": { + "bufferView": "bufferView_18315", + "byteOffset": 1103668, + "byteStride": 0, + "count": 2496, + "type": 5123 + }, + "accessor_18291": { + "bufferView": "bufferView_18316", + "byteOffset": 9491976, + "byteStride": 12, + "count": 2016, + "max": [ + 0.219456, + 0.219456, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_18293": { + "bufferView": "bufferView_18316", + "byteOffset": 9516168, + "byteStride": 12, + "count": 2016, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1830": { + "bufferView": "bufferView_18316", + "byteOffset": 9309480, + "byteStride": 12, + "count": 232, + "max": [ + 1.75565, + 0.170683, + 0.073218 + ], + "min": [ + 1.65809, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_18309": { + "bufferView": "bufferView_18315", + "byteOffset": 1108660, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_18311": { + "bufferView": "bufferView_18316", + "byteOffset": 9540360, + "byteStride": 12, + "count": 768, + "max": [ + 0.219456, + 0.219456, + 0.12192 + ], + "min": [ + 0, + 0, + 0.097536 + ], + "type": 35665 + }, + "accessor_18313": { + "bufferView": "bufferView_18316", + "byteOffset": 9549576, + "byteStride": 12, + "count": 768, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_1832": { + "bufferView": "bufferView_18316", + "byteOffset": 9312264, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_1848": { + "bufferView": "bufferView_18315", + "byteOffset": 1102516, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1850": { + "bufferView": "bufferView_18316", + "byteOffset": 9484296, + "byteStride": 12, + "count": 320, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_1852": { + "bufferView": "bufferView_18316", + "byteOffset": 9488136, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_1868": { + "bufferView": "bufferView_18315", + "byteOffset": 1110964, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_1870": { + "bufferView": "bufferView_18316", + "byteOffset": 9558792, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_1872": { + "bufferView": "bufferView_18316", + "byteOffset": 9561288, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_1888": { + "bufferView": "bufferView_18315", + "byteOffset": 1111420, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_1890": { + "bufferView": "bufferView_18316", + "byteOffset": 9563784, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_1892": { + "bufferView": "bufferView_18316", + "byteOffset": 9566568, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_1908": { + "bufferView": "bufferView_18315", + "byteOffset": 1111996, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_1910": { + "bufferView": "bufferView_18316", + "byteOffset": 9569352, + "byteStride": 12, + "count": 208, + "max": [ + 2.53597, + 0.195177, + 0.243923 + ], + "min": [ + 2.34081, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_1912": { + "bufferView": "bufferView_18316", + "byteOffset": 9571848, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_1928": { + "bufferView": "bufferView_18315", + "byteOffset": 1113604, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1930": { + "bufferView": "bufferView_18316", + "byteOffset": 9582600, + "byteStride": 12, + "count": 320, + "max": [ + 1.90195, + 0.195224, + 0.341492 + ], + "min": [ + 1.75565, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_1932": { + "bufferView": "bufferView_18316", + "byteOffset": 9586440, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_1948": { + "bufferView": "bufferView_18315", + "byteOffset": 1114756, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1950": { + "bufferView": "bufferView_18316", + "byteOffset": 9590280, + "byteStride": 12, + "count": 320, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_1952": { + "bufferView": "bufferView_18316", + "byteOffset": 9594120, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_196": { + "bufferView": "bufferView_18315", + "byteOffset": 1112452, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1968": { + "bufferView": "bufferView_18315", + "byteOffset": 1115908, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_1970": { + "bufferView": "bufferView_18316", + "byteOffset": 9597960, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_1972": { + "bufferView": "bufferView_18316", + "byteOffset": 9600456, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_198": { + "bufferView": "bufferView_18316", + "byteOffset": 9574344, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_1988": { + "bufferView": "bufferView_18315", + "byteOffset": 1116364, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_1990": { + "bufferView": "bufferView_18316", + "byteOffset": 9602952, + "byteStride": 12, + "count": 320, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_1992": { + "bufferView": "bufferView_18316", + "byteOffset": 9606792, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_20": { + "bufferView": "bufferView_18316", + "byteOffset": 3472668, + "byteStride": 12, + "count": 5619, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_200": { + "bufferView": "bufferView_18316", + "byteOffset": 9578472, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2002": { + "bufferView": "bufferView_18315", + "byteOffset": 1117516, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2004": { + "bufferView": "bufferView_18316", + "byteOffset": 9610632, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2014": { + "bufferView": "bufferView_18315", + "byteOffset": 1117520, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2016": { + "bufferView": "bufferView_18316", + "byteOffset": 9610656, + "byteStride": 12, + "count": 2, + "max": [ + 2.29213, + 0.0488734, + 0.243892 + ], + "min": [ + 2.29207, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2026": { + "bufferView": "bufferView_18315", + "byteOffset": 1117524, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2028": { + "bufferView": "bufferView_18316", + "byteOffset": 9610680, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2038": { + "bufferView": "bufferView_18315", + "byteOffset": 1117528, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2040": { + "bufferView": "bufferView_18316", + "byteOffset": 9610704, + "byteStride": 12, + "count": 2, + "max": [ + 1.56061, + 0.0488734, + 0.243892 + ], + "min": [ + 1.56055, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2050": { + "bufferView": "bufferView_18315", + "byteOffset": 1117532, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2052": { + "bufferView": "bufferView_18316", + "byteOffset": 9610728, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2062": { + "bufferView": "bufferView_18315", + "byteOffset": 1117536, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2064": { + "bufferView": "bufferView_18316", + "byteOffset": 9610752, + "byteStride": 12, + "count": 2, + "max": [ + 1.80445, + 0.0488734, + 0.243892 + ], + "min": [ + 1.80439, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2074": { + "bufferView": "bufferView_18315", + "byteOffset": 1117540, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2076": { + "bufferView": "bufferView_18316", + "byteOffset": 9610776, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2086": { + "bufferView": "bufferView_18315", + "byteOffset": 1117544, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2088": { + "bufferView": "bufferView_18316", + "byteOffset": 9610800, + "byteStride": 12, + "count": 2, + "max": [ + 2.04829, + 0.0488734, + 0.243892 + ], + "min": [ + 2.04823, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2098": { + "bufferView": "bufferView_18315", + "byteOffset": 1118004, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2100": { + "bufferView": "bufferView_18316", + "byteOffset": 9615816, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2110": { + "bufferView": "bufferView_18315", + "byteOffset": 1118008, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2112": { + "bufferView": "bufferView_18316", + "byteOffset": 9615840, + "byteStride": 12, + "count": 2, + "max": [ + 2.53597, + 0.0488734, + 0.243892 + ], + "min": [ + 2.53591, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2122": { + "bufferView": "bufferView_18315", + "byteOffset": 1118012, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2124": { + "bufferView": "bufferView_18316", + "byteOffset": 9615864, + "byteStride": 12, + "count": 2, + "max": [ + 2.77981, + 0.0488734, + 0.243892 + ], + "min": [ + 2.77975, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2140": { + "bufferView": "bufferView_18315", + "byteOffset": 1118016, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_2142": { + "bufferView": "bufferView_18316", + "byteOffset": 9615888, + "byteStride": 12, + "count": 5619, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_2144": { + "bufferView": "bufferView_18316", + "byteOffset": 9683316, + "byteStride": 12, + "count": 5619, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_216": { + "bufferView": "bufferView_18315", + "byteOffset": 1117548, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2160": { + "bufferView": "bufferView_18315", + "byteOffset": 1132032, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2162": { + "bufferView": "bufferView_18316", + "byteOffset": 9750744, + "byteStride": 12, + "count": 343, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2164": { + "bufferView": "bufferView_18316", + "byteOffset": 9754860, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_218": { + "bufferView": "bufferView_18316", + "byteOffset": 9610824, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2180": { + "bufferView": "bufferView_18315", + "byteOffset": 1133184, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2182": { + "bufferView": "bufferView_18316", + "byteOffset": 9758976, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2184": { + "bufferView": "bufferView_18316", + "byteOffset": 9761760, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_220": { + "bufferView": "bufferView_18316", + "byteOffset": 9613320, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2200": { + "bufferView": "bufferView_18315", + "byteOffset": 1133760, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2202": { + "bufferView": "bufferView_18316", + "byteOffset": 9764544, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2204": { + "bufferView": "bufferView_18316", + "byteOffset": 9767328, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2220": { + "bufferView": "bufferView_18315", + "byteOffset": 1134336, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2222": { + "bufferView": "bufferView_18316", + "byteOffset": 9770112, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2224": { + "bufferView": "bufferView_18316", + "byteOffset": 9772896, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2240": { + "bufferView": "bufferView_18315", + "byteOffset": 1134912, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2242": { + "bufferView": "bufferView_18316", + "byteOffset": 9775680, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2244": { + "bufferView": "bufferView_18316", + "byteOffset": 9778176, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2260": { + "bufferView": "bufferView_18315", + "byteOffset": 1135368, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2262": { + "bufferView": "bufferView_18316", + "byteOffset": 9780672, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2264": { + "bufferView": "bufferView_18316", + "byteOffset": 9783456, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2280": { + "bufferView": "bufferView_18315", + "byteOffset": 1135944, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2282": { + "bufferView": "bufferView_18316", + "byteOffset": 9786240, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2284": { + "bufferView": "bufferView_18316", + "byteOffset": 9788736, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2300": { + "bufferView": "bufferView_18315", + "byteOffset": 1136856, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2302": { + "bufferView": "bufferView_18316", + "byteOffset": 9796224, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2304": { + "bufferView": "bufferView_18316", + "byteOffset": 9798720, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2320": { + "bufferView": "bufferView_18315", + "byteOffset": 1137312, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2322": { + "bufferView": "bufferView_18316", + "byteOffset": 9801216, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2324": { + "bufferView": "bufferView_18316", + "byteOffset": 9805344, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2340": { + "bufferView": "bufferView_18315", + "byteOffset": 1138464, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2342": { + "bufferView": "bufferView_18316", + "byteOffset": 9809472, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2344": { + "bufferView": "bufferView_18316", + "byteOffset": 9811968, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_236": { + "bufferView": "bufferView_18315", + "byteOffset": 1136400, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2360": { + "bufferView": "bufferView_18315", + "byteOffset": 1138920, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2362": { + "bufferView": "bufferView_18316", + "byteOffset": 9814464, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2364": { + "bufferView": "bufferView_18316", + "byteOffset": 9816960, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_238": { + "bufferView": "bufferView_18316", + "byteOffset": 9791232, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2380": { + "bufferView": "bufferView_18315", + "byteOffset": 1139376, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2382": { + "bufferView": "bufferView_18316", + "byteOffset": 9819456, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2384": { + "bufferView": "bufferView_18316", + "byteOffset": 9823584, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_240": { + "bufferView": "bufferView_18316", + "byteOffset": 9793728, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2400": { + "bufferView": "bufferView_18315", + "byteOffset": 1140528, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2402": { + "bufferView": "bufferView_18316", + "byteOffset": 9827712, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2404": { + "bufferView": "bufferView_18316", + "byteOffset": 9831828, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2420": { + "bufferView": "bufferView_18315", + "byteOffset": 1141680, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2422": { + "bufferView": "bufferView_18316", + "byteOffset": 9835944, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2424": { + "bufferView": "bufferView_18316", + "byteOffset": 9840072, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2440": { + "bufferView": "bufferView_18315", + "byteOffset": 1142832, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2442": { + "bufferView": "bufferView_18316", + "byteOffset": 9844200, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2444": { + "bufferView": "bufferView_18316", + "byteOffset": 9846984, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2460": { + "bufferView": "bufferView_18315", + "byteOffset": 1143408, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2462": { + "bufferView": "bufferView_18316", + "byteOffset": 9849768, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2464": { + "bufferView": "bufferView_18316", + "byteOffset": 9853896, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2474": { + "bufferView": "bufferView_18315", + "byteOffset": 1144560, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2476": { + "bufferView": "bufferView_18316", + "byteOffset": 9858024, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2486": { + "bufferView": "bufferView_18315", + "byteOffset": 1144564, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2488": { + "bufferView": "bufferView_18316", + "byteOffset": 9858048, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2498": { + "bufferView": "bufferView_18315", + "byteOffset": 1145720, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2500": { + "bufferView": "bufferView_18316", + "byteOffset": 9866328, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2510": { + "bufferView": "bufferView_18315", + "byteOffset": 1145724, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2512": { + "bufferView": "bufferView_18316", + "byteOffset": 9866352, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2522": { + "bufferView": "bufferView_18315", + "byteOffset": 1145728, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2524": { + "bufferView": "bufferView_18316", + "byteOffset": 9866376, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2540": { + "bufferView": "bufferView_18315", + "byteOffset": 1145732, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_2542": { + "bufferView": "bufferView_18316", + "byteOffset": 9866400, + "byteStride": 12, + "count": 5619, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_2544": { + "bufferView": "bufferView_18316", + "byteOffset": 9933828, + "byteStride": 12, + "count": 5619, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_256": { + "bufferView": "bufferView_18315", + "byteOffset": 1144568, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2560": { + "bufferView": "bufferView_18315", + "byteOffset": 1159748, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2562": { + "bufferView": "bufferView_18316", + "byteOffset": 10001256, + "byteStride": 12, + "count": 343, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2564": { + "bufferView": "bufferView_18316", + "byteOffset": 10005372, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_258": { + "bufferView": "bufferView_18316", + "byteOffset": 9858072, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2580": { + "bufferView": "bufferView_18315", + "byteOffset": 1160900, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2582": { + "bufferView": "bufferView_18316", + "byteOffset": 10009488, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2584": { + "bufferView": "bufferView_18316", + "byteOffset": 10012272, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_260": { + "bufferView": "bufferView_18316", + "byteOffset": 9862200, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2600": { + "bufferView": "bufferView_18315", + "byteOffset": 1161476, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2602": { + "bufferView": "bufferView_18316", + "byteOffset": 10015056, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2604": { + "bufferView": "bufferView_18316", + "byteOffset": 10017840, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2620": { + "bufferView": "bufferView_18315", + "byteOffset": 1162052, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2622": { + "bufferView": "bufferView_18316", + "byteOffset": 10020624, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2624": { + "bufferView": "bufferView_18316", + "byteOffset": 10023408, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2640": { + "bufferView": "bufferView_18315", + "byteOffset": 1162628, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2642": { + "bufferView": "bufferView_18316", + "byteOffset": 10026192, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2644": { + "bufferView": "bufferView_18316", + "byteOffset": 10028688, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2660": { + "bufferView": "bufferView_18315", + "byteOffset": 1163084, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2662": { + "bufferView": "bufferView_18316", + "byteOffset": 10031184, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2664": { + "bufferView": "bufferView_18316", + "byteOffset": 10033968, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2680": { + "bufferView": "bufferView_18315", + "byteOffset": 1163660, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2682": { + "bufferView": "bufferView_18316", + "byteOffset": 10036752, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2684": { + "bufferView": "bufferView_18316", + "byteOffset": 10039248, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2700": { + "bufferView": "bufferView_18315", + "byteOffset": 1165268, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2702": { + "bufferView": "bufferView_18316", + "byteOffset": 10049976, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2704": { + "bufferView": "bufferView_18316", + "byteOffset": 10052472, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_2720": { + "bufferView": "bufferView_18315", + "byteOffset": 1165724, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2722": { + "bufferView": "bufferView_18316", + "byteOffset": 10054968, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2724": { + "bufferView": "bufferView_18316", + "byteOffset": 10059096, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2740": { + "bufferView": "bufferView_18315", + "byteOffset": 1166876, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2742": { + "bufferView": "bufferView_18316", + "byteOffset": 10063224, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2744": { + "bufferView": "bufferView_18316", + "byteOffset": 10065720, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_276": { + "bufferView": "bufferView_18315", + "byteOffset": 1164116, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2760": { + "bufferView": "bufferView_18315", + "byteOffset": 1167332, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_2762": { + "bufferView": "bufferView_18316", + "byteOffset": 10068216, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_2764": { + "bufferView": "bufferView_18316", + "byteOffset": 10070712, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_278": { + "bufferView": "bufferView_18316", + "byteOffset": 10041744, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2780": { + "bufferView": "bufferView_18315", + "byteOffset": 1167788, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2782": { + "bufferView": "bufferView_18316", + "byteOffset": 10073208, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2784": { + "bufferView": "bufferView_18316", + "byteOffset": 10077336, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_280": { + "bufferView": "bufferView_18316", + "byteOffset": 10045860, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2800": { + "bufferView": "bufferView_18315", + "byteOffset": 1168940, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2802": { + "bufferView": "bufferView_18316", + "byteOffset": 10081464, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2804": { + "bufferView": "bufferView_18316", + "byteOffset": 10085580, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2820": { + "bufferView": "bufferView_18315", + "byteOffset": 1170092, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2822": { + "bufferView": "bufferView_18316", + "byteOffset": 10089696, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2824": { + "bufferView": "bufferView_18316", + "byteOffset": 10093824, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2840": { + "bufferView": "bufferView_18315", + "byteOffset": 1171244, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2842": { + "bufferView": "bufferView_18316", + "byteOffset": 10097952, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2844": { + "bufferView": "bufferView_18316", + "byteOffset": 10100736, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_2860": { + "bufferView": "bufferView_18315", + "byteOffset": 1171820, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2862": { + "bufferView": "bufferView_18316", + "byteOffset": 10103520, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2864": { + "bufferView": "bufferView_18316", + "byteOffset": 10107648, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_2874": { + "bufferView": "bufferView_18315", + "byteOffset": 1172972, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2876": { + "bufferView": "bufferView_18316", + "byteOffset": 10111776, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2886": { + "bufferView": "bufferView_18315", + "byteOffset": 1174128, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2888": { + "bufferView": "bufferView_18316", + "byteOffset": 10120056, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2898": { + "bufferView": "bufferView_18315", + "byteOffset": 1174132, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2900": { + "bufferView": "bufferView_18316", + "byteOffset": 10120080, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2910": { + "bufferView": "bufferView_18315", + "byteOffset": 1174136, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2912": { + "bufferView": "bufferView_18316", + "byteOffset": 10120104, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2922": { + "bufferView": "bufferView_18315", + "byteOffset": 1174140, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_2924": { + "bufferView": "bufferView_18316", + "byteOffset": 10120128, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_2940": { + "bufferView": "bufferView_18315", + "byteOffset": 1174144, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_2942": { + "bufferView": "bufferView_18316", + "byteOffset": 10120152, + "byteStride": 12, + "count": 5619, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_2944": { + "bufferView": "bufferView_18316", + "byteOffset": 10187580, + "byteStride": 12, + "count": 5619, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_296": { + "bufferView": "bufferView_18315", + "byteOffset": 1172976, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2960": { + "bufferView": "bufferView_18315", + "byteOffset": 1188160, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_2962": { + "bufferView": "bufferView_18316", + "byteOffset": 10255008, + "byteStride": 12, + "count": 343, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2964": { + "bufferView": "bufferView_18316", + "byteOffset": 10259124, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_298": { + "bufferView": "bufferView_18316", + "byteOffset": 10111800, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_2980": { + "bufferView": "bufferView_18315", + "byteOffset": 1189312, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_2982": { + "bufferView": "bufferView_18316", + "byteOffset": 10263240, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_2984": { + "bufferView": "bufferView_18316", + "byteOffset": 10266024, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_300": { + "bufferView": "bufferView_18316", + "byteOffset": 10115928, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3000": { + "bufferView": "bufferView_18315", + "byteOffset": 1189888, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3002": { + "bufferView": "bufferView_18316", + "byteOffset": 10268808, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_3004": { + "bufferView": "bufferView_18316", + "byteOffset": 10271592, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_3020": { + "bufferView": "bufferView_18315", + "byteOffset": 1190464, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3022": { + "bufferView": "bufferView_18316", + "byteOffset": 10274376, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_3024": { + "bufferView": "bufferView_18316", + "byteOffset": 10277160, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_3040": { + "bufferView": "bufferView_18315", + "byteOffset": 1191040, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_3042": { + "bufferView": "bufferView_18316", + "byteOffset": 10279944, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_3044": { + "bufferView": "bufferView_18316", + "byteOffset": 10282440, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_3060": { + "bufferView": "bufferView_18315", + "byteOffset": 1191496, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3062": { + "bufferView": "bufferView_18316", + "byteOffset": 10284936, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_3064": { + "bufferView": "bufferView_18316", + "byteOffset": 10287720, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_3080": { + "bufferView": "bufferView_18315", + "byteOffset": 1192648, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_3082": { + "bufferView": "bufferView_18316", + "byteOffset": 10296072, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_3084": { + "bufferView": "bufferView_18316", + "byteOffset": 10298568, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_3100": { + "bufferView": "bufferView_18315", + "byteOffset": 1193104, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_3102": { + "bufferView": "bufferView_18316", + "byteOffset": 10301064, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_3104": { + "bufferView": "bufferView_18316", + "byteOffset": 10303560, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_3120": { + "bufferView": "bufferView_18315", + "byteOffset": 1193560, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3122": { + "bufferView": "bufferView_18316", + "byteOffset": 10306056, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3124": { + "bufferView": "bufferView_18316", + "byteOffset": 10310184, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3140": { + "bufferView": "bufferView_18315", + "byteOffset": 1194712, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_3142": { + "bufferView": "bufferView_18316", + "byteOffset": 10314312, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_3144": { + "bufferView": "bufferView_18316", + "byteOffset": 10316808, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_316": { + "bufferView": "bufferView_18315", + "byteOffset": 1192072, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3160": { + "bufferView": "bufferView_18315", + "byteOffset": 1195168, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_3162": { + "bufferView": "bufferView_18316", + "byteOffset": 10319304, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_3164": { + "bufferView": "bufferView_18316", + "byteOffset": 10321800, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_318": { + "bufferView": "bufferView_18316", + "byteOffset": 10290504, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_3180": { + "bufferView": "bufferView_18315", + "byteOffset": 1195624, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3182": { + "bufferView": "bufferView_18316", + "byteOffset": 10324296, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3184": { + "bufferView": "bufferView_18316", + "byteOffset": 10328424, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_320": { + "bufferView": "bufferView_18316", + "byteOffset": 10293288, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_3200": { + "bufferView": "bufferView_18315", + "byteOffset": 1196776, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3202": { + "bufferView": "bufferView_18316", + "byteOffset": 10332552, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3204": { + "bufferView": "bufferView_18316", + "byteOffset": 10336668, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3220": { + "bufferView": "bufferView_18315", + "byteOffset": 1197928, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3222": { + "bufferView": "bufferView_18316", + "byteOffset": 10340784, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3224": { + "bufferView": "bufferView_18316", + "byteOffset": 10344912, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3240": { + "bufferView": "bufferView_18315", + "byteOffset": 1199080, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3242": { + "bufferView": "bufferView_18316", + "byteOffset": 10349040, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_3244": { + "bufferView": "bufferView_18316", + "byteOffset": 10351824, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_3260": { + "bufferView": "bufferView_18315", + "byteOffset": 0, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3262": { + "bufferView": "bufferView_18316", + "byteOffset": 0, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3264": { + "bufferView": "bufferView_18316", + "byteOffset": 4128, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3274": { + "bufferView": "bufferView_18315", + "byteOffset": 2304, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3276": { + "bufferView": "bufferView_18316", + "byteOffset": 16512, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3286": { + "bufferView": "bufferView_18315", + "byteOffset": 2308, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3288": { + "bufferView": "bufferView_18316", + "byteOffset": 16536, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3298": { + "bufferView": "bufferView_18315", + "byteOffset": 2312, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3300": { + "bufferView": "bufferView_18316", + "byteOffset": 16560, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3310": { + "bufferView": "bufferView_18315", + "byteOffset": 2316, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3312": { + "bufferView": "bufferView_18316", + "byteOffset": 16584, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3322": { + "bufferView": "bufferView_18315", + "byteOffset": 2320, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3324": { + "bufferView": "bufferView_18316", + "byteOffset": 16608, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3340": { + "bufferView": "bufferView_18315", + "byteOffset": 2324, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_3342": { + "bufferView": "bufferView_18316", + "byteOffset": 16632, + "byteStride": 12, + "count": 116, + "max": [ + 0.487802, + 1.46304, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3344": { + "bufferView": "bufferView_18316", + "byteOffset": 18024, + "byteStride": 12, + "count": 116, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_336": { + "bufferView": "bufferView_18315", + "byteOffset": 1152, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3360": { + "bufferView": "bufferView_18315", + "byteOffset": 2660, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3362": { + "bufferView": "bufferView_18316", + "byteOffset": 19416, + "byteStride": 12, + "count": 404, + "max": [ + 0.341498, + 0.341376, + 0.048768 + ], + "min": [ + 0.146426, + 0.146304, + 0 + ], + "type": 35665 + }, + "accessor_3364": { + "bufferView": "bufferView_18316", + "byteOffset": 24264, + "byteStride": 12, + "count": 404, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_338": { + "bufferView": "bufferView_18316", + "byteOffset": 8256, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3380": { + "bufferView": "bufferView_18315", + "byteOffset": 3812, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3382": { + "bufferView": "bufferView_18316", + "byteOffset": 29112, + "byteStride": 12, + "count": 384, + "max": [ + 0.341376, + 1.31674, + 0.048768 + ], + "min": [ + 0.146304, + 1.12166, + 0 + ], + "type": 35665 + }, + "accessor_3384": { + "bufferView": "bufferView_18316", + "byteOffset": 33720, + "byteStride": 12, + "count": 384, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_340": { + "bufferView": "bufferView_18316", + "byteOffset": 12384, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_3400": { + "bufferView": "bufferView_18315", + "byteOffset": 4964, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3402": { + "bufferView": "bufferView_18316", + "byteOffset": 38328, + "byteStride": 12, + "count": 372, + "max": [ + 0.341467, + 0.585216, + 0.048768 + ], + "min": [ + 0.146395, + 0.390144, + 0 + ], + "type": 35665 + }, + "accessor_3404": { + "bufferView": "bufferView_18316", + "byteOffset": 42792, + "byteStride": 12, + "count": 372, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_3420": { + "bufferView": "bufferView_18315", + "byteOffset": 6116, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3422": { + "bufferView": "bufferView_18316", + "byteOffset": 47256, + "byteStride": 12, + "count": 384, + "max": [ + 0.341437, + 0.829056, + 0.048768 + ], + "min": [ + 0.146365, + 0.633984, + 0 + ], + "type": 35665 + }, + "accessor_3424": { + "bufferView": "bufferView_18316", + "byteOffset": 51864, + "byteStride": 12, + "count": 384, + "max": [ + 0.980857, + 0.980857, + 1 + ], + "min": [ + -0.980857, + -0.980857, + -1 + ], + "type": 35665 + }, + "accessor_3440": { + "bufferView": "bufferView_18315", + "byteOffset": 7268, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3442": { + "bufferView": "bufferView_18316", + "byteOffset": 56472, + "byteStride": 12, + "count": 392, + "max": [ + 0.341406, + 1.0729, + 0.048768 + ], + "min": [ + 0.146334, + 0.877824, + 0 + ], + "type": 35665 + }, + "accessor_3444": { + "bufferView": "bufferView_18316", + "byteOffset": 61176, + "byteStride": 12, + "count": 392, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_3460": { + "bufferView": "bufferView_18315", + "byteOffset": 8420, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3462": { + "bufferView": "bufferView_18316", + "byteOffset": 65880, + "byteStride": 12, + "count": 205, + "max": [ + 0.439034, + 0.195042, + 0.146304 + ], + "min": [ + 0.29273, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_3464": { + "bufferView": "bufferView_18316", + "byteOffset": 68340, + "byteStride": 12, + "count": 205, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_3480": { + "bufferView": "bufferView_18315", + "byteOffset": 9000, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3482": { + "bufferView": "bufferView_18316", + "byteOffset": 70824, + "byteStride": 12, + "count": 206, + "max": [ + 0.438881, + 0.682721, + 0.146304 + ], + "min": [ + 0.292578, + 0.536417, + 0.097536 + ], + "type": 35665 + }, + "accessor_3484": { + "bufferView": "bufferView_18316", + "byteOffset": 73296, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_350": { + "bufferView": "bufferView_18315", + "byteOffset": 8996, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3500": { + "bufferView": "bufferView_18315", + "byteOffset": 9576, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3502": { + "bufferView": "bufferView_18316", + "byteOffset": 75768, + "byteStride": 12, + "count": 202, + "max": [ + 0.438607, + 1.41424, + 0.146304 + ], + "min": [ + 0.292303, + 1.26794, + 0.097536 + ], + "type": 35665 + }, + "accessor_3504": { + "bufferView": "bufferView_18316", + "byteOffset": 78192, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_352": { + "bufferView": "bufferView_18316", + "byteOffset": 70800, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3520": { + "bufferView": "bufferView_18315", + "byteOffset": 10152, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3522": { + "bufferView": "bufferView_18316", + "byteOffset": 80616, + "byteStride": 12, + "count": 198, + "max": [ + 0.43879, + 0.926562, + 0.146304 + ], + "min": [ + 0.292486, + 0.780258, + 0.097536 + ], + "type": 35665 + }, + "accessor_3524": { + "bufferView": "bufferView_18316", + "byteOffset": 82992, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_3540": { + "bufferView": "bufferView_18315", + "byteOffset": 10728, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3542": { + "bufferView": "bufferView_18316", + "byteOffset": 85368, + "byteStride": 12, + "count": 202, + "max": [ + 0.438699, + 1.1704, + 0.146304 + ], + "min": [ + 0.292395, + 1.0241, + 0.097536 + ], + "type": 35665 + }, + "accessor_3544": { + "bufferView": "bufferView_18316", + "byteOffset": 87792, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_3560": { + "bufferView": "bufferView_18315", + "byteOffset": 11304, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3562": { + "bufferView": "bufferView_18316", + "byteOffset": 90216, + "byteStride": 12, + "count": 198, + "max": [ + 0.438942, + 0.438881, + 0.146304 + ], + "min": [ + 0.292638, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_3564": { + "bufferView": "bufferView_18316", + "byteOffset": 92592, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_3580": { + "bufferView": "bufferView_18315", + "byteOffset": 13032, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3582": { + "bufferView": "bufferView_18316", + "byteOffset": 103200, + "byteStride": 12, + "count": 202, + "max": [ + 0.194859, + 1.1704, + 0.146304 + ], + "min": [ + 0.0485546, + 1.0241, + 0.097536 + ], + "type": 35665 + }, + "accessor_3584": { + "bufferView": "bufferView_18316", + "byteOffset": 105624, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_36": { + "bufferView": "bufferView_18315", + "byteOffset": 11880, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3600": { + "bufferView": "bufferView_18315", + "byteOffset": 13608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3602": { + "bufferView": "bufferView_18316", + "byteOffset": 108048, + "byteStride": 12, + "count": 198, + "max": [ + 0.19495, + 0.926562, + 0.146304 + ], + "min": [ + 0.0486461, + 0.780258, + 0.097536 + ], + "type": 35665 + }, + "accessor_3604": { + "bufferView": "bufferView_18316", + "byteOffset": 110424, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_362": { + "bufferView": "bufferView_18315", + "byteOffset": 15912, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3620": { + "bufferView": "bufferView_18315", + "byteOffset": 14184, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3622": { + "bufferView": "bufferView_18316", + "byteOffset": 112800, + "byteStride": 12, + "count": 201, + "max": [ + 0.194767, + 1.41424, + 0.146304 + ], + "min": [ + 0.0484632, + 1.26794, + 0.097536 + ], + "type": 35665 + }, + "accessor_3624": { + "bufferView": "bufferView_18316", + "byteOffset": 115212, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_364": { + "bufferView": "bufferView_18316", + "byteOffset": 127296, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3640": { + "bufferView": "bufferView_18315", + "byteOffset": 14760, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3642": { + "bufferView": "bufferView_18316", + "byteOffset": 117624, + "byteStride": 12, + "count": 197, + "max": [ + 0.195102, + 0.438881, + 0.146304 + ], + "min": [ + 0.0487985, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_3644": { + "bufferView": "bufferView_18316", + "byteOffset": 119988, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_3660": { + "bufferView": "bufferView_18315", + "byteOffset": 15336, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3662": { + "bufferView": "bufferView_18316", + "byteOffset": 122352, + "byteStride": 12, + "count": 206, + "max": [ + 0.195042, + 0.682721, + 0.146304 + ], + "min": [ + 0.0487375, + 0.536417, + 0.097536 + ], + "type": 35665 + }, + "accessor_3664": { + "bufferView": "bufferView_18316", + "byteOffset": 124824, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_3680": { + "bufferView": "bufferView_18315", + "byteOffset": 15916, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3682": { + "bufferView": "bufferView_18316", + "byteOffset": 127320, + "byteStride": 12, + "count": 206, + "max": [ + 0.195194, + 0.195042, + 0.146304 + ], + "min": [ + 0.0488899, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_3684": { + "bufferView": "bufferView_18316", + "byteOffset": 129792, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_3700": { + "bufferView": "bufferView_18315", + "byteOffset": 16492, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3702": { + "bufferView": "bufferView_18316", + "byteOffset": 132264, + "byteStride": 12, + "count": 364, + "max": [ + 0.195102, + 1.17043, + 0.146304 + ], + "min": [ + 0.0487985, + 1.02413, + 0.097536 + ], + "type": 35665 + }, + "accessor_3704": { + "bufferView": "bufferView_18316", + "byteOffset": 136632, + "byteStride": 12, + "count": 364, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_3720": { + "bufferView": "bufferView_18315", + "byteOffset": 17644, + "byteStride": 0, + "count": 1296, + "type": 5123 + }, + "accessor_3722": { + "bufferView": "bufferView_18316", + "byteOffset": 141000, + "byteStride": 12, + "count": 894, + "max": [ + 0.243931, + 1.46304, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3724": { + "bufferView": "bufferView_18316", + "byteOffset": 151728, + "byteStride": 12, + "count": 894, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_374": { + "bufferView": "bufferView_18315", + "byteOffset": 24916, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3740": { + "bufferView": "bufferView_18315", + "byteOffset": 20236, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_3742": { + "bufferView": "bufferView_18316", + "byteOffset": 162456, + "byteStride": 12, + "count": 888, + "max": [ + 0.243931, + 0.24384, + 0.024384 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3744": { + "bufferView": "bufferView_18316", + "byteOffset": 173112, + "byteStride": 12, + "count": 888, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_376": { + "bufferView": "bufferView_18316", + "byteOffset": 201240, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3760": { + "bufferView": "bufferView_18315", + "byteOffset": 22540, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_3762": { + "bufferView": "bufferView_18316", + "byteOffset": 183768, + "byteStride": 12, + "count": 370, + "max": [ + 0.195163, + 0.438912, + 0.146304 + ], + "min": [ + 0.0488594, + 0.292608, + 0.097536 + ], + "type": 35665 + }, + "accessor_3764": { + "bufferView": "bufferView_18316", + "byteOffset": 188208, + "byteStride": 12, + "count": 370, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_3780": { + "bufferView": "bufferView_18315", + "byteOffset": 23728, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_3782": { + "bufferView": "bufferView_18316", + "byteOffset": 192648, + "byteStride": 12, + "count": 358, + "max": [ + 0.195133, + 0.682752, + 0.146304 + ], + "min": [ + 0.048829, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_3784": { + "bufferView": "bufferView_18316", + "byteOffset": 196944, + "byteStride": 12, + "count": 358, + "max": [ + 0.980744, + 0.980744, + 1 + ], + "min": [ + -0.980744, + -0.980744, + -1 + ], + "type": 35665 + }, + "accessor_38": { + "bufferView": "bufferView_18316", + "byteOffset": 94968, + "byteStride": 12, + "count": 343, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_3800": { + "bufferView": "bufferView_18315", + "byteOffset": 24920, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_3802": { + "bufferView": "bufferView_18316", + "byteOffset": 201264, + "byteStride": 12, + "count": 867, + "max": [ + 0.24384, + 1.46304, + 0.024384 + ], + "min": [ + 0, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_3804": { + "bufferView": "bufferView_18316", + "byteOffset": 211668, + "byteStride": 12, + "count": 867, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_3820": { + "bufferView": "bufferView_18315", + "byteOffset": 27224, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3822": { + "bufferView": "bufferView_18316", + "byteOffset": 222072, + "byteStride": 12, + "count": 360, + "max": [ + 0.195102, + 0.926592, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780288, + 0.097536 + ], + "type": 35665 + }, + "accessor_3824": { + "bufferView": "bufferView_18316", + "byteOffset": 226392, + "byteStride": 12, + "count": 360, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_3840": { + "bufferView": "bufferView_18315", + "byteOffset": 28376, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3842": { + "bufferView": "bufferView_18316", + "byteOffset": 230712, + "byteStride": 12, + "count": 209, + "max": [ + 0.170749, + 0.536448, + 0.048768 + ], + "min": [ + 0.073213, + 0.438912, + 0 + ], + "type": 35665 + }, + "accessor_3844": { + "bufferView": "bufferView_18316", + "byteOffset": 233220, + "byteStride": 12, + "count": 209, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_386": { + "bufferView": "bufferView_18315", + "byteOffset": 30120, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3860": { + "bufferView": "bufferView_18315", + "byteOffset": 28952, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3862": { + "bufferView": "bufferView_18316", + "byteOffset": 235728, + "byteStride": 12, + "count": 218, + "max": [ + 0.170749, + 0.780288, + 0.048768 + ], + "min": [ + 0.073213, + 0.682752, + 0 + ], + "type": 35665 + }, + "accessor_3864": { + "bufferView": "bufferView_18316", + "byteOffset": 238344, + "byteStride": 12, + "count": 218, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_388": { + "bufferView": "bufferView_18316", + "byteOffset": 246444, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_3880": { + "bufferView": "bufferView_18315", + "byteOffset": 29528, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_3882": { + "bufferView": "bufferView_18316", + "byteOffset": 240960, + "byteStride": 12, + "count": 225, + "max": [ + 0.170718, + 1.02413, + 0.048768 + ], + "min": [ + 0.0731825, + 0.926592, + 0 + ], + "type": 35665 + }, + "accessor_3884": { + "bufferView": "bufferView_18316", + "byteOffset": 243660, + "byteStride": 12, + "count": 225, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_3894": { + "bufferView": "bufferView_18315", + "byteOffset": 30104, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_3896": { + "bufferView": "bufferView_18316", + "byteOffset": 246360, + "byteStride": 12, + "count": 3, + "max": [ + 0.00012192, + 0.731489, + 0.097536 + ], + "min": [ + 3.048e-05, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_3906": { + "bufferView": "bufferView_18315", + "byteOffset": 30112, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3908": { + "bufferView": "bufferView_18316", + "byteOffset": 246396, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.536448, + 0.146304 + ], + "min": [ + 0.12195, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_3918": { + "bufferView": "bufferView_18315", + "byteOffset": 30116, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3920": { + "bufferView": "bufferView_18316", + "byteOffset": 246420, + "byteStride": 12, + "count": 2, + "max": [ + 0.24387, + 0.731489, + 0.097536 + ], + "min": [ + 0.24381, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_3930": { + "bufferView": "bufferView_18315", + "byteOffset": 30124, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3932": { + "bufferView": "bufferView_18316", + "byteOffset": 246468, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.438912, + 0.146304 + ], + "min": [ + 0.12195, + 0.438912, + 0.097536 + ], + "type": 35665 + }, + "accessor_3948": { + "bufferView": "bufferView_18315", + "byteOffset": 30128, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_3950": { + "bufferView": "bufferView_18316", + "byteOffset": 246492, + "byteStride": 12, + "count": 364, + "max": [ + 0.195102, + 1.17043, + 0.146304 + ], + "min": [ + 0.0487985, + 1.02413, + 0.097536 + ], + "type": 35665 + }, + "accessor_3952": { + "bufferView": "bufferView_18316", + "byteOffset": 250860, + "byteStride": 12, + "count": 364, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_3968": { + "bufferView": "bufferView_18315", + "byteOffset": 31280, + "byteStride": 0, + "count": 1296, + "type": 5123 + }, + "accessor_3970": { + "bufferView": "bufferView_18316", + "byteOffset": 255228, + "byteStride": 12, + "count": 894, + "max": [ + 0.243931, + 1.46304, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3972": { + "bufferView": "bufferView_18316", + "byteOffset": 265956, + "byteStride": 12, + "count": 894, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_398": { + "bufferView": "bufferView_18315", + "byteOffset": 40856, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_3988": { + "bufferView": "bufferView_18315", + "byteOffset": 33872, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_3990": { + "bufferView": "bufferView_18316", + "byteOffset": 276684, + "byteStride": 12, + "count": 888, + "max": [ + 0.243931, + 0.24384, + 0.024384 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_3992": { + "bufferView": "bufferView_18316", + "byteOffset": 287340, + "byteStride": 12, + "count": 888, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_40": { + "bufferView": "bufferView_18316", + "byteOffset": 99084, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_400": { + "bufferView": "bufferView_18316", + "byteOffset": 336276, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_4008": { + "bufferView": "bufferView_18315", + "byteOffset": 36176, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_4010": { + "bufferView": "bufferView_18316", + "byteOffset": 297996, + "byteStride": 12, + "count": 370, + "max": [ + 0.195163, + 0.438912, + 0.146304 + ], + "min": [ + 0.0488594, + 0.292608, + 0.097536 + ], + "type": 35665 + }, + "accessor_4012": { + "bufferView": "bufferView_18316", + "byteOffset": 302436, + "byteStride": 12, + "count": 370, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_4028": { + "bufferView": "bufferView_18315", + "byteOffset": 37364, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_4030": { + "bufferView": "bufferView_18316", + "byteOffset": 306876, + "byteStride": 12, + "count": 358, + "max": [ + 0.195133, + 0.682752, + 0.146304 + ], + "min": [ + 0.048829, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_4032": { + "bufferView": "bufferView_18316", + "byteOffset": 311172, + "byteStride": 12, + "count": 358, + "max": [ + 0.980744, + 0.980744, + 1 + ], + "min": [ + -0.980744, + -0.980744, + -1 + ], + "type": 35665 + }, + "accessor_4048": { + "bufferView": "bufferView_18315", + "byteOffset": 38552, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_4050": { + "bufferView": "bufferView_18316", + "byteOffset": 315468, + "byteStride": 12, + "count": 867, + "max": [ + 0.24384, + 1.46304, + 0.024384 + ], + "min": [ + 0, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_4052": { + "bufferView": "bufferView_18316", + "byteOffset": 325872, + "byteStride": 12, + "count": 867, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4068": { + "bufferView": "bufferView_18315", + "byteOffset": 40860, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4070": { + "bufferView": "bufferView_18316", + "byteOffset": 336300, + "byteStride": 12, + "count": 360, + "max": [ + 0.195102, + 0.926592, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780288, + 0.097536 + ], + "type": 35665 + }, + "accessor_4072": { + "bufferView": "bufferView_18316", + "byteOffset": 340620, + "byteStride": 12, + "count": 360, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_4088": { + "bufferView": "bufferView_18315", + "byteOffset": 42012, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4090": { + "bufferView": "bufferView_18316", + "byteOffset": 344940, + "byteStride": 12, + "count": 209, + "max": [ + 0.170749, + 0.536448, + 0.048768 + ], + "min": [ + 0.073213, + 0.438912, + 0 + ], + "type": 35665 + }, + "accessor_4092": { + "bufferView": "bufferView_18316", + "byteOffset": 347448, + "byteStride": 12, + "count": 209, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_4108": { + "bufferView": "bufferView_18315", + "byteOffset": 42588, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4110": { + "bufferView": "bufferView_18316", + "byteOffset": 349956, + "byteStride": 12, + "count": 218, + "max": [ + 0.170749, + 0.780288, + 0.048768 + ], + "min": [ + 0.073213, + 0.682752, + 0 + ], + "type": 35665 + }, + "accessor_4112": { + "bufferView": "bufferView_18316", + "byteOffset": 352572, + "byteStride": 12, + "count": 218, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_4128": { + "bufferView": "bufferView_18315", + "byteOffset": 43164, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4130": { + "bufferView": "bufferView_18316", + "byteOffset": 355188, + "byteStride": 12, + "count": 225, + "max": [ + 0.170718, + 1.02413, + 0.048768 + ], + "min": [ + 0.0731825, + 0.926592, + 0 + ], + "type": 35665 + }, + "accessor_4132": { + "bufferView": "bufferView_18316", + "byteOffset": 357888, + "byteStride": 12, + "count": 225, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4142": { + "bufferView": "bufferView_18315", + "byteOffset": 43740, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_4144": { + "bufferView": "bufferView_18316", + "byteOffset": 360588, + "byteStride": 12, + "count": 3, + "max": [ + 0.00012192, + 0.731489, + 0.097536 + ], + "min": [ + 3.048e-05, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_4154": { + "bufferView": "bufferView_18315", + "byteOffset": 43748, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4156": { + "bufferView": "bufferView_18316", + "byteOffset": 360624, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.536448, + 0.146304 + ], + "min": [ + 0.12195, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_416": { + "bufferView": "bufferView_18315", + "byteOffset": 44336, + "byteStride": 0, + "count": 3756, + "type": 5123 + }, + "accessor_4166": { + "bufferView": "bufferView_18315", + "byteOffset": 43752, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4168": { + "bufferView": "bufferView_18316", + "byteOffset": 360648, + "byteStride": 12, + "count": 2, + "max": [ + 0.24387, + 0.731489, + 0.097536 + ], + "min": [ + 0.24381, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_4178": { + "bufferView": "bufferView_18315", + "byteOffset": 43756, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_418": { + "bufferView": "bufferView_18316", + "byteOffset": 365640, + "byteStride": 12, + "count": 1806, + "max": [ + 0.24384, + 0.73152, + 0.414528 + ], + "min": [ + 0, + 0, + 0.12192 + ], + "type": 35665 + }, + "accessor_4180": { + "bufferView": "bufferView_18316", + "byteOffset": 360672, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.438912, + 0.146304 + ], + "min": [ + 0.12195, + 0.438912, + 0.097536 + ], + "type": 35665 + }, + "accessor_4196": { + "bufferView": "bufferView_18315", + "byteOffset": 43760, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4198": { + "bufferView": "bufferView_18316", + "byteOffset": 360696, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_420": { + "bufferView": "bufferView_18316", + "byteOffset": 387312, + "byteStride": 12, + "count": 1806, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4200": { + "bufferView": "bufferView_18316", + "byteOffset": 363168, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4216": { + "bufferView": "bufferView_18315", + "byteOffset": 51848, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4218": { + "bufferView": "bufferView_18316", + "byteOffset": 408984, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_4220": { + "bufferView": "bufferView_18316", + "byteOffset": 413736, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_4236": { + "bufferView": "bufferView_18315", + "byteOffset": 53000, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4238": { + "bufferView": "bufferView_18316", + "byteOffset": 418488, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_4240": { + "bufferView": "bufferView_18316", + "byteOffset": 420912, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4256": { + "bufferView": "bufferView_18315", + "byteOffset": 53576, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4258": { + "bufferView": "bufferView_18316", + "byteOffset": 423336, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4260": { + "bufferView": "bufferView_18316", + "byteOffset": 425808, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4276": { + "bufferView": "bufferView_18315", + "byteOffset": 54152, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4278": { + "bufferView": "bufferView_18316", + "byteOffset": 428280, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4280": { + "bufferView": "bufferView_18316", + "byteOffset": 430704, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4296": { + "bufferView": "bufferView_18315", + "byteOffset": 54728, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_4298": { + "bufferView": "bufferView_18316", + "byteOffset": 433128, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_4300": { + "bufferView": "bufferView_18316", + "byteOffset": 434280, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4310": { + "bufferView": "bufferView_18315", + "byteOffset": 55064, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4312": { + "bufferView": "bufferView_18316", + "byteOffset": 435432, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_4322": { + "bufferView": "bufferView_18315", + "byteOffset": 55068, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4324": { + "bufferView": "bufferView_18316", + "byteOffset": 435456, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_4334": { + "bufferView": "bufferView_18315", + "byteOffset": 55072, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4336": { + "bufferView": "bufferView_18316", + "byteOffset": 435480, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_4346": { + "bufferView": "bufferView_18315", + "byteOffset": 55076, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4348": { + "bufferView": "bufferView_18316", + "byteOffset": 435504, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_4358": { + "bufferView": "bufferView_18315", + "byteOffset": 55080, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_436": { + "bufferView": "bufferView_18315", + "byteOffset": 56812, + "byteStride": 0, + "count": 1056, + "type": 5123 + }, + "accessor_4360": { + "bufferView": "bufferView_18316", + "byteOffset": 435528, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_4376": { + "bufferView": "bufferView_18315", + "byteOffset": 55084, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4378": { + "bufferView": "bufferView_18316", + "byteOffset": 435552, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_438": { + "bufferView": "bufferView_18316", + "byteOffset": 450000, + "byteStride": 12, + "count": 644, + "max": [ + 0.195072, + 0.195072, + 0.12192 + ], + "min": [ + 0.048768, + 0.048768, + 0 + ], + "type": 35665 + }, + "accessor_4380": { + "bufferView": "bufferView_18316", + "byteOffset": 438024, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4396": { + "bufferView": "bufferView_18315", + "byteOffset": 55660, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4398": { + "bufferView": "bufferView_18316", + "byteOffset": 440496, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_440": { + "bufferView": "bufferView_18316", + "byteOffset": 457728, + "byteStride": 12, + "count": 644, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4400": { + "bufferView": "bufferView_18316", + "byteOffset": 445248, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_4416": { + "bufferView": "bufferView_18315", + "byteOffset": 58924, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4418": { + "bufferView": "bufferView_18316", + "byteOffset": 465456, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_4420": { + "bufferView": "bufferView_18316", + "byteOffset": 467880, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4436": { + "bufferView": "bufferView_18315", + "byteOffset": 59500, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4438": { + "bufferView": "bufferView_18316", + "byteOffset": 470304, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4440": { + "bufferView": "bufferView_18316", + "byteOffset": 472776, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4456": { + "bufferView": "bufferView_18315", + "byteOffset": 60076, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4458": { + "bufferView": "bufferView_18316", + "byteOffset": 475248, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4460": { + "bufferView": "bufferView_18316", + "byteOffset": 477672, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_4476": { + "bufferView": "bufferView_18315", + "byteOffset": 60652, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_4478": { + "bufferView": "bufferView_18316", + "byteOffset": 480096, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_4480": { + "bufferView": "bufferView_18316", + "byteOffset": 481248, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4490": { + "bufferView": "bufferView_18315", + "byteOffset": 60988, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4492": { + "bufferView": "bufferView_18316", + "byteOffset": 482400, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_4502": { + "bufferView": "bufferView_18315", + "byteOffset": 60992, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4504": { + "bufferView": "bufferView_18316", + "byteOffset": 482424, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_4514": { + "bufferView": "bufferView_18315", + "byteOffset": 60996, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4516": { + "bufferView": "bufferView_18316", + "byteOffset": 482448, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_4526": { + "bufferView": "bufferView_18315", + "byteOffset": 61000, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4528": { + "bufferView": "bufferView_18316", + "byteOffset": 482472, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_4538": { + "bufferView": "bufferView_18315", + "byteOffset": 61004, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_4540": { + "bufferView": "bufferView_18316", + "byteOffset": 482496, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_4556": { + "bufferView": "bufferView_18315", + "byteOffset": 61008, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_4558": { + "bufferView": "bufferView_18316", + "byteOffset": 482520, + "byteStride": 12, + "count": 116, + "max": [ + 0.487802, + 1.46304, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_456": { + "bufferView": "bufferView_18315", + "byteOffset": 62496, + "byteStride": 0, + "count": 1056, + "type": 5123 + }, + "accessor_4560": { + "bufferView": "bufferView_18316", + "byteOffset": 483912, + "byteStride": 12, + "count": 116, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4576": { + "bufferView": "bufferView_18315", + "byteOffset": 61344, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4578": { + "bufferView": "bufferView_18316", + "byteOffset": 485304, + "byteStride": 12, + "count": 404, + "max": [ + 0.341498, + 0.341376, + 0.048768 + ], + "min": [ + 0.146426, + 0.146304, + 0 + ], + "type": 35665 + }, + "accessor_458": { + "bufferView": "bufferView_18316", + "byteOffset": 495000, + "byteStride": 12, + "count": 584, + "max": [ + 0.195072, + 0.195072, + 0.536448 + ], + "min": [ + 0.048768, + 0.048768, + 0.414528 + ], + "type": 35665 + }, + "accessor_4580": { + "bufferView": "bufferView_18316", + "byteOffset": 490152, + "byteStride": 12, + "count": 404, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_4596": { + "bufferView": "bufferView_18315", + "byteOffset": 64608, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4598": { + "bufferView": "bufferView_18316", + "byteOffset": 509016, + "byteStride": 12, + "count": 384, + "max": [ + 0.341376, + 1.31674, + 0.048768 + ], + "min": [ + 0.146304, + 1.12166, + 0 + ], + "type": 35665 + }, + "accessor_460": { + "bufferView": "bufferView_18316", + "byteOffset": 502008, + "byteStride": 12, + "count": 584, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4600": { + "bufferView": "bufferView_18316", + "byteOffset": 513624, + "byteStride": 12, + "count": 384, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_4616": { + "bufferView": "bufferView_18315", + "byteOffset": 65760, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4618": { + "bufferView": "bufferView_18316", + "byteOffset": 518232, + "byteStride": 12, + "count": 372, + "max": [ + 0.341467, + 0.585216, + 0.048768 + ], + "min": [ + 0.146395, + 0.390144, + 0 + ], + "type": 35665 + }, + "accessor_4620": { + "bufferView": "bufferView_18316", + "byteOffset": 522696, + "byteStride": 12, + "count": 372, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_4636": { + "bufferView": "bufferView_18315", + "byteOffset": 66912, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4638": { + "bufferView": "bufferView_18316", + "byteOffset": 527160, + "byteStride": 12, + "count": 384, + "max": [ + 0.341437, + 0.829056, + 0.048768 + ], + "min": [ + 0.146365, + 0.633984, + 0 + ], + "type": 35665 + }, + "accessor_4640": { + "bufferView": "bufferView_18316", + "byteOffset": 531768, + "byteStride": 12, + "count": 384, + "max": [ + 0.980857, + 0.980857, + 1 + ], + "min": [ + -0.980857, + -0.980857, + -1 + ], + "type": 35665 + }, + "accessor_4656": { + "bufferView": "bufferView_18315", + "byteOffset": 68064, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_4658": { + "bufferView": "bufferView_18316", + "byteOffset": 536376, + "byteStride": 12, + "count": 392, + "max": [ + 0.341406, + 1.0729, + 0.048768 + ], + "min": [ + 0.146334, + 0.877824, + 0 + ], + "type": 35665 + }, + "accessor_4660": { + "bufferView": "bufferView_18316", + "byteOffset": 541080, + "byteStride": 12, + "count": 392, + "max": [ + 0.980908, + 0.980887, + 1 + ], + "min": [ + -0.980908, + -0.980887, + -1 + ], + "type": 35665 + }, + "accessor_4676": { + "bufferView": "bufferView_18315", + "byteOffset": 69216, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4678": { + "bufferView": "bufferView_18316", + "byteOffset": 545784, + "byteStride": 12, + "count": 205, + "max": [ + 0.439034, + 0.195042, + 0.146304 + ], + "min": [ + 0.29273, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4680": { + "bufferView": "bufferView_18316", + "byteOffset": 548244, + "byteStride": 12, + "count": 205, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4696": { + "bufferView": "bufferView_18315", + "byteOffset": 69792, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4698": { + "bufferView": "bufferView_18316", + "byteOffset": 550704, + "byteStride": 12, + "count": 206, + "max": [ + 0.438881, + 0.682721, + 0.146304 + ], + "min": [ + 0.292578, + 0.536417, + 0.097536 + ], + "type": 35665 + }, + "accessor_4700": { + "bufferView": "bufferView_18316", + "byteOffset": 553176, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_4716": { + "bufferView": "bufferView_18315", + "byteOffset": 70368, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4718": { + "bufferView": "bufferView_18316", + "byteOffset": 555648, + "byteStride": 12, + "count": 202, + "max": [ + 0.438607, + 1.41424, + 0.146304 + ], + "min": [ + 0.292303, + 1.26794, + 0.097536 + ], + "type": 35665 + }, + "accessor_4720": { + "bufferView": "bufferView_18316", + "byteOffset": 558072, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4736": { + "bufferView": "bufferView_18315", + "byteOffset": 70944, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4738": { + "bufferView": "bufferView_18316", + "byteOffset": 560496, + "byteStride": 12, + "count": 198, + "max": [ + 0.43879, + 0.926562, + 0.146304 + ], + "min": [ + 0.292486, + 0.780258, + 0.097536 + ], + "type": 35665 + }, + "accessor_4740": { + "bufferView": "bufferView_18316", + "byteOffset": 562872, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4756": { + "bufferView": "bufferView_18315", + "byteOffset": 71520, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4758": { + "bufferView": "bufferView_18316", + "byteOffset": 565248, + "byteStride": 12, + "count": 202, + "max": [ + 0.438699, + 1.1704, + 0.146304 + ], + "min": [ + 0.292395, + 1.0241, + 0.097536 + ], + "type": 35665 + }, + "accessor_476": { + "bufferView": "bufferView_18315", + "byteOffset": 73824, + "byteStride": 0, + "count": 15336, + "type": 5123 + }, + "accessor_4760": { + "bufferView": "bufferView_18316", + "byteOffset": 567672, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4776": { + "bufferView": "bufferView_18315", + "byteOffset": 72096, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4778": { + "bufferView": "bufferView_18316", + "byteOffset": 570096, + "byteStride": 12, + "count": 198, + "max": [ + 0.438942, + 0.438881, + 0.146304 + ], + "min": [ + 0.292638, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_478": { + "bufferView": "bufferView_18316", + "byteOffset": 584448, + "byteStride": 12, + "count": 12441, + "max": [ + 2.92608, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_4780": { + "bufferView": "bufferView_18316", + "byteOffset": 572472, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_4796": { + "bufferView": "bufferView_18315", + "byteOffset": 72672, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4798": { + "bufferView": "bufferView_18316", + "byteOffset": 574848, + "byteStride": 12, + "count": 202, + "max": [ + 0.194859, + 1.1704, + 0.146304 + ], + "min": [ + 0.0485546, + 1.0241, + 0.097536 + ], + "type": 35665 + }, + "accessor_480": { + "bufferView": "bufferView_18316", + "byteOffset": 733740, + "byteStride": 12, + "count": 12441, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4800": { + "bufferView": "bufferView_18316", + "byteOffset": 577272, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4816": { + "bufferView": "bufferView_18315", + "byteOffset": 73248, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4818": { + "bufferView": "bufferView_18316", + "byteOffset": 579696, + "byteStride": 12, + "count": 198, + "max": [ + 0.19495, + 0.926562, + 0.146304 + ], + "min": [ + 0.0486461, + 0.780258, + 0.097536 + ], + "type": 35665 + }, + "accessor_4820": { + "bufferView": "bufferView_18316", + "byteOffset": 582072, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4836": { + "bufferView": "bufferView_18315", + "byteOffset": 104496, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4838": { + "bufferView": "bufferView_18316", + "byteOffset": 883032, + "byteStride": 12, + "count": 201, + "max": [ + 0.194767, + 1.41424, + 0.146304 + ], + "min": [ + 0.0484632, + 1.26794, + 0.097536 + ], + "type": 35665 + }, + "accessor_4840": { + "bufferView": "bufferView_18316", + "byteOffset": 885444, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4856": { + "bufferView": "bufferView_18315", + "byteOffset": 105072, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4858": { + "bufferView": "bufferView_18316", + "byteOffset": 887856, + "byteStride": 12, + "count": 197, + "max": [ + 0.195102, + 0.438881, + 0.146304 + ], + "min": [ + 0.0487985, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_4860": { + "bufferView": "bufferView_18316", + "byteOffset": 890220, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_4876": { + "bufferView": "bufferView_18315", + "byteOffset": 105648, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4878": { + "bufferView": "bufferView_18316", + "byteOffset": 892584, + "byteStride": 12, + "count": 206, + "max": [ + 0.195042, + 0.682721, + 0.146304 + ], + "min": [ + 0.0487375, + 0.536417, + 0.097536 + ], + "type": 35665 + }, + "accessor_4880": { + "bufferView": "bufferView_18316", + "byteOffset": 895056, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_4896": { + "bufferView": "bufferView_18315", + "byteOffset": 106224, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4898": { + "bufferView": "bufferView_18316", + "byteOffset": 897528, + "byteStride": 12, + "count": 206, + "max": [ + 0.195194, + 0.195042, + 0.146304 + ], + "min": [ + 0.0488899, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_4900": { + "bufferView": "bufferView_18316", + "byteOffset": 900000, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4916": { + "bufferView": "bufferView_18315", + "byteOffset": 106800, + "byteStride": 0, + "count": 180, + "type": 5123 + }, + "accessor_4918": { + "bufferView": "bufferView_18316", + "byteOffset": 902472, + "byteStride": 12, + "count": 118, + "max": [ + 0.244358, + 1.46353, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.0004572, + 0 + ], + "type": 35665 + }, + "accessor_4920": { + "bufferView": "bufferView_18316", + "byteOffset": 903888, + "byteStride": 12, + "count": 118, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_4936": { + "bufferView": "bufferView_18315", + "byteOffset": 107160, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4938": { + "bufferView": "bufferView_18316", + "byteOffset": 905304, + "byteStride": 12, + "count": 201, + "max": [ + 0.195133, + 1.41473, + 0.146304 + ], + "min": [ + 0.048829, + 1.26843, + 0.097536 + ], + "type": 35665 + }, + "accessor_4940": { + "bufferView": "bufferView_18316", + "byteOffset": 907716, + "byteStride": 12, + "count": 201, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4956": { + "bufferView": "bufferView_18315", + "byteOffset": 107736, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4958": { + "bufferView": "bufferView_18316", + "byteOffset": 910128, + "byteStride": 12, + "count": 197, + "max": [ + 0.195468, + 0.439369, + 0.146304 + ], + "min": [ + 0.0491642, + 0.293065, + 0.097536 + ], + "type": 35665 + }, + "accessor_496": { + "bufferView": "bufferView_18315", + "byteOffset": 111768, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4960": { + "bufferView": "bufferView_18316", + "byteOffset": 912492, + "byteStride": 12, + "count": 197, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_4976": { + "bufferView": "bufferView_18315", + "byteOffset": 108312, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4978": { + "bufferView": "bufferView_18316", + "byteOffset": 914856, + "byteStride": 12, + "count": 202, + "max": [ + 0.195224, + 1.17089, + 0.146304 + ], + "min": [ + 0.0489204, + 1.02459, + 0.097536 + ], + "type": 35665 + }, + "accessor_498": { + "bufferView": "bufferView_18316", + "byteOffset": 944880, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_4980": { + "bufferView": "bufferView_18316", + "byteOffset": 917280, + "byteStride": 12, + "count": 202, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_4996": { + "bufferView": "bufferView_18315", + "byteOffset": 108888, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_4998": { + "bufferView": "bufferView_18316", + "byteOffset": 919704, + "byteStride": 12, + "count": 206, + "max": [ + 0.195407, + 0.683209, + 0.146304 + ], + "min": [ + 0.0491033, + 0.536905, + 0.097536 + ], + "type": 35665 + }, + "accessor_500": { + "bufferView": "bufferView_18316", + "byteOffset": 947664, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_5000": { + "bufferView": "bufferView_18316", + "byteOffset": 922176, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_5016": { + "bufferView": "bufferView_18315", + "byteOffset": 109464, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5018": { + "bufferView": "bufferView_18316", + "byteOffset": 924648, + "byteStride": 12, + "count": 198, + "max": [ + 0.195316, + 0.927049, + 0.146304 + ], + "min": [ + 0.0490118, + 0.780745, + 0.097536 + ], + "type": 35665 + }, + "accessor_5020": { + "bufferView": "bufferView_18316", + "byteOffset": 927024, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_5036": { + "bufferView": "bufferView_18315", + "byteOffset": 110040, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5038": { + "bufferView": "bufferView_18316", + "byteOffset": 929400, + "byteStride": 12, + "count": 206, + "max": [ + 0.19556, + 0.195529, + 0.146304 + ], + "min": [ + 0.0492557, + 0.0492252, + 0.097536 + ], + "type": 35665 + }, + "accessor_5040": { + "bufferView": "bufferView_18316", + "byteOffset": 931872, + "byteStride": 12, + "count": 206, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_5056": { + "bufferView": "bufferView_18315", + "byteOffset": 110616, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5058": { + "bufferView": "bufferView_18316", + "byteOffset": 934344, + "byteStride": 12, + "count": 225, + "max": [ + 0.170962, + 0.780745, + 0.048768 + ], + "min": [ + 0.0734263, + 0.683209, + 0 + ], + "type": 35665 + }, + "accessor_5060": { + "bufferView": "bufferView_18316", + "byteOffset": 937044, + "byteStride": 12, + "count": 225, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_5076": { + "bufferView": "bufferView_18315", + "byteOffset": 111192, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5078": { + "bufferView": "bufferView_18316", + "byteOffset": 939744, + "byteStride": 12, + "count": 214, + "max": [ + 0.170871, + 1.02459, + 0.048768 + ], + "min": [ + 0.0733349, + 0.927049, + 0 + ], + "type": 35665 + }, + "accessor_5080": { + "bufferView": "bufferView_18316", + "byteOffset": 942312, + "byteStride": 12, + "count": 214, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_5096": { + "bufferView": "bufferView_18315", + "byteOffset": 112344, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5098": { + "bufferView": "bufferView_18316", + "byteOffset": 950448, + "byteStride": 12, + "count": 218, + "max": [ + 0.170779, + 1.26843, + 0.048768 + ], + "min": [ + 0.0732434, + 1.17089, + 0 + ], + "type": 35665 + }, + "accessor_5100": { + "bufferView": "bufferView_18316", + "byteOffset": 953064, + "byteStride": 12, + "count": 218, + "max": [ + 0.98107, + 0.98101, + 1 + ], + "min": [ + -0.98107, + -0.98101, + -1 + ], + "type": 35665 + }, + "accessor_5116": { + "bufferView": "bufferView_18315", + "byteOffset": 112920, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5118": { + "bufferView": "bufferView_18316", + "byteOffset": 955680, + "byteStride": 12, + "count": 222, + "max": [ + 0.171054, + 0.536905, + 0.048768 + ], + "min": [ + 0.0735178, + 0.439369, + 0 + ], + "type": 35665 + }, + "accessor_5120": { + "bufferView": "bufferView_18316", + "byteOffset": 958344, + "byteStride": 12, + "count": 222, + "max": [ + 0.980765, + 0.98107, + 1 + ], + "min": [ + -0.980765, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_5136": { + "bufferView": "bufferView_18315", + "byteOffset": 113496, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5138": { + "bufferView": "bufferView_18316", + "byteOffset": 961008, + "byteStride": 12, + "count": 225, + "max": [ + 0.171145, + 0.293065, + 0.048768 + ], + "min": [ + 0.0736092, + 0.195529, + 0 + ], + "type": 35665 + }, + "accessor_5140": { + "bufferView": "bufferView_18316", + "byteOffset": 963708, + "byteStride": 12, + "count": 225, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_5150": { + "bufferView": "bufferView_18315", + "byteOffset": 114072, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5152": { + "bufferView": "bufferView_18316", + "byteOffset": 966408, + "byteStride": 12, + "count": 2, + "max": [ + 6.096e-05, + 1.46307, + 0 + ], + "min": [ + 0, + 1.21929, + 0 + ], + "type": 35665 + }, + "accessor_516": { + "bufferView": "bufferView_18315", + "byteOffset": 120004, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5162": { + "bufferView": "bufferView_18315", + "byteOffset": 114076, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5164": { + "bufferView": "bufferView_18316", + "byteOffset": 966432, + "byteStride": 12, + "count": 2, + "max": [ + 3.048e-05, + 0.243779, + 0 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5174": { + "bufferView": "bufferView_18315", + "byteOffset": 114080, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5176": { + "bufferView": "bufferView_18316", + "byteOffset": 966456, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 1.46298, + 0 + ], + "min": [ + 9.144e-05, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_518": { + "bufferView": "bufferView_18316", + "byteOffset": 1017288, + "byteStride": 12, + "count": 232, + "max": [ + 2.48717, + 0.170683, + 0.073218 + ], + "min": [ + 2.38961, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_5186": { + "bufferView": "bufferView_18315", + "byteOffset": 114084, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5188": { + "bufferView": "bufferView_18316", + "byteOffset": 966480, + "byteStride": 12, + "count": 2, + "max": [ + 9.144e-05, + 0.243779, + 0 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_520": { + "bufferView": "bufferView_18316", + "byteOffset": 1020072, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_5204": { + "bufferView": "bufferView_18315", + "byteOffset": 114088, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5206": { + "bufferView": "bufferView_18316", + "byteOffset": 966504, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_5208": { + "bufferView": "bufferView_18316", + "byteOffset": 970344, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_5224": { + "bufferView": "bufferView_18315", + "byteOffset": 115240, + "byteStride": 0, + "count": 1578, + "type": 5123 + }, + "accessor_5226": { + "bufferView": "bufferView_18316", + "byteOffset": 974184, + "byteStride": 12, + "count": 1268, + "max": [ + 0.48768, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_5228": { + "bufferView": "bufferView_18316", + "byteOffset": 989400, + "byteStride": 12, + "count": 1268, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5244": { + "bufferView": "bufferView_18315", + "byteOffset": 118396, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5246": { + "bufferView": "bufferView_18316", + "byteOffset": 1004616, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_5248": { + "bufferView": "bufferView_18316", + "byteOffset": 1008456, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_5264": { + "bufferView": "bufferView_18315", + "byteOffset": 119548, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_5266": { + "bufferView": "bufferView_18316", + "byteOffset": 1012296, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_5268": { + "bufferView": "bufferView_18316", + "byteOffset": 1014792, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_5284": { + "bufferView": "bufferView_18315", + "byteOffset": 120580, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5286": { + "bufferView": "bufferView_18316", + "byteOffset": 1022856, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_5288": { + "bufferView": "bufferView_18316", + "byteOffset": 1025640, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_5298": { + "bufferView": "bufferView_18315", + "byteOffset": 121156, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5300": { + "bufferView": "bufferView_18316", + "byteOffset": 1028424, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_5316": { + "bufferView": "bufferView_18315", + "byteOffset": 121160, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5318": { + "bufferView": "bufferView_18316", + "byteOffset": 1028448, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_5320": { + "bufferView": "bufferView_18316", + "byteOffset": 1032288, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_5336": { + "bufferView": "bufferView_18315", + "byteOffset": 122312, + "byteStride": 0, + "count": 1578, + "type": 5123 + }, + "accessor_5338": { + "bufferView": "bufferView_18316", + "byteOffset": 1036128, + "byteStride": 12, + "count": 1268, + "max": [ + 0.48768, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_5340": { + "bufferView": "bufferView_18316", + "byteOffset": 1051344, + "byteStride": 12, + "count": 1268, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5356": { + "bufferView": "bufferView_18315", + "byteOffset": 125468, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5358": { + "bufferView": "bufferView_18316", + "byteOffset": 1066560, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_536": { + "bufferView": "bufferView_18315", + "byteOffset": 128424, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5360": { + "bufferView": "bufferView_18316", + "byteOffset": 1070400, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_5376": { + "bufferView": "bufferView_18315", + "byteOffset": 126620, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_5378": { + "bufferView": "bufferView_18316", + "byteOffset": 1074240, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_538": { + "bufferView": "bufferView_18316", + "byteOffset": 1090392, + "byteStride": 12, + "count": 232, + "max": [ + 1.99949, + 0.170683, + 0.073218 + ], + "min": [ + 1.90193, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_5380": { + "bufferView": "bufferView_18316", + "byteOffset": 1076736, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_5396": { + "bufferView": "bufferView_18315", + "byteOffset": 127076, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5398": { + "bufferView": "bufferView_18316", + "byteOffset": 1079232, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_540": { + "bufferView": "bufferView_18316", + "byteOffset": 1093176, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_5400": { + "bufferView": "bufferView_18316", + "byteOffset": 1082016, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_5410": { + "bufferView": "bufferView_18315", + "byteOffset": 127652, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5412": { + "bufferView": "bufferView_18316", + "byteOffset": 1084800, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_5428": { + "bufferView": "bufferView_18315", + "byteOffset": 127656, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_5430": { + "bufferView": "bufferView_18316", + "byteOffset": 1084824, + "byteStride": 12, + "count": 232, + "max": [ + 0.146365, + 0.731489, + 0.146304 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5432": { + "bufferView": "bufferView_18316", + "byteOffset": 1087608, + "byteStride": 12, + "count": 232, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5448": { + "bufferView": "bufferView_18315", + "byteOffset": 129000, + "byteStride": 0, + "count": 2352, + "type": 5123 + }, + "accessor_5450": { + "bufferView": "bufferView_18316", + "byteOffset": 1095960, + "byteStride": 12, + "count": 2040, + "max": [ + 0.219456, + 0.243901, + 0.219486 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5452": { + "bufferView": "bufferView_18316", + "byteOffset": 1120440, + "byteStride": 12, + "count": 2040, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5468": { + "bufferView": "bufferView_18315", + "byteOffset": 133704, + "byteStride": 0, + "count": 3756, + "type": 5123 + }, + "accessor_5470": { + "bufferView": "bufferView_18316", + "byteOffset": 1144920, + "byteStride": 12, + "count": 1806, + "max": [ + 0.24384, + 0.73152, + 0.414528 + ], + "min": [ + 0, + 0, + 0.12192 + ], + "type": 35665 + }, + "accessor_5472": { + "bufferView": "bufferView_18316", + "byteOffset": 1166592, + "byteStride": 12, + "count": 1806, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5488": { + "bufferView": "bufferView_18315", + "byteOffset": 141792, + "byteStride": 0, + "count": 1056, + "type": 5123 + }, + "accessor_5490": { + "bufferView": "bufferView_18316", + "byteOffset": 1193832, + "byteStride": 12, + "count": 644, + "max": [ + 0.195072, + 0.195072, + 0.12192 + ], + "min": [ + 0.048768, + 0.048768, + 0 + ], + "type": 35665 + }, + "accessor_5492": { + "bufferView": "bufferView_18316", + "byteOffset": 1201560, + "byteStride": 12, + "count": 644, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5508": { + "bufferView": "bufferView_18315", + "byteOffset": 143904, + "byteStride": 0, + "count": 1056, + "type": 5123 + }, + "accessor_5510": { + "bufferView": "bufferView_18316", + "byteOffset": 1209288, + "byteStride": 12, + "count": 584, + "max": [ + 0.195072, + 0.195072, + 0.536448 + ], + "min": [ + 0.048768, + 0.048768, + 0.414528 + ], + "type": 35665 + }, + "accessor_5512": { + "bufferView": "bufferView_18316", + "byteOffset": 1216296, + "byteStride": 12, + "count": 584, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5528": { + "bufferView": "bufferView_18315", + "byteOffset": 146016, + "byteStride": 0, + "count": 2352, + "type": 5123 + }, + "accessor_5530": { + "bufferView": "bufferView_18316", + "byteOffset": 1223304, + "byteStride": 12, + "count": 2040, + "max": [ + 0.219456, + 0.243901, + 0.219486 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5532": { + "bufferView": "bufferView_18316", + "byteOffset": 1247784, + "byteStride": 12, + "count": 2040, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5548": { + "bufferView": "bufferView_18315", + "byteOffset": 150720, + "byteStride": 0, + "count": 384, + "type": 5123 + }, + "accessor_5550": { + "bufferView": "bufferView_18316", + "byteOffset": 1272264, + "byteStride": 12, + "count": 232, + "max": [ + 0.146365, + 0.731489, + 0.146304 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5552": { + "bufferView": "bufferView_18316", + "byteOffset": 1275048, + "byteStride": 12, + "count": 232, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_556": { + "bufferView": "bufferView_18315", + "byteOffset": 159552, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_5568": { + "bufferView": "bufferView_18315", + "byteOffset": 151488, + "byteStride": 0, + "count": 264, + "type": 5123 + }, + "accessor_5570": { + "bufferView": "bufferView_18316", + "byteOffset": 1277832, + "byteStride": 12, + "count": 144, + "max": [ + 0.487619, + 0.487619, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5572": { + "bufferView": "bufferView_18316", + "byteOffset": 1279560, + "byteStride": 12, + "count": 144, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_558": { + "bufferView": "bufferView_18316", + "byteOffset": 1341000, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_5588": { + "bufferView": "bufferView_18315", + "byteOffset": 152016, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5590": { + "bufferView": "bufferView_18316", + "byteOffset": 1281288, + "byteStride": 12, + "count": 431, + "max": [ + 0.341346, + 0.341346, + 0.048768 + ], + "min": [ + 0.146274, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_5592": { + "bufferView": "bufferView_18316", + "byteOffset": 1286460, + "byteStride": 12, + "count": 431, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_56": { + "bufferView": "bufferView_18315", + "byteOffset": 141216, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_560": { + "bufferView": "bufferView_18316", + "byteOffset": 1343496, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_5608": { + "bufferView": "bufferView_18315", + "byteOffset": 153168, + "byteStride": 0, + "count": 3192, + "type": 5123 + }, + "accessor_5610": { + "bufferView": "bufferView_18316", + "byteOffset": 1291632, + "byteStride": 12, + "count": 2057, + "max": [ + 0.195102, + 0.48768, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5612": { + "bufferView": "bufferView_18316", + "byteOffset": 1316316, + "byteStride": 12, + "count": 2057, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5628": { + "bufferView": "bufferView_18315", + "byteOffset": 160008, + "byteStride": 0, + "count": 3192, + "type": 5123 + }, + "accessor_5630": { + "bufferView": "bufferView_18316", + "byteOffset": 1345992, + "byteStride": 12, + "count": 2057, + "max": [ + 0.195102, + 0.48768, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5632": { + "bufferView": "bufferView_18316", + "byteOffset": 1370676, + "byteStride": 12, + "count": 2057, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5648": { + "bufferView": "bufferView_18315", + "byteOffset": 166392, + "byteStride": 0, + "count": 2880, + "type": 5123 + }, + "accessor_5650": { + "bufferView": "bufferView_18316", + "byteOffset": 1395360, + "byteStride": 12, + "count": 1584, + "max": [ + 0.48768, + 0.195072, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5652": { + "bufferView": "bufferView_18316", + "byteOffset": 1414368, + "byteStride": 12, + "count": 1584, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5668": { + "bufferView": "bufferView_18315", + "byteOffset": 172152, + "byteStride": 0, + "count": 2880, + "type": 5123 + }, + "accessor_5670": { + "bufferView": "bufferView_18316", + "byteOffset": 1433376, + "byteStride": 12, + "count": 1584, + "max": [ + 0.48768, + 0.195072, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5672": { + "bufferView": "bufferView_18316", + "byteOffset": 1452384, + "byteStride": 12, + "count": 1584, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5700": { + "bufferView": "bufferView_18315", + "byteOffset": 177912, + "byteStride": 0, + "count": 1587, + "type": 5123 + }, + "accessor_5703": { + "bufferView": "bufferView_18315", + "byteOffset": 181086, + "byteStride": 0, + "count": 1587, + "type": 5123 + }, + "accessor_5705": { + "bufferView": "bufferView_18316", + "byteOffset": 1471392, + "byteStride": 12, + "count": 2805, + "max": [ + 0.195072, + 0.195102, + 0.487771 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5707": { + "bufferView": "bufferView_18316", + "byteOffset": 1505052, + "byteStride": 12, + "count": 2805, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5735": { + "bufferView": "bufferView_18315", + "byteOffset": 184260, + "byteStride": 0, + "count": 1587, + "type": 5123 + }, + "accessor_5738": { + "bufferView": "bufferView_18315", + "byteOffset": 187434, + "byteStride": 0, + "count": 1587, + "type": 5123 + }, + "accessor_5740": { + "bufferView": "bufferView_18316", + "byteOffset": 1538712, + "byteStride": 12, + "count": 2805, + "max": [ + 0.195072, + 0.195102, + 0.487771 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5742": { + "bufferView": "bufferView_18316", + "byteOffset": 1572372, + "byteStride": 12, + "count": 2805, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5758": { + "bufferView": "bufferView_18315", + "byteOffset": 190608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_576": { + "bufferView": "bufferView_18315", + "byteOffset": 193488, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5760": { + "bufferView": "bufferView_18316", + "byteOffset": 1606032, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_5762": { + "bufferView": "bufferView_18316", + "byteOffset": 1608504, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5778": { + "bufferView": "bufferView_18315", + "byteOffset": 191184, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_578": { + "bufferView": "bufferView_18316", + "byteOffset": 1630272, + "byteStride": 12, + "count": 320, + "max": [ + 2.87731, + 0.195224, + 0.341492 + ], + "min": [ + 2.73101, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_5780": { + "bufferView": "bufferView_18316", + "byteOffset": 1610976, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_5782": { + "bufferView": "bufferView_18316", + "byteOffset": 1615728, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_5798": { + "bufferView": "bufferView_18315", + "byteOffset": 192336, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_58": { + "bufferView": "bufferView_18316", + "byteOffset": 1188264, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_580": { + "bufferView": "bufferView_18316", + "byteOffset": 1634112, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_5800": { + "bufferView": "bufferView_18316", + "byteOffset": 1620480, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_5802": { + "bufferView": "bufferView_18316", + "byteOffset": 1622904, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5818": { + "bufferView": "bufferView_18315", + "byteOffset": 192912, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5820": { + "bufferView": "bufferView_18316", + "byteOffset": 1625328, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_5822": { + "bufferView": "bufferView_18316", + "byteOffset": 1627800, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5838": { + "bufferView": "bufferView_18315", + "byteOffset": 194640, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5840": { + "bufferView": "bufferView_18316", + "byteOffset": 1637952, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_5842": { + "bufferView": "bufferView_18316", + "byteOffset": 1640376, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5858": { + "bufferView": "bufferView_18315", + "byteOffset": 195216, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_5860": { + "bufferView": "bufferView_18316", + "byteOffset": 1642800, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_5862": { + "bufferView": "bufferView_18316", + "byteOffset": 1643952, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_5872": { + "bufferView": "bufferView_18315", + "byteOffset": 195552, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5874": { + "bufferView": "bufferView_18316", + "byteOffset": 1645104, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_5884": { + "bufferView": "bufferView_18315", + "byteOffset": 195556, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5886": { + "bufferView": "bufferView_18316", + "byteOffset": 1645128, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_5896": { + "bufferView": "bufferView_18315", + "byteOffset": 195560, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5898": { + "bufferView": "bufferView_18316", + "byteOffset": 1645152, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_5908": { + "bufferView": "bufferView_18315", + "byteOffset": 195564, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5910": { + "bufferView": "bufferView_18316", + "byteOffset": 1645176, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_5920": { + "bufferView": "bufferView_18315", + "byteOffset": 195568, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_5922": { + "bufferView": "bufferView_18316", + "byteOffset": 1645200, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_5938": { + "bufferView": "bufferView_18315", + "byteOffset": 195572, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_5940": { + "bufferView": "bufferView_18316", + "byteOffset": 1645224, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_5942": { + "bufferView": "bufferView_18316", + "byteOffset": 1647696, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5958": { + "bufferView": "bufferView_18315", + "byteOffset": 196148, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_596": { + "bufferView": "bufferView_18315", + "byteOffset": 198452, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_5960": { + "bufferView": "bufferView_18316", + "byteOffset": 1650168, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_5962": { + "bufferView": "bufferView_18316", + "byteOffset": 1654920, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_5978": { + "bufferView": "bufferView_18315", + "byteOffset": 197300, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_598": { + "bufferView": "bufferView_18316", + "byteOffset": 1669464, + "byteStride": 12, + "count": 320, + "max": [ + 2.38963, + 0.195224, + 0.341492 + ], + "min": [ + 2.24333, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_5980": { + "bufferView": "bufferView_18316", + "byteOffset": 1659672, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_5982": { + "bufferView": "bufferView_18316", + "byteOffset": 1662096, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_5998": { + "bufferView": "bufferView_18315", + "byteOffset": 197876, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_60": { + "bufferView": "bufferView_18316", + "byteOffset": 1191048, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_600": { + "bufferView": "bufferView_18316", + "byteOffset": 1673304, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_6000": { + "bufferView": "bufferView_18316", + "byteOffset": 1664520, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6002": { + "bufferView": "bufferView_18316", + "byteOffset": 1666992, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6018": { + "bufferView": "bufferView_18315", + "byteOffset": 199604, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6020": { + "bufferView": "bufferView_18316", + "byteOffset": 1677144, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6022": { + "bufferView": "bufferView_18316", + "byteOffset": 1679568, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6038": { + "bufferView": "bufferView_18315", + "byteOffset": 200180, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_6040": { + "bufferView": "bufferView_18316", + "byteOffset": 1681992, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6042": { + "bufferView": "bufferView_18316", + "byteOffset": 1683144, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6052": { + "bufferView": "bufferView_18315", + "byteOffset": 200516, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6054": { + "bufferView": "bufferView_18316", + "byteOffset": 1684296, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_6064": { + "bufferView": "bufferView_18315", + "byteOffset": 200520, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6066": { + "bufferView": "bufferView_18316", + "byteOffset": 1684320, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_6076": { + "bufferView": "bufferView_18315", + "byteOffset": 200524, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6078": { + "bufferView": "bufferView_18316", + "byteOffset": 1684344, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_6088": { + "bufferView": "bufferView_18315", + "byteOffset": 200528, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6090": { + "bufferView": "bufferView_18316", + "byteOffset": 1684368, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_6100": { + "bufferView": "bufferView_18315", + "byteOffset": 200532, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6102": { + "bufferView": "bufferView_18316", + "byteOffset": 1684392, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_6118": { + "bufferView": "bufferView_18315", + "byteOffset": 200536, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6120": { + "bufferView": "bufferView_18316", + "byteOffset": 1684416, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6122": { + "bufferView": "bufferView_18316", + "byteOffset": 1686888, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6138": { + "bufferView": "bufferView_18315", + "byteOffset": 201112, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6140": { + "bufferView": "bufferView_18316", + "byteOffset": 1689360, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_6142": { + "bufferView": "bufferView_18316", + "byteOffset": 1694112, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_6158": { + "bufferView": "bufferView_18315", + "byteOffset": 202264, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_616": { + "bufferView": "bufferView_18315", + "byteOffset": 203992, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6160": { + "bufferView": "bufferView_18316", + "byteOffset": 1698864, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6162": { + "bufferView": "bufferView_18316", + "byteOffset": 1701288, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6178": { + "bufferView": "bufferView_18315", + "byteOffset": 202840, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_618": { + "bufferView": "bufferView_18316", + "byteOffset": 1713504, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_6180": { + "bufferView": "bufferView_18316", + "byteOffset": 1703712, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6182": { + "bufferView": "bufferView_18316", + "byteOffset": 1706184, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6198": { + "bufferView": "bufferView_18315", + "byteOffset": 203416, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_620": { + "bufferView": "bufferView_18316", + "byteOffset": 1716288, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_6200": { + "bufferView": "bufferView_18316", + "byteOffset": 1708656, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6202": { + "bufferView": "bufferView_18316", + "byteOffset": 1711080, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6218": { + "bufferView": "bufferView_18315", + "byteOffset": 204568, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_6220": { + "bufferView": "bufferView_18316", + "byteOffset": 1719072, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6222": { + "bufferView": "bufferView_18316", + "byteOffset": 1720224, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6232": { + "bufferView": "bufferView_18315", + "byteOffset": 204904, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6234": { + "bufferView": "bufferView_18316", + "byteOffset": 1721376, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_6244": { + "bufferView": "bufferView_18315", + "byteOffset": 204908, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6246": { + "bufferView": "bufferView_18316", + "byteOffset": 1721400, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_6256": { + "bufferView": "bufferView_18315", + "byteOffset": 204912, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6258": { + "bufferView": "bufferView_18316", + "byteOffset": 1721424, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_6268": { + "bufferView": "bufferView_18315", + "byteOffset": 204916, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6270": { + "bufferView": "bufferView_18316", + "byteOffset": 1721448, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_6280": { + "bufferView": "bufferView_18315", + "byteOffset": 204920, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6282": { + "bufferView": "bufferView_18316", + "byteOffset": 1721472, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_6298": { + "bufferView": "bufferView_18315", + "byteOffset": 204924, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6300": { + "bufferView": "bufferView_18316", + "byteOffset": 1721496, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6302": { + "bufferView": "bufferView_18316", + "byteOffset": 1723968, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6318": { + "bufferView": "bufferView_18315", + "byteOffset": 205500, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6320": { + "bufferView": "bufferView_18316", + "byteOffset": 1726440, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_6322": { + "bufferView": "bufferView_18316", + "byteOffset": 1731192, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_6338": { + "bufferView": "bufferView_18315", + "byteOffset": 206652, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6340": { + "bufferView": "bufferView_18316", + "byteOffset": 1735944, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6342": { + "bufferView": "bufferView_18316", + "byteOffset": 1738368, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6358": { + "bufferView": "bufferView_18315", + "byteOffset": 207228, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_636": { + "bufferView": "bufferView_18315", + "byteOffset": 208380, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_6360": { + "bufferView": "bufferView_18316", + "byteOffset": 1740792, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6362": { + "bufferView": "bufferView_18316", + "byteOffset": 1743264, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6378": { + "bufferView": "bufferView_18315", + "byteOffset": 207804, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_638": { + "bufferView": "bufferView_18316", + "byteOffset": 1750584, + "byteStride": 12, + "count": 208, + "max": [ + 1.56061, + 0.195177, + 0.243923 + ], + "min": [ + 1.36545, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_6380": { + "bufferView": "bufferView_18316", + "byteOffset": 1745736, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6382": { + "bufferView": "bufferView_18316", + "byteOffset": 1748160, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6398": { + "bufferView": "bufferView_18315", + "byteOffset": 208836, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_640": { + "bufferView": "bufferView_18316", + "byteOffset": 1753080, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_6400": { + "bufferView": "bufferView_18316", + "byteOffset": 1755576, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6402": { + "bufferView": "bufferView_18316", + "byteOffset": 1756728, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6412": { + "bufferView": "bufferView_18315", + "byteOffset": 209172, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6414": { + "bufferView": "bufferView_18316", + "byteOffset": 1757880, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_6424": { + "bufferView": "bufferView_18315", + "byteOffset": 209176, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6426": { + "bufferView": "bufferView_18316", + "byteOffset": 1757904, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_6436": { + "bufferView": "bufferView_18315", + "byteOffset": 209180, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6438": { + "bufferView": "bufferView_18316", + "byteOffset": 1757928, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_6448": { + "bufferView": "bufferView_18315", + "byteOffset": 209184, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6450": { + "bufferView": "bufferView_18316", + "byteOffset": 1757952, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_6460": { + "bufferView": "bufferView_18315", + "byteOffset": 209188, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6462": { + "bufferView": "bufferView_18316", + "byteOffset": 1757976, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_6478": { + "bufferView": "bufferView_18315", + "byteOffset": 209192, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6480": { + "bufferView": "bufferView_18316", + "byteOffset": 1758000, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6482": { + "bufferView": "bufferView_18316", + "byteOffset": 1760472, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6498": { + "bufferView": "bufferView_18315", + "byteOffset": 209768, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6500": { + "bufferView": "bufferView_18316", + "byteOffset": 1762944, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_6502": { + "bufferView": "bufferView_18316", + "byteOffset": 1767696, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_6518": { + "bufferView": "bufferView_18315", + "byteOffset": 210920, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6520": { + "bufferView": "bufferView_18316", + "byteOffset": 1772448, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_6522": { + "bufferView": "bufferView_18316", + "byteOffset": 1774872, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6538": { + "bufferView": "bufferView_18315", + "byteOffset": 211496, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6540": { + "bufferView": "bufferView_18316", + "byteOffset": 1777296, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6542": { + "bufferView": "bufferView_18316", + "byteOffset": 1779768, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6558": { + "bufferView": "bufferView_18315", + "byteOffset": 212072, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_656": { + "bufferView": "bufferView_18315", + "byteOffset": 212984, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6560": { + "bufferView": "bufferView_18316", + "byteOffset": 1782240, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_6562": { + "bufferView": "bufferView_18316", + "byteOffset": 1784664, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_6578": { + "bufferView": "bufferView_18315", + "byteOffset": 212648, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_658": { + "bufferView": "bufferView_18316", + "byteOffset": 1789392, + "byteStride": 12, + "count": 320, + "max": [ + 1.65811, + 0.195224, + 0.341492 + ], + "min": [ + 1.51181, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_6580": { + "bufferView": "bufferView_18316", + "byteOffset": 1787088, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6582": { + "bufferView": "bufferView_18316", + "byteOffset": 1788240, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6592": { + "bufferView": "bufferView_18315", + "byteOffset": 214136, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6594": { + "bufferView": "bufferView_18316", + "byteOffset": 1797072, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_660": { + "bufferView": "bufferView_18316", + "byteOffset": 1793232, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_6604": { + "bufferView": "bufferView_18315", + "byteOffset": 214140, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6606": { + "bufferView": "bufferView_18316", + "byteOffset": 1797096, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_6616": { + "bufferView": "bufferView_18315", + "byteOffset": 214144, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6618": { + "bufferView": "bufferView_18316", + "byteOffset": 1797120, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_6628": { + "bufferView": "bufferView_18315", + "byteOffset": 214148, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6630": { + "bufferView": "bufferView_18316", + "byteOffset": 1797144, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_6640": { + "bufferView": "bufferView_18315", + "byteOffset": 214152, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6642": { + "bufferView": "bufferView_18316", + "byteOffset": 1797168, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_6658": { + "bufferView": "bufferView_18315", + "byteOffset": 214156, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6660": { + "bufferView": "bufferView_18316", + "byteOffset": 1797192, + "byteStride": 12, + "count": 456, + "max": [ + 0.195096, + 0.195236, + 0.341539 + ], + "min": [ + 0.0487921, + 0.0488988, + 0.292702 + ], + "type": 35665 + }, + "accessor_6662": { + "bufferView": "bufferView_18316", + "byteOffset": 1802664, + "byteStride": 12, + "count": 456, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_6678": { + "bufferView": "bufferView_18315", + "byteOffset": 215308, + "byteStride": 0, + "count": 3654, + "type": 5123 + }, + "accessor_6680": { + "bufferView": "bufferView_18316", + "byteOffset": 1808136, + "byteStride": 12, + "count": 3121, + "max": [ + 0.975378, + 0.24417, + 0.292804 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6682": { + "bufferView": "bufferView_18316", + "byteOffset": 1845588, + "byteStride": 12, + "count": 3121, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6698": { + "bufferView": "bufferView_18315", + "byteOffset": 222616, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6700": { + "bufferView": "bufferView_18316", + "byteOffset": 1883040, + "byteStride": 12, + "count": 464, + "max": [ + 0.682776, + 0.195363, + 0.341508 + ], + "min": [ + 0.536472, + 0.0490258, + 0.292655 + ], + "type": 35665 + }, + "accessor_6702": { + "bufferView": "bufferView_18316", + "byteOffset": 1888608, + "byteStride": 12, + "count": 464, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_6718": { + "bufferView": "bufferView_18315", + "byteOffset": 223768, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6720": { + "bufferView": "bufferView_18316", + "byteOffset": 1894176, + "byteStride": 12, + "count": 232, + "max": [ + 0.780312, + 0.170882, + 0.0732676 + ], + "min": [ + 0.682746, + 0.0733272, + 4.95173e-05 + ], + "type": 35665 + }, + "accessor_6722": { + "bufferView": "bufferView_18316", + "byteOffset": 1896960, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_6738": { + "bufferView": "bufferView_18315", + "byteOffset": 224344, + "byteStride": 0, + "count": 1176, + "type": 5123 + }, + "accessor_6740": { + "bufferView": "bufferView_18316", + "byteOffset": 1899744, + "byteStride": 12, + "count": 1032, + "max": [ + 0.585235, + 0.244052, + 0.268389 + ], + "min": [ + 0.390083, + 0.000120632, + 0.073213 + ], + "type": 35665 + }, + "accessor_6742": { + "bufferView": "bufferView_18316", + "byteOffset": 1912128, + "byteStride": 12, + "count": 1032, + "max": [ + 0.980948, + 1, + 0.980887 + ], + "min": [ + -0.980948, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_6758": { + "bufferView": "bufferView_18315", + "byteOffset": 226696, + "byteStride": 0, + "count": 216, + "type": 5123 + }, + "accessor_676": { + "bufferView": "bufferView_18315", + "byteOffset": 227128, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_6760": { + "bufferView": "bufferView_18316", + "byteOffset": 1924512, + "byteStride": 12, + "count": 204, + "max": [ + 0.585267, + 0.195298, + 0.243972 + ], + "min": [ + 0.390111, + 0.0488582, + 0.0732155 + ], + "type": 35665 + }, + "accessor_6762": { + "bufferView": "bufferView_18316", + "byteOffset": 1926960, + "byteStride": 12, + "count": 204, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_6778": { + "bufferView": "bufferView_18315", + "byteOffset": 228280, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_678": { + "bufferView": "bufferView_18316", + "byteOffset": 1929408, + "byteStride": 12, + "count": 320, + "max": [ + 2.14579, + 0.195224, + 0.341492 + ], + "min": [ + 1.99949, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_6780": { + "bufferView": "bufferView_18316", + "byteOffset": 1937088, + "byteStride": 12, + "count": 459, + "max": [ + 0.926616, + 0.195411, + 0.341478 + ], + "min": [ + 0.780312, + 0.0491045, + 0.292641 + ], + "type": 35665 + }, + "accessor_6782": { + "bufferView": "bufferView_18316", + "byteOffset": 1942596, + "byteStride": 12, + "count": 459, + "max": [ + 0.981, + 0.98106, + 1 + ], + "min": [ + -0.981, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_6798": { + "bufferView": "bufferView_18315", + "byteOffset": 229432, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_680": { + "bufferView": "bufferView_18316", + "byteOffset": 1933248, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_6800": { + "bufferView": "bufferView_18316", + "byteOffset": 1948104, + "byteStride": 12, + "count": 472, + "max": [ + 0.438936, + 0.195284, + 0.341524 + ], + "min": [ + 0.292632, + 0.0489775, + 0.292672 + ], + "type": 35665 + }, + "accessor_6802": { + "bufferView": "bufferView_18316", + "byteOffset": 1953768, + "byteStride": 12, + "count": 472, + "max": [ + 0.98106, + 0.98106, + 1 + ], + "min": [ + -0.98106, + -0.98106, + -1 + ], + "type": 35665 + }, + "accessor_6818": { + "bufferView": "bufferView_18315", + "byteOffset": 230584, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6820": { + "bufferView": "bufferView_18316", + "byteOffset": 1959432, + "byteStride": 12, + "count": 232, + "max": [ + 0.292693, + 0.170755, + 0.0732981 + ], + "min": [ + 0.195127, + 0.0732002, + 8.00354e-05 + ], + "type": 35665 + }, + "accessor_6822": { + "bufferView": "bufferView_18316", + "byteOffset": 1962216, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_6838": { + "bufferView": "bufferView_18315", + "byteOffset": 231160, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6840": { + "bufferView": "bufferView_18316", + "byteOffset": 1965000, + "byteStride": 12, + "count": 232, + "max": [ + 0.536472, + 0.170804, + 0.0732676 + ], + "min": [ + 0.438906, + 0.0732485, + 4.95478e-05 + ], + "type": 35665 + }, + "accessor_6842": { + "bufferView": "bufferView_18316", + "byteOffset": 1967784, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_6852": { + "bufferView": "bufferView_18315", + "byteOffset": 231736, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_6854": { + "bufferView": "bufferView_18316", + "byteOffset": 1970568, + "byteStride": 12, + "count": 3, + "max": [ + 0.585267, + 0.048994, + 0.243942 + ], + "min": [ + 0.585206, + 0.0489089, + 0.0732841 + ], + "type": 35665 + }, + "accessor_6864": { + "bufferView": "bufferView_18315", + "byteOffset": 231744, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_6866": { + "bufferView": "bufferView_18316", + "byteOffset": 1970604, + "byteStride": 12, + "count": 2, + "max": [ + 0.341488, + 0.0489458, + 0.243972 + ], + "min": [ + 0.341457, + 0.0488963, + 0.170851 + ], + "type": 35665 + }, + "accessor_6882": { + "bufferView": "bufferView_18315", + "byteOffset": 231748, + "byteStride": 0, + "count": 4560, + "type": 5123 + }, + "accessor_6884": { + "bufferView": "bufferView_18316", + "byteOffset": 1970628, + "byteStride": 12, + "count": 1454, + "max": [ + 0.48768, + 0.48768, + 0.341376 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6886": { + "bufferView": "bufferView_18316", + "byteOffset": 1988076, + "byteStride": 12, + "count": 1454, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6902": { + "bufferView": "bufferView_18315", + "byteOffset": 240868, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6904": { + "bufferView": "bufferView_18316", + "byteOffset": 2005524, + "byteStride": 12, + "count": 106, + "max": [ + 0.195072, + 0.438912, + 0.341376 + ], + "min": [ + 0.048768, + 0.292608, + 0.292608 + ], + "type": 35665 + }, + "accessor_6906": { + "bufferView": "bufferView_18316", + "byteOffset": 2006796, + "byteStride": 12, + "count": 106, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6922": { + "bufferView": "bufferView_18315", + "byteOffset": 241444, + "byteStride": 0, + "count": 4560, + "type": 5123 + }, + "accessor_6924": { + "bufferView": "bufferView_18316", + "byteOffset": 2008068, + "byteStride": 12, + "count": 1454, + "max": [ + 0.48768, + 0.48768, + 0.341376 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6926": { + "bufferView": "bufferView_18316", + "byteOffset": 2025516, + "byteStride": 12, + "count": 1454, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_6942": { + "bufferView": "bufferView_18315", + "byteOffset": 250564, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6944": { + "bufferView": "bufferView_18316", + "byteOffset": 2042964, + "byteStride": 12, + "count": 106, + "max": [ + 0.195072, + 0.438912, + 0.341376 + ], + "min": [ + 0.048768, + 0.292608, + 0.292608 + ], + "type": 35665 + }, + "accessor_6946": { + "bufferView": "bufferView_18316", + "byteOffset": 2044236, + "byteStride": 12, + "count": 106, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_696": { + "bufferView": "bufferView_18315", + "byteOffset": 251716, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6962": { + "bufferView": "bufferView_18315", + "byteOffset": 251140, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_6964": { + "bufferView": "bufferView_18316", + "byteOffset": 2045508, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_6966": { + "bufferView": "bufferView_18316", + "byteOffset": 2048124, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_698": { + "bufferView": "bufferView_18316", + "byteOffset": 2050740, + "byteStride": 12, + "count": 232, + "max": [ + 2.24333, + 0.170683, + 0.073218 + ], + "min": [ + 2.14577, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_6982": { + "bufferView": "bufferView_18315", + "byteOffset": 252292, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_6984": { + "bufferView": "bufferView_18316", + "byteOffset": 2056308, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_6986": { + "bufferView": "bufferView_18316", + "byteOffset": 2057844, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_700": { + "bufferView": "bufferView_18316", + "byteOffset": 2053524, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7002": { + "bufferView": "bufferView_18315", + "byteOffset": 252844, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7004": { + "bufferView": "bufferView_18316", + "byteOffset": 2059380, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7006": { + "bufferView": "bufferView_18316", + "byteOffset": 2061660, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7022": { + "bufferView": "bufferView_18315", + "byteOffset": 253420, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_7024": { + "bufferView": "bufferView_18316", + "byteOffset": 2063940, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7026": { + "bufferView": "bufferView_18316", + "byteOffset": 2066700, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7042": { + "bufferView": "bufferView_18315", + "byteOffset": 254164, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7044": { + "bufferView": "bufferView_18316", + "byteOffset": 2069460, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_7046": { + "bufferView": "bufferView_18316", + "byteOffset": 2072076, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7062": { + "bufferView": "bufferView_18315", + "byteOffset": 254740, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_7064": { + "bufferView": "bufferView_18316", + "byteOffset": 2074692, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_7066": { + "bufferView": "bufferView_18316", + "byteOffset": 2076228, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_7082": { + "bufferView": "bufferView_18315", + "byteOffset": 255292, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7084": { + "bufferView": "bufferView_18316", + "byteOffset": 2077764, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7086": { + "bufferView": "bufferView_18316", + "byteOffset": 2080044, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7102": { + "bufferView": "bufferView_18315", + "byteOffset": 255868, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_7104": { + "bufferView": "bufferView_18316", + "byteOffset": 2082324, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7106": { + "bufferView": "bufferView_18316", + "byteOffset": 2085084, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7122": { + "bufferView": "bufferView_18315", + "byteOffset": 256612, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7124": { + "bufferView": "bufferView_18316", + "byteOffset": 2087844, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_7126": { + "bufferView": "bufferView_18316", + "byteOffset": 2090460, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7142": { + "bufferView": "bufferView_18315", + "byteOffset": 257188, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_7144": { + "bufferView": "bufferView_18316", + "byteOffset": 2093076, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_7146": { + "bufferView": "bufferView_18316", + "byteOffset": 2094612, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_716": { + "bufferView": "bufferView_18315", + "byteOffset": 257740, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7162": { + "bufferView": "bufferView_18315", + "byteOffset": 258196, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7164": { + "bufferView": "bufferView_18316", + "byteOffset": 2101140, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7166": { + "bufferView": "bufferView_18316", + "byteOffset": 2103420, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_718": { + "bufferView": "bufferView_18316", + "byteOffset": 2096148, + "byteStride": 12, + "count": 208, + "max": [ + 2.29213, + 0.195177, + 0.243923 + ], + "min": [ + 2.09697, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7182": { + "bufferView": "bufferView_18315", + "byteOffset": 258772, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_7184": { + "bufferView": "bufferView_18316", + "byteOffset": 2105700, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7186": { + "bufferView": "bufferView_18316", + "byteOffset": 2108460, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_720": { + "bufferView": "bufferView_18316", + "byteOffset": 2098644, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7202": { + "bufferView": "bufferView_18315", + "byteOffset": 259516, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7204": { + "bufferView": "bufferView_18316", + "byteOffset": 2111220, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_7206": { + "bufferView": "bufferView_18316", + "byteOffset": 2113836, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7222": { + "bufferView": "bufferView_18315", + "byteOffset": 260092, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_7224": { + "bufferView": "bufferView_18316", + "byteOffset": 2116452, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_7226": { + "bufferView": "bufferView_18316", + "byteOffset": 2117988, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_7242": { + "bufferView": "bufferView_18315", + "byteOffset": 260644, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7244": { + "bufferView": "bufferView_18316", + "byteOffset": 2119524, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7246": { + "bufferView": "bufferView_18316", + "byteOffset": 2121804, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7262": { + "bufferView": "bufferView_18315", + "byteOffset": 261220, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_7264": { + "bufferView": "bufferView_18316", + "byteOffset": 2124084, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_7266": { + "bufferView": "bufferView_18316", + "byteOffset": 2126844, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_7282": { + "bufferView": "bufferView_18315", + "byteOffset": 261964, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_7284": { + "bufferView": "bufferView_18316", + "byteOffset": 2129604, + "byteStride": 12, + "count": 5620, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_7286": { + "bufferView": "bufferView_18316", + "byteOffset": 2197044, + "byteStride": 12, + "count": 5620, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_7302": { + "bufferView": "bufferView_18315", + "byteOffset": 275980, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7304": { + "bufferView": "bufferView_18316", + "byteOffset": 2264484, + "byteStride": 12, + "count": 344, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7306": { + "bufferView": "bufferView_18316", + "byteOffset": 2268612, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7322": { + "bufferView": "bufferView_18315", + "byteOffset": 277132, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7324": { + "bufferView": "bufferView_18316", + "byteOffset": 2272740, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7326": { + "bufferView": "bufferView_18316", + "byteOffset": 2275524, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7342": { + "bufferView": "bufferView_18315", + "byteOffset": 277708, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7344": { + "bufferView": "bufferView_18316", + "byteOffset": 2278308, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7346": { + "bufferView": "bufferView_18316", + "byteOffset": 2281092, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_736": { + "bufferView": "bufferView_18315", + "byteOffset": 278284, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7362": { + "bufferView": "bufferView_18315", + "byteOffset": 278860, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7364": { + "bufferView": "bufferView_18316", + "byteOffset": 2289444, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7366": { + "bufferView": "bufferView_18316", + "byteOffset": 2292228, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_738": { + "bufferView": "bufferView_18316", + "byteOffset": 2283876, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7382": { + "bufferView": "bufferView_18315", + "byteOffset": 279436, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7384": { + "bufferView": "bufferView_18316", + "byteOffset": 2295012, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7386": { + "bufferView": "bufferView_18316", + "byteOffset": 2297508, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_740": { + "bufferView": "bufferView_18316", + "byteOffset": 2286660, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7402": { + "bufferView": "bufferView_18315", + "byteOffset": 280468, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7404": { + "bufferView": "bufferView_18316", + "byteOffset": 2305572, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7406": { + "bufferView": "bufferView_18316", + "byteOffset": 2308356, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7422": { + "bufferView": "bufferView_18315", + "byteOffset": 281044, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7424": { + "bufferView": "bufferView_18316", + "byteOffset": 2311140, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7426": { + "bufferView": "bufferView_18316", + "byteOffset": 2313636, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7442": { + "bufferView": "bufferView_18315", + "byteOffset": 281500, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7444": { + "bufferView": "bufferView_18316", + "byteOffset": 2316132, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7446": { + "bufferView": "bufferView_18316", + "byteOffset": 2318628, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7462": { + "bufferView": "bufferView_18315", + "byteOffset": 281956, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7464": { + "bufferView": "bufferView_18316", + "byteOffset": 2321124, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7466": { + "bufferView": "bufferView_18316", + "byteOffset": 2325252, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7482": { + "bufferView": "bufferView_18315", + "byteOffset": 283108, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7484": { + "bufferView": "bufferView_18316", + "byteOffset": 2329380, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7486": { + "bufferView": "bufferView_18316", + "byteOffset": 2331876, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7502": { + "bufferView": "bufferView_18315", + "byteOffset": 283564, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7504": { + "bufferView": "bufferView_18316", + "byteOffset": 2334372, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7506": { + "bufferView": "bufferView_18316", + "byteOffset": 2336868, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7522": { + "bufferView": "bufferView_18315", + "byteOffset": 284020, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7524": { + "bufferView": "bufferView_18316", + "byteOffset": 2339364, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7526": { + "bufferView": "bufferView_18316", + "byteOffset": 2343492, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7542": { + "bufferView": "bufferView_18315", + "byteOffset": 285172, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7544": { + "bufferView": "bufferView_18316", + "byteOffset": 2347620, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7546": { + "bufferView": "bufferView_18316", + "byteOffset": 2351736, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_756": { + "bufferView": "bufferView_18315", + "byteOffset": 286324, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7562": { + "bufferView": "bufferView_18315", + "byteOffset": 286900, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7564": { + "bufferView": "bufferView_18316", + "byteOffset": 2361420, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7566": { + "bufferView": "bufferView_18316", + "byteOffset": 2365548, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_758": { + "bufferView": "bufferView_18316", + "byteOffset": 2355852, + "byteStride": 12, + "count": 232, + "max": [ + 2.73101, + 0.170683, + 0.073218 + ], + "min": [ + 2.63345, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7582": { + "bufferView": "bufferView_18315", + "byteOffset": 288052, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7584": { + "bufferView": "bufferView_18316", + "byteOffset": 2369676, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7586": { + "bufferView": "bufferView_18316", + "byteOffset": 2372460, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_76": { + "bufferView": "bufferView_18315", + "byteOffset": 279892, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_760": { + "bufferView": "bufferView_18316", + "byteOffset": 2358636, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7602": { + "bufferView": "bufferView_18315", + "byteOffset": 288628, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7604": { + "bufferView": "bufferView_18316", + "byteOffset": 2375244, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7606": { + "bufferView": "bufferView_18316", + "byteOffset": 2379372, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7616": { + "bufferView": "bufferView_18315", + "byteOffset": 289780, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_7618": { + "bufferView": "bufferView_18316", + "byteOffset": 2383500, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_7628": { + "bufferView": "bufferView_18315", + "byteOffset": 289784, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_7630": { + "bufferView": "bufferView_18316", + "byteOffset": 2383524, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_7640": { + "bufferView": "bufferView_18315", + "byteOffset": 289788, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_7642": { + "bufferView": "bufferView_18316", + "byteOffset": 2383548, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_7652": { + "bufferView": "bufferView_18315", + "byteOffset": 289792, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_7654": { + "bufferView": "bufferView_18316", + "byteOffset": 2383572, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_7664": { + "bufferView": "bufferView_18315", + "byteOffset": 289796, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_7666": { + "bufferView": "bufferView_18316", + "byteOffset": 2383596, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_7682": { + "bufferView": "bufferView_18315", + "byteOffset": 289800, + "byteStride": 0, + "count": 7008, + "type": 5123 + }, + "accessor_7684": { + "bufferView": "bufferView_18316", + "byteOffset": 2383620, + "byteStride": 12, + "count": 5619, + "max": [ + 1.46304, + 0.243992, + 0.292724 + ], + "min": [ + 0, + 0, + 0.000115522 + ], + "type": 35665 + }, + "accessor_7686": { + "bufferView": "bufferView_18316", + "byteOffset": 2451048, + "byteStride": 12, + "count": 5619, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_7702": { + "bufferView": "bufferView_18315", + "byteOffset": 303816, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7704": { + "bufferView": "bufferView_18316", + "byteOffset": 2518476, + "byteStride": 12, + "count": 343, + "max": [ + 0.926592, + 0.195224, + 0.341492 + ], + "min": [ + 0.780288, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7706": { + "bufferView": "bufferView_18316", + "byteOffset": 2522592, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7722": { + "bufferView": "bufferView_18315", + "byteOffset": 304968, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7724": { + "bufferView": "bufferView_18316", + "byteOffset": 2526708, + "byteStride": 12, + "count": 232, + "max": [ + 0.780294, + 0.170683, + 0.073218 + ], + "min": [ + 0.682728, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7726": { + "bufferView": "bufferView_18316", + "byteOffset": 2529492, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7742": { + "bufferView": "bufferView_18315", + "byteOffset": 306000, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7744": { + "bufferView": "bufferView_18316", + "byteOffset": 2537268, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7746": { + "bufferView": "bufferView_18316", + "byteOffset": 2540052, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_776": { + "bufferView": "bufferView_18315", + "byteOffset": 305544, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7762": { + "bufferView": "bufferView_18315", + "byteOffset": 306576, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7764": { + "bufferView": "bufferView_18316", + "byteOffset": 2542836, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7766": { + "bufferView": "bufferView_18316", + "byteOffset": 2545620, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_778": { + "bufferView": "bufferView_18316", + "byteOffset": 2532276, + "byteStride": 12, + "count": 208, + "max": [ + 2.77981, + 0.195177, + 0.243923 + ], + "min": [ + 2.58465, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7782": { + "bufferView": "bufferView_18315", + "byteOffset": 307152, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7784": { + "bufferView": "bufferView_18316", + "byteOffset": 2548404, + "byteStride": 12, + "count": 208, + "max": [ + 1.07293, + 0.195177, + 0.243923 + ], + "min": [ + 0.877773, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7786": { + "bufferView": "bufferView_18316", + "byteOffset": 2550900, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_78": { + "bufferView": "bufferView_18316", + "byteOffset": 2300004, + "byteStride": 12, + "count": 232, + "max": [ + 1.02413, + 0.170683, + 0.073218 + ], + "min": [ + 0.926568, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_780": { + "bufferView": "bufferView_18316", + "byteOffset": 2534772, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7802": { + "bufferView": "bufferView_18315", + "byteOffset": 307608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7804": { + "bufferView": "bufferView_18316", + "byteOffset": 2553396, + "byteStride": 12, + "count": 232, + "max": [ + 0.536454, + 0.170683, + 0.073218 + ], + "min": [ + 0.438888, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7806": { + "bufferView": "bufferView_18316", + "byteOffset": 2556180, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_7822": { + "bufferView": "bufferView_18315", + "byteOffset": 308184, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7824": { + "bufferView": "bufferView_18316", + "byteOffset": 2558964, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7826": { + "bufferView": "bufferView_18316", + "byteOffset": 2561460, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7842": { + "bufferView": "bufferView_18315", + "byteOffset": 308640, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7844": { + "bufferView": "bufferView_18316", + "byteOffset": 2563956, + "byteStride": 12, + "count": 208, + "max": [ + 0.829089, + 0.195177, + 0.243923 + ], + "min": [ + 0.633933, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7846": { + "bufferView": "bufferView_18316", + "byteOffset": 2566452, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7862": { + "bufferView": "bufferView_18315", + "byteOffset": 309096, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7864": { + "bufferView": "bufferView_18316", + "byteOffset": 2568948, + "byteStride": 12, + "count": 344, + "max": [ + 1.17043, + 0.195224, + 0.341492 + ], + "min": [ + 1.02413, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7866": { + "bufferView": "bufferView_18316", + "byteOffset": 2573076, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7882": { + "bufferView": "bufferView_18315", + "byteOffset": 310248, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7884": { + "bufferView": "bufferView_18316", + "byteOffset": 2577204, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7886": { + "bufferView": "bufferView_18316", + "byteOffset": 2579700, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7902": { + "bufferView": "bufferView_18315", + "byteOffset": 310704, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_7904": { + "bufferView": "bufferView_18316", + "byteOffset": 2582196, + "byteStride": 12, + "count": 208, + "max": [ + 0.585249, + 0.195177, + 0.243923 + ], + "min": [ + 0.390093, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_7906": { + "bufferView": "bufferView_18316", + "byteOffset": 2584692, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_7922": { + "bufferView": "bufferView_18315", + "byteOffset": 311160, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7924": { + "bufferView": "bufferView_18316", + "byteOffset": 2587188, + "byteStride": 12, + "count": 344, + "max": [ + 1.41427, + 0.195224, + 0.341492 + ], + "min": [ + 1.26797, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7926": { + "bufferView": "bufferView_18316", + "byteOffset": 2591316, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_7942": { + "bufferView": "bufferView_18315", + "byteOffset": 312888, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7944": { + "bufferView": "bufferView_18316", + "byteOffset": 2601012, + "byteStride": 12, + "count": 343, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7946": { + "bufferView": "bufferView_18316", + "byteOffset": 2605128, + "byteStride": 12, + "count": 343, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_796": { + "bufferView": "bufferView_18315", + "byteOffset": 312312, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7962": { + "bufferView": "bufferView_18315", + "byteOffset": 314040, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_7964": { + "bufferView": "bufferView_18316", + "byteOffset": 2609244, + "byteStride": 12, + "count": 344, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_7966": { + "bufferView": "bufferView_18316", + "byteOffset": 2613372, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_798": { + "bufferView": "bufferView_18316", + "byteOffset": 2595444, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7982": { + "bufferView": "bufferView_18315", + "byteOffset": 315192, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_7984": { + "bufferView": "bufferView_18316", + "byteOffset": 2617500, + "byteStride": 12, + "count": 232, + "max": [ + 1.26797, + 0.170683, + 0.073218 + ], + "min": [ + 1.17041, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_7986": { + "bufferView": "bufferView_18316", + "byteOffset": 2620284, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_80": { + "bufferView": "bufferView_18316", + "byteOffset": 2302788, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_800": { + "bufferView": "bufferView_18316", + "byteOffset": 2598228, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_8002": { + "bufferView": "bufferView_18315", + "byteOffset": 315768, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8004": { + "bufferView": "bufferView_18316", + "byteOffset": 2623068, + "byteStride": 12, + "count": 344, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_8006": { + "bufferView": "bufferView_18316", + "byteOffset": 2627196, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8016": { + "bufferView": "bufferView_18315", + "byteOffset": 316920, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8018": { + "bufferView": "bufferView_18316", + "byteOffset": 2631324, + "byteStride": 12, + "count": 2, + "max": [ + 0.341409, + 0.0488734, + 0.243892 + ], + "min": [ + 0.341348, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_8028": { + "bufferView": "bufferView_18315", + "byteOffset": 316924, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8030": { + "bufferView": "bufferView_18316", + "byteOffset": 2631348, + "byteStride": 12, + "count": 2, + "max": [ + 0.829089, + 0.0488734, + 0.243892 + ], + "min": [ + 0.829028, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_8040": { + "bufferView": "bufferView_18315", + "byteOffset": 316928, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8042": { + "bufferView": "bufferView_18316", + "byteOffset": 2631372, + "byteStride": 12, + "count": 2, + "max": [ + 0.585249, + 0.0488734, + 0.243892 + ], + "min": [ + 0.585188, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_8052": { + "bufferView": "bufferView_18315", + "byteOffset": 316932, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8054": { + "bufferView": "bufferView_18316", + "byteOffset": 2631396, + "byteStride": 12, + "count": 2, + "max": [ + 1.31677, + 0.0488734, + 0.243892 + ], + "min": [ + 1.31671, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_8064": { + "bufferView": "bufferView_18315", + "byteOffset": 316936, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8066": { + "bufferView": "bufferView_18316", + "byteOffset": 2631420, + "byteStride": 12, + "count": 2, + "max": [ + 1.07293, + 0.0488734, + 0.243892 + ], + "min": [ + 1.07287, + 0.0487883, + 0.0732345 + ], + "type": 35665 + }, + "accessor_8082": { + "bufferView": "bufferView_18315", + "byteOffset": 316940, + "byteStride": 0, + "count": 4896, + "type": 5123 + }, + "accessor_8084": { + "bufferView": "bufferView_18316", + "byteOffset": 2631444, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8086": { + "bufferView": "bufferView_18316", + "byteOffset": 2663004, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8102": { + "bufferView": "bufferView_18315", + "byteOffset": 326732, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8104": { + "bufferView": "bufferView_18316", + "byteOffset": 2694564, + "byteStride": 12, + "count": 364, + "max": [ + 0.195102, + 1.17043, + 0.146304 + ], + "min": [ + 0.0487985, + 1.02413, + 0.097536 + ], + "type": 35665 + }, + "accessor_8106": { + "bufferView": "bufferView_18316", + "byteOffset": 2698932, + "byteStride": 12, + "count": 364, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_8122": { + "bufferView": "bufferView_18315", + "byteOffset": 327884, + "byteStride": 0, + "count": 1296, + "type": 5123 + }, + "accessor_8124": { + "bufferView": "bufferView_18316", + "byteOffset": 2703300, + "byteStride": 12, + "count": 894, + "max": [ + 0.243931, + 1.46304, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8126": { + "bufferView": "bufferView_18316", + "byteOffset": 2714028, + "byteStride": 12, + "count": 894, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8142": { + "bufferView": "bufferView_18315", + "byteOffset": 331628, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_8144": { + "bufferView": "bufferView_18316", + "byteOffset": 2732436, + "byteStride": 12, + "count": 888, + "max": [ + 0.243931, + 0.24384, + 0.024384 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8146": { + "bufferView": "bufferView_18316", + "byteOffset": 2743092, + "byteStride": 12, + "count": 888, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_816": { + "bufferView": "bufferView_18315", + "byteOffset": 330476, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8162": { + "bufferView": "bufferView_18315", + "byteOffset": 333932, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_8164": { + "bufferView": "bufferView_18316", + "byteOffset": 2753748, + "byteStride": 12, + "count": 370, + "max": [ + 0.195163, + 0.438912, + 0.146304 + ], + "min": [ + 0.0488594, + 0.292608, + 0.097536 + ], + "type": 35665 + }, + "accessor_8166": { + "bufferView": "bufferView_18316", + "byteOffset": 2758188, + "byteStride": 12, + "count": 370, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_818": { + "bufferView": "bufferView_18316", + "byteOffset": 2724756, + "byteStride": 12, + "count": 320, + "max": [ + 0.438912, + 0.195224, + 0.341492 + ], + "min": [ + 0.292608, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_8182": { + "bufferView": "bufferView_18315", + "byteOffset": 335120, + "byteStride": 0, + "count": 594, + "type": 5123 + }, + "accessor_8184": { + "bufferView": "bufferView_18316", + "byteOffset": 2762628, + "byteStride": 12, + "count": 358, + "max": [ + 0.195133, + 0.682752, + 0.146304 + ], + "min": [ + 0.048829, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_8186": { + "bufferView": "bufferView_18316", + "byteOffset": 2766924, + "byteStride": 12, + "count": 358, + "max": [ + 0.980744, + 0.980744, + 1 + ], + "min": [ + -0.980744, + -0.980744, + -1 + ], + "type": 35665 + }, + "accessor_820": { + "bufferView": "bufferView_18316", + "byteOffset": 2728596, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8202": { + "bufferView": "bufferView_18315", + "byteOffset": 336308, + "byteStride": 0, + "count": 1152, + "type": 5123 + }, + "accessor_8204": { + "bufferView": "bufferView_18316", + "byteOffset": 2771220, + "byteStride": 12, + "count": 867, + "max": [ + 0.24384, + 1.46304, + 0.024384 + ], + "min": [ + 0, + 1.2192, + 0 + ], + "type": 35665 + }, + "accessor_8206": { + "bufferView": "bufferView_18316", + "byteOffset": 2781624, + "byteStride": 12, + "count": 867, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8222": { + "bufferView": "bufferView_18315", + "byteOffset": 338612, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8224": { + "bufferView": "bufferView_18316", + "byteOffset": 2792028, + "byteStride": 12, + "count": 360, + "max": [ + 0.195102, + 0.926592, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780288, + 0.097536 + ], + "type": 35665 + }, + "accessor_8226": { + "bufferView": "bufferView_18316", + "byteOffset": 2796348, + "byteStride": 12, + "count": 360, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_8242": { + "bufferView": "bufferView_18315", + "byteOffset": 339764, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8244": { + "bufferView": "bufferView_18316", + "byteOffset": 2800668, + "byteStride": 12, + "count": 209, + "max": [ + 0.170749, + 0.536448, + 0.048768 + ], + "min": [ + 0.073213, + 0.438912, + 0 + ], + "type": 35665 + }, + "accessor_8246": { + "bufferView": "bufferView_18316", + "byteOffset": 2803176, + "byteStride": 12, + "count": 209, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_8262": { + "bufferView": "bufferView_18315", + "byteOffset": 340340, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8264": { + "bufferView": "bufferView_18316", + "byteOffset": 2805684, + "byteStride": 12, + "count": 218, + "max": [ + 0.170749, + 0.780288, + 0.048768 + ], + "min": [ + 0.073213, + 0.682752, + 0 + ], + "type": 35665 + }, + "accessor_8266": { + "bufferView": "bufferView_18316", + "byteOffset": 2808300, + "byteStride": 12, + "count": 218, + "max": [ + 0.98101, + 0.980765, + 1 + ], + "min": [ + -0.98101, + -0.980765, + -1 + ], + "type": 35665 + }, + "accessor_8282": { + "bufferView": "bufferView_18315", + "byteOffset": 340916, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8284": { + "bufferView": "bufferView_18316", + "byteOffset": 2810916, + "byteStride": 12, + "count": 225, + "max": [ + 0.170718, + 1.02413, + 0.048768 + ], + "min": [ + 0.0731825, + 0.926592, + 0 + ], + "type": 35665 + }, + "accessor_8286": { + "bufferView": "bufferView_18316", + "byteOffset": 2813616, + "byteStride": 12, + "count": 225, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_8296": { + "bufferView": "bufferView_18315", + "byteOffset": 341492, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_8298": { + "bufferView": "bufferView_18316", + "byteOffset": 2816316, + "byteStride": 12, + "count": 3, + "max": [ + 0.00012192, + 0.731489, + 0.097536 + ], + "min": [ + 3.048e-05, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_8308": { + "bufferView": "bufferView_18315", + "byteOffset": 341500, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8310": { + "bufferView": "bufferView_18316", + "byteOffset": 2816352, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.536448, + 0.146304 + ], + "min": [ + 0.12195, + 0.536448, + 0.097536 + ], + "type": 35665 + }, + "accessor_8320": { + "bufferView": "bufferView_18315", + "byteOffset": 341960, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8322": { + "bufferView": "bufferView_18316", + "byteOffset": 2821368, + "byteStride": 12, + "count": 2, + "max": [ + 0.24387, + 0.731489, + 0.097536 + ], + "min": [ + 0.24381, + 0.24387, + 0.097536 + ], + "type": 35665 + }, + "accessor_8332": { + "bufferView": "bufferView_18315", + "byteOffset": 341964, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8334": { + "bufferView": "bufferView_18316", + "byteOffset": 2821392, + "byteStride": 12, + "count": 2, + "max": [ + 0.12195, + 0.438912, + 0.146304 + ], + "min": [ + 0.12195, + 0.438912, + 0.097536 + ], + "type": 35665 + }, + "accessor_8350": { + "bufferView": "bufferView_18315", + "byteOffset": 341968, + "byteStride": 0, + "count": 4896, + "type": 5123 + }, + "accessor_8352": { + "bufferView": "bufferView_18316", + "byteOffset": 2821416, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8354": { + "bufferView": "bufferView_18316", + "byteOffset": 2852976, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_836": { + "bufferView": "bufferView_18315", + "byteOffset": 341504, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_8370": { + "bufferView": "bufferView_18315", + "byteOffset": 351760, + "byteStride": 0, + "count": 4896, + "type": 5123 + }, + "accessor_8372": { + "bufferView": "bufferView_18316", + "byteOffset": 2884536, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8374": { + "bufferView": "bufferView_18316", + "byteOffset": 2916096, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_838": { + "bufferView": "bufferView_18316", + "byteOffset": 2816376, + "byteStride": 12, + "count": 208, + "max": [ + 0.341409, + 0.195177, + 0.243923 + ], + "min": [ + 0.146253, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_8390": { + "bufferView": "bufferView_18315", + "byteOffset": 361552, + "byteStride": 0, + "count": 4896, + "type": 5123 + }, + "accessor_8392": { + "bufferView": "bufferView_18316", + "byteOffset": 2947656, + "byteStride": 12, + "count": 2630, + "max": [ + 0.48768, + 0.188976, + 0.195072 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8394": { + "bufferView": "bufferView_18316", + "byteOffset": 2979216, + "byteStride": 12, + "count": 2630, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_840": { + "bufferView": "bufferView_18316", + "byteOffset": 2818872, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_8410": { + "bufferView": "bufferView_18315", + "byteOffset": 371344, + "byteStride": 0, + "count": 312, + "type": 5123 + }, + "accessor_8412": { + "bufferView": "bufferView_18316", + "byteOffset": 3010776, + "byteStride": 12, + "count": 164, + "max": [ + 0.24384, + 0.48768, + 0.292608 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8414": { + "bufferView": "bufferView_18316", + "byteOffset": 3012744, + "byteStride": 12, + "count": 164, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8430": { + "bufferView": "bufferView_18315", + "byteOffset": 371968, + "byteStride": 0, + "count": 1320, + "type": 5123 + }, + "accessor_8432": { + "bufferView": "bufferView_18316", + "byteOffset": 3014712, + "byteStride": 12, + "count": 508, + "max": [ + 0.195072, + 0.195072, + 0.341376 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8434": { + "bufferView": "bufferView_18316", + "byteOffset": 3020808, + "byteStride": 12, + "count": 508, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8450": { + "bufferView": "bufferView_18315", + "byteOffset": 374608, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8452": { + "bufferView": "bufferView_18316", + "byteOffset": 3026904, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.438912, + 0.341376 + ], + "min": [ + 0.048768, + 0.292608, + 0.292608 + ], + "type": 35665 + }, + "accessor_8454": { + "bufferView": "bufferView_18316", + "byteOffset": 3028848, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8470": { + "bufferView": "bufferView_18315", + "byteOffset": 375184, + "byteStride": 0, + "count": 312, + "type": 5123 + }, + "accessor_8472": { + "bufferView": "bufferView_18316", + "byteOffset": 3030792, + "byteStride": 12, + "count": 164, + "max": [ + 0.24384, + 0.48768, + 0.292608 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8474": { + "bufferView": "bufferView_18316", + "byteOffset": 3032760, + "byteStride": 12, + "count": 164, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8490": { + "bufferView": "bufferView_18315", + "byteOffset": 375808, + "byteStride": 0, + "count": 1320, + "type": 5123 + }, + "accessor_8492": { + "bufferView": "bufferView_18316", + "byteOffset": 3034728, + "byteStride": 12, + "count": 508, + "max": [ + 0.195072, + 0.195072, + 0.341376 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8494": { + "bufferView": "bufferView_18316", + "byteOffset": 3040824, + "byteStride": 12, + "count": 508, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8510": { + "bufferView": "bufferView_18315", + "byteOffset": 379600, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8512": { + "bufferView": "bufferView_18316", + "byteOffset": 3054600, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.438912, + 0.341376 + ], + "min": [ + 0.048768, + 0.292608, + 0.292608 + ], + "type": 35665 + }, + "accessor_8514": { + "bufferView": "bufferView_18316", + "byteOffset": 3056544, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8530": { + "bufferView": "bufferView_18315", + "byteOffset": 380176, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8532": { + "bufferView": "bufferView_18316", + "byteOffset": 3058488, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_8534": { + "bufferView": "bufferView_18316", + "byteOffset": 3061104, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_8550": { + "bufferView": "bufferView_18315", + "byteOffset": 380752, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_8552": { + "bufferView": "bufferView_18316", + "byteOffset": 3063720, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8554": { + "bufferView": "bufferView_18316", + "byteOffset": 3065256, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_856": { + "bufferView": "bufferView_18315", + "byteOffset": 378448, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8570": { + "bufferView": "bufferView_18315", + "byteOffset": 381304, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8572": { + "bufferView": "bufferView_18316", + "byteOffset": 3066792, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_8574": { + "bufferView": "bufferView_18316", + "byteOffset": 3069072, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_858": { + "bufferView": "bufferView_18316", + "byteOffset": 3046920, + "byteStride": 12, + "count": 320, + "max": [ + 0.195072, + 0.195224, + 0.341492 + ], + "min": [ + 0.048768, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_8590": { + "bufferView": "bufferView_18315", + "byteOffset": 381880, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_8592": { + "bufferView": "bufferView_18316", + "byteOffset": 3071352, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_8594": { + "bufferView": "bufferView_18316", + "byteOffset": 3074112, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_860": { + "bufferView": "bufferView_18316", + "byteOffset": 3050760, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8610": { + "bufferView": "bufferView_18315", + "byteOffset": 382624, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8612": { + "bufferView": "bufferView_18316", + "byteOffset": 3076872, + "byteStride": 12, + "count": 218, + "max": [ + 0.292578, + 0.170658, + 0.048768 + ], + "min": [ + 0.195042, + 0.0731215, + 0 + ], + "type": 35665 + }, + "accessor_8614": { + "bufferView": "bufferView_18316", + "byteOffset": 3079488, + "byteStride": 12, + "count": 218, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_8630": { + "bufferView": "bufferView_18315", + "byteOffset": 383200, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_8632": { + "bufferView": "bufferView_18316", + "byteOffset": 3082104, + "byteStride": 12, + "count": 128, + "max": [ + 0.487619, + 0.243779, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8634": { + "bufferView": "bufferView_18316", + "byteOffset": 3083640, + "byteStride": 12, + "count": 128, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8650": { + "bufferView": "bufferView_18315", + "byteOffset": 383752, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8652": { + "bufferView": "bufferView_18316", + "byteOffset": 3085176, + "byteStride": 12, + "count": 190, + "max": [ + 0.438881, + 0.195042, + 0.146304 + ], + "min": [ + 0.292578, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_8654": { + "bufferView": "bufferView_18316", + "byteOffset": 3087456, + "byteStride": 12, + "count": 190, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_8670": { + "bufferView": "bufferView_18315", + "byteOffset": 384328, + "byteStride": 0, + "count": 372, + "type": 5123 + }, + "accessor_8672": { + "bufferView": "bufferView_18316", + "byteOffset": 3089736, + "byteStride": 12, + "count": 230, + "max": [ + 0.195042, + 0.195042, + 0.146304 + ], + "min": [ + 0.0487375, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_8674": { + "bufferView": "bufferView_18316", + "byteOffset": 3092496, + "byteStride": 12, + "count": 230, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_8690": { + "bufferView": "bufferView_18315", + "byteOffset": 385072, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_8692": { + "bufferView": "bufferView_18316", + "byteOffset": 3095256, + "byteStride": 12, + "count": 146, + "max": [ + 0.48768, + 0.48768, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8694": { + "bufferView": "bufferView_18316", + "byteOffset": 3097008, + "byteStride": 12, + "count": 146, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8710": { + "bufferView": "bufferView_18315", + "byteOffset": 386776, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8712": { + "bufferView": "bufferView_18316", + "byteOffset": 3106440, + "byteStride": 12, + "count": 162, + "max": [ + 0.170688, + 0.292608, + 0.048768 + ], + "min": [ + 0.073152, + 0.195072, + 0 + ], + "type": 35665 + }, + "accessor_8714": { + "bufferView": "bufferView_18316", + "byteOffset": 3108384, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8730": { + "bufferView": "bufferView_18315", + "byteOffset": 387352, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8732": { + "bufferView": "bufferView_18316", + "byteOffset": 3110328, + "byteStride": 12, + "count": 162, + "max": [ + 0.438912, + 0.195072, + 0.146304 + ], + "min": [ + 0.292608, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8734": { + "bufferView": "bufferView_18316", + "byteOffset": 3112272, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8750": { + "bufferView": "bufferView_18315", + "byteOffset": 387928, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8752": { + "bufferView": "bufferView_18316", + "byteOffset": 3114216, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.438912, + 0.146304 + ], + "min": [ + 0.048768, + 0.292608, + 0.097536 + ], + "type": 35665 + }, + "accessor_8754": { + "bufferView": "bufferView_18316", + "byteOffset": 3116160, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_876": { + "bufferView": "bufferView_18315", + "byteOffset": 385624, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8770": { + "bufferView": "bufferView_18315", + "byteOffset": 388504, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8772": { + "bufferView": "bufferView_18316", + "byteOffset": 3118104, + "byteStride": 12, + "count": 162, + "max": [ + 0.292608, + 0.170688, + 0.048768 + ], + "min": [ + 0.195072, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_8774": { + "bufferView": "bufferView_18316", + "byteOffset": 3120048, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_878": { + "bufferView": "bufferView_18316", + "byteOffset": 3098760, + "byteStride": 12, + "count": 320, + "max": [ + 2.63347, + 0.195224, + 0.341492 + ], + "min": [ + 2.48717, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_8790": { + "bufferView": "bufferView_18315", + "byteOffset": 389080, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8792": { + "bufferView": "bufferView_18316", + "byteOffset": 3121992, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.195072, + 0.146304 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8794": { + "bufferView": "bufferView_18316", + "byteOffset": 3123936, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_880": { + "bufferView": "bufferView_18316", + "byteOffset": 3102600, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8810": { + "bufferView": "bufferView_18315", + "byteOffset": 389656, + "byteStride": 0, + "count": 276, + "type": 5123 + }, + "accessor_8812": { + "bufferView": "bufferView_18316", + "byteOffset": 3125880, + "byteStride": 12, + "count": 146, + "max": [ + 0.48768, + 0.48768, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8814": { + "bufferView": "bufferView_18316", + "byteOffset": 3127632, + "byteStride": 12, + "count": 146, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_8830": { + "bufferView": "bufferView_18315", + "byteOffset": 390208, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8832": { + "bufferView": "bufferView_18316", + "byteOffset": 3129384, + "byteStride": 12, + "count": 162, + "max": [ + 0.170688, + 0.292608, + 0.048768 + ], + "min": [ + 0.073152, + 0.195072, + 0 + ], + "type": 35665 + }, + "accessor_8834": { + "bufferView": "bufferView_18316", + "byteOffset": 3131328, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8850": { + "bufferView": "bufferView_18315", + "byteOffset": 390784, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8852": { + "bufferView": "bufferView_18316", + "byteOffset": 3133272, + "byteStride": 12, + "count": 162, + "max": [ + 0.438912, + 0.195072, + 0.146304 + ], + "min": [ + 0.292608, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8854": { + "bufferView": "bufferView_18316", + "byteOffset": 3135216, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8870": { + "bufferView": "bufferView_18315", + "byteOffset": 391360, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8872": { + "bufferView": "bufferView_18316", + "byteOffset": 3137160, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.438912, + 0.146304 + ], + "min": [ + 0.048768, + 0.292608, + 0.097536 + ], + "type": 35665 + }, + "accessor_8874": { + "bufferView": "bufferView_18316", + "byteOffset": 3139104, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8890": { + "bufferView": "bufferView_18315", + "byteOffset": 391936, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8892": { + "bufferView": "bufferView_18316", + "byteOffset": 3141048, + "byteStride": 12, + "count": 162, + "max": [ + 0.292608, + 0.170688, + 0.048768 + ], + "min": [ + 0.195072, + 0.073152, + 0 + ], + "type": 35665 + }, + "accessor_8894": { + "bufferView": "bufferView_18316", + "byteOffset": 3142992, + "byteStride": 12, + "count": 162, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_8910": { + "bufferView": "bufferView_18315", + "byteOffset": 392968, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_8912": { + "bufferView": "bufferView_18316", + "byteOffset": 3149928, + "byteStride": 12, + "count": 162, + "max": [ + 0.195072, + 0.195072, + 0.146304 + ], + "min": [ + 0.048768, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_8914": { + "bufferView": "bufferView_18316", + "byteOffset": 3151872, + "byteStride": 12, + "count": 162, + "max": [ + 0.976187, + 0.976187, + 1 + ], + "min": [ + -0.976187, + -0.976187, + -1 + ], + "type": 35665 + }, + "accessor_8930": { + "bufferView": "bufferView_18315", + "byteOffset": 393544, + "byteStride": 0, + "count": 192, + "type": 5123 + }, + "accessor_8932": { + "bufferView": "bufferView_18316", + "byteOffset": 3153816, + "byteStride": 12, + "count": 188, + "max": [ + 0.568635, + 0.243962, + 0.375392 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_8934": { + "bufferView": "bufferView_18316", + "byteOffset": 3156072, + "byteStride": 12, + "count": 188, + "max": [ + 0.866082, + 1, + 0.965935 + ], + "min": [ + -0.866082, + -1, + -0.965935 + ], + "type": 35665 + }, + "accessor_8950": { + "bufferView": "bufferView_18315", + "byteOffset": 393928, + "byteStride": 0, + "count": 1092, + "type": 5123 + }, + "accessor_8952": { + "bufferView": "bufferView_18316", + "byteOffset": 3158328, + "byteStride": 12, + "count": 984, + "max": [ + 0.60073, + 0.244145, + 0.395478 + ], + "min": [ + 0, + 6.096e-05, + 9.144e-05 + ], + "type": 35665 + }, + "accessor_8954": { + "bufferView": "bufferView_18316", + "byteOffset": 3170136, + "byteStride": 12, + "count": 984, + "max": [ + 0.997841, + 1, + 0.997841 + ], + "min": [ + -0.997841, + -1, + -0.997841 + ], + "type": 35665 + }, + "accessor_896": { + "bufferView": "bufferView_18315", + "byteOffset": 392512, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_8970": { + "bufferView": "bufferView_18315", + "byteOffset": 396112, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_8972": { + "bufferView": "bufferView_18316", + "byteOffset": 3181944, + "byteStride": 12, + "count": 568, + "max": [ + 0.371673, + 0.195224, + 0.346253 + ], + "min": [ + 0.220584, + 0.0489204, + 0.230856 + ], + "type": 35665 + }, + "accessor_8974": { + "bufferView": "bufferView_18316", + "byteOffset": 3188760, + "byteStride": 12, + "count": 568, + "max": [ + 0.84964, + 0.981062, + 0.866805 + ], + "min": [ + -0.84964, + -0.981062, + -0.866805 + ], + "type": 35665 + }, + "accessor_898": { + "bufferView": "bufferView_18316", + "byteOffset": 3144936, + "byteStride": 12, + "count": 208, + "max": [ + 1.80445, + 0.195177, + 0.243923 + ], + "min": [ + 1.60929, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_8984": { + "bufferView": "bufferView_18315", + "byteOffset": 397264, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_8986": { + "bufferView": "bufferView_18316", + "byteOffset": 3195576, + "byteStride": 12, + "count": 2, + "max": [ + 0.537393, + 0.0006096, + 0.169896 + ], + "min": [ + 0.452933, + 0.00054864, + 0.121128 + ], + "type": 35665 + }, + "accessor_8996": { + "bufferView": "bufferView_18315", + "byteOffset": 397268, + "byteStride": 0, + "count": 10, + "type": 5123 + }, + "accessor_8998": { + "bufferView": "bufferView_18316", + "byteOffset": 3195600, + "byteStride": 12, + "count": 5, + "max": [ + 0.552023, + 0.243931, + 0.243901 + ], + "min": [ + 0.129692, + 0, + 0 + ], + "type": 35665 + }, + "accessor_900": { + "bufferView": "bufferView_18316", + "byteOffset": 3147432, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_9008": { + "bufferView": "bufferView_18315", + "byteOffset": 397288, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9010": { + "bufferView": "bufferView_18316", + "byteOffset": 3195660, + "byteStride": 12, + "count": 2, + "max": [ + 0.60073, + 0.24445, + 0.084582 + ], + "min": [ + 0.600608, + 0.00036576, + 0.084582 + ], + "type": 35665 + }, + "accessor_9026": { + "bufferView": "bufferView_18315", + "byteOffset": 397292, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9028": { + "bufferView": "bufferView_18316", + "byteOffset": 3195684, + "byteStride": 12, + "count": 288, + "max": [ + 0.242133, + 1.41433, + 0.224211 + ], + "min": [ + 0.0910438, + 1.26803, + 0.108814 + ], + "type": 35665 + }, + "accessor_9030": { + "bufferView": "bufferView_18316", + "byteOffset": 3199140, + "byteStride": 12, + "count": 288, + "max": [ + 0.849584, + 0.980963, + 0.866274 + ], + "min": [ + -0.849584, + -0.980963, + -0.866274 + ], + "type": 35665 + }, + "accessor_9046": { + "bufferView": "bufferView_18315", + "byteOffset": 397868, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9048": { + "bufferView": "bufferView_18316", + "byteOffset": 3202596, + "byteStride": 12, + "count": 280, + "max": [ + 0.242255, + 1.17049, + 0.224211 + ], + "min": [ + 0.0911657, + 1.02419, + 0.108814 + ], + "type": 35665 + }, + "accessor_9050": { + "bufferView": "bufferView_18316", + "byteOffset": 3205956, + "byteStride": 12, + "count": 280, + "max": [ + 0.849613, + 0.980928, + 0.866315 + ], + "min": [ + -0.849613, + -0.980928, + -0.866315 + ], + "type": 35665 + }, + "accessor_9066": { + "bufferView": "bufferView_18315", + "byteOffset": 398444, + "byteStride": 0, + "count": 204, + "type": 5123 + }, + "accessor_9068": { + "bufferView": "bufferView_18316", + "byteOffset": 3209316, + "byteStride": 12, + "count": 156, + "max": [ + 0.260665, + 1.46313, + 0.20635 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9070": { + "bufferView": "bufferView_18316", + "byteOffset": 3211188, + "byteStride": 12, + "count": 156, + "max": [ + 0.866081, + 1, + 0.86617 + ], + "min": [ + -0.866081, + -1, + -0.86617 + ], + "type": 35665 + }, + "accessor_9086": { + "bufferView": "bufferView_18315", + "byteOffset": 399428, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9088": { + "bufferView": "bufferView_18316", + "byteOffset": 3218628, + "byteStride": 12, + "count": 284, + "max": [ + 0.242773, + 0.195133, + 0.224211 + ], + "min": [ + 0.0916838, + 0.048829, + 0.108814 + ], + "type": 35665 + }, + "accessor_9090": { + "bufferView": "bufferView_18316", + "byteOffset": 3222036, + "byteStride": 12, + "count": 284, + "max": [ + 0.849613, + 0.980928, + 0.866315 + ], + "min": [ + -0.849613, + -0.980928, + -0.866315 + ], + "type": 35665 + }, + "accessor_9106": { + "bufferView": "bufferView_18315", + "byteOffset": 400004, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9108": { + "bufferView": "bufferView_18316", + "byteOffset": 3225444, + "byteStride": 12, + "count": 284, + "max": [ + 0.242529, + 0.682813, + 0.224211 + ], + "min": [ + 0.09144, + 0.536509, + 0.108814 + ], + "type": 35665 + }, + "accessor_9110": { + "bufferView": "bufferView_18316", + "byteOffset": 3228852, + "byteStride": 12, + "count": 284, + "max": [ + 0.849584, + 0.980963, + 0.866274 + ], + "min": [ + -0.849584, + -0.980963, + -0.866274 + ], + "type": 35665 + }, + "accessor_9126": { + "bufferView": "bufferView_18315", + "byteOffset": 400580, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9128": { + "bufferView": "bufferView_18316", + "byteOffset": 3232260, + "byteStride": 12, + "count": 288, + "max": [ + 0.242651, + 0.438973, + 0.224211 + ], + "min": [ + 0.0915619, + 0.292669, + 0.108814 + ], + "type": 35665 + }, + "accessor_9130": { + "bufferView": "bufferView_18316", + "byteOffset": 3235716, + "byteStride": 12, + "count": 288, + "max": [ + 0.849584, + 0.980963, + 0.866274 + ], + "min": [ + -0.849584, + -0.980963, + -0.866274 + ], + "type": 35665 + }, + "accessor_9146": { + "bufferView": "bufferView_18315", + "byteOffset": 401156, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9148": { + "bufferView": "bufferView_18316", + "byteOffset": 3239172, + "byteStride": 12, + "count": 284, + "max": [ + 0.242407, + 0.926653, + 0.224211 + ], + "min": [ + 0.0913181, + 0.780349, + 0.108814 + ], + "type": 35665 + }, + "accessor_9150": { + "bufferView": "bufferView_18316", + "byteOffset": 3242580, + "byteStride": 12, + "count": 284, + "max": [ + 0.849736, + 0.980928, + 0.866315 + ], + "min": [ + -0.849736, + -0.980928, + -0.866315 + ], + "type": 35665 + }, + "accessor_916": { + "bufferView": "bufferView_18315", + "byteOffset": 398852, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9166": { + "bufferView": "bufferView_18315", + "byteOffset": 401732, + "byteStride": 0, + "count": 192, + "type": 5123 + }, + "accessor_9168": { + "bufferView": "bufferView_18316", + "byteOffset": 3245988, + "byteStride": 12, + "count": 188, + "max": [ + 0.568635, + 0.243962, + 0.375392 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9170": { + "bufferView": "bufferView_18316", + "byteOffset": 3248244, + "byteStride": 12, + "count": 188, + "max": [ + 0.866082, + 1, + 0.965935 + ], + "min": [ + -0.866082, + -1, + -0.965935 + ], + "type": 35665 + }, + "accessor_918": { + "bufferView": "bufferView_18316", + "byteOffset": 3213060, + "byteStride": 12, + "count": 232, + "max": [ + 1.51181, + 0.170683, + 0.073218 + ], + "min": [ + 1.41425, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_9186": { + "bufferView": "bufferView_18315", + "byteOffset": 402116, + "byteStride": 0, + "count": 1092, + "type": 5123 + }, + "accessor_9188": { + "bufferView": "bufferView_18316", + "byteOffset": 3250500, + "byteStride": 12, + "count": 984, + "max": [ + 0.60073, + 0.244145, + 0.395478 + ], + "min": [ + 0, + 6.096e-05, + 9.144e-05 + ], + "type": 35665 + }, + "accessor_9190": { + "bufferView": "bufferView_18316", + "byteOffset": 3262308, + "byteStride": 12, + "count": 984, + "max": [ + 0.997841, + 1, + 0.997841 + ], + "min": [ + -0.997841, + -1, + -0.997841 + ], + "type": 35665 + }, + "accessor_920": { + "bufferView": "bufferView_18316", + "byteOffset": 3215844, + "byteStride": 12, + "count": 232, + "max": [ + 0.981, + 0.981, + 1 + ], + "min": [ + -0.981, + -0.981, + -1 + ], + "type": 35665 + }, + "accessor_9206": { + "bufferView": "bufferView_18315", + "byteOffset": 404300, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9208": { + "bufferView": "bufferView_18316", + "byteOffset": 3274116, + "byteStride": 12, + "count": 568, + "max": [ + 0.371673, + 0.195224, + 0.346253 + ], + "min": [ + 0.220584, + 0.0489204, + 0.230856 + ], + "type": 35665 + }, + "accessor_9210": { + "bufferView": "bufferView_18316", + "byteOffset": 3280932, + "byteStride": 12, + "count": 568, + "max": [ + 0.84964, + 0.981062, + 0.866805 + ], + "min": [ + -0.84964, + -0.981062, + -0.866805 + ], + "type": 35665 + }, + "accessor_9220": { + "bufferView": "bufferView_18315", + "byteOffset": 405452, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9222": { + "bufferView": "bufferView_18316", + "byteOffset": 3287748, + "byteStride": 12, + "count": 2, + "max": [ + 0.537393, + 0.0006096, + 0.169896 + ], + "min": [ + 0.452933, + 0.00054864, + 0.121128 + ], + "type": 35665 + }, + "accessor_9232": { + "bufferView": "bufferView_18315", + "byteOffset": 405456, + "byteStride": 0, + "count": 10, + "type": 5123 + }, + "accessor_9234": { + "bufferView": "bufferView_18316", + "byteOffset": 3287772, + "byteStride": 12, + "count": 5, + "max": [ + 0.552023, + 0.243931, + 0.243901 + ], + "min": [ + 0.129692, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9244": { + "bufferView": "bufferView_18315", + "byteOffset": 405476, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9246": { + "bufferView": "bufferView_18316", + "byteOffset": 3287832, + "byteStride": 12, + "count": 2, + "max": [ + 0.60073, + 0.24445, + 0.084582 + ], + "min": [ + 0.600608, + 0.00036576, + 0.084582 + ], + "type": 35665 + }, + "accessor_9262": { + "bufferView": "bufferView_18315", + "byteOffset": 405480, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9264": { + "bufferView": "bufferView_18316", + "byteOffset": 3287856, + "byteStride": 12, + "count": 344, + "max": [ + 0.438942, + 0.195072, + 0.146304 + ], + "min": [ + 0.292638, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_9266": { + "bufferView": "bufferView_18316", + "byteOffset": 3291984, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_9282": { + "bufferView": "bufferView_18315", + "byteOffset": 407088, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9284": { + "bufferView": "bufferView_18316", + "byteOffset": 3301104, + "byteStride": 12, + "count": 344, + "max": [ + 0.195102, + 0.195072, + 0.146304 + ], + "min": [ + 0.0487985, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_9286": { + "bufferView": "bufferView_18316", + "byteOffset": 3305232, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_9302": { + "bufferView": "bufferView_18315", + "byteOffset": 408816, + "byteStride": 0, + "count": 1200, + "type": 5123 + }, + "accessor_9304": { + "bufferView": "bufferView_18316", + "byteOffset": 3314928, + "byteStride": 12, + "count": 708, + "max": [ + 0.658398, + 0.243779, + 0.097536 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9306": { + "bufferView": "bufferView_18316", + "byteOffset": 3323424, + "byteStride": 12, + "count": 708, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_9322": { + "bufferView": "bufferView_18315", + "byteOffset": 411216, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_9324": { + "bufferView": "bufferView_18316", + "byteOffset": 3331920, + "byteStride": 12, + "count": 12, + "max": [ + 6.096e-05, + 0.24387, + 0.097536 + ], + "min": [ + 0, + 9.144e-05, + 0 + ], + "type": 35665 + }, + "accessor_9326": { + "bufferView": "bufferView_18316", + "byteOffset": 3332064, + "byteStride": 12, + "count": 12, + "max": [ + 1, + 0.0002501, + 0 + ], + "min": [ + -1, + -0.0002501, + 0 + ], + "type": 35665 + }, + "accessor_9336": { + "bufferView": "bufferView_18315", + "byteOffset": 411240, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_9338": { + "bufferView": "bufferView_18316", + "byteOffset": 3332208, + "byteStride": 12, + "count": 3, + "max": [ + 0.24384, + 0.244328, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.243779, + 0.097536 + ], + "type": 35665 + }, + "accessor_9354": { + "bufferView": "bufferView_18315", + "byteOffset": 411248, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9356": { + "bufferView": "bufferView_18316", + "byteOffset": 3332244, + "byteStride": 12, + "count": 344, + "max": [ + 0.438942, + 0.195072, + 0.146304 + ], + "min": [ + 0.292638, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_9358": { + "bufferView": "bufferView_18316", + "byteOffset": 3336372, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_936": { + "bufferView": "bufferView_18315", + "byteOffset": 406632, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_9374": { + "bufferView": "bufferView_18315", + "byteOffset": 412400, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9376": { + "bufferView": "bufferView_18316", + "byteOffset": 3340500, + "byteStride": 12, + "count": 344, + "max": [ + 0.195102, + 0.195072, + 0.146304 + ], + "min": [ + 0.0487985, + 0.048768, + 0.097536 + ], + "type": 35665 + }, + "accessor_9378": { + "bufferView": "bufferView_18316", + "byteOffset": 3344628, + "byteStride": 12, + "count": 344, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_938": { + "bufferView": "bufferView_18316", + "byteOffset": 3296112, + "byteStride": 12, + "count": 208, + "max": [ + 2.04829, + 0.195177, + 0.243923 + ], + "min": [ + 1.85313, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_9394": { + "bufferView": "bufferView_18315", + "byteOffset": 413552, + "byteStride": 0, + "count": 1200, + "type": 5123 + }, + "accessor_9396": { + "bufferView": "bufferView_18316", + "byteOffset": 3348756, + "byteStride": 12, + "count": 708, + "max": [ + 0.658398, + 0.243779, + 0.097536 + ], + "min": [ + 9.144e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9398": { + "bufferView": "bufferView_18316", + "byteOffset": 3357252, + "byteStride": 12, + "count": 708, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_940": { + "bufferView": "bufferView_18316", + "byteOffset": 3298608, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_9414": { + "bufferView": "bufferView_18315", + "byteOffset": 415952, + "byteStride": 0, + "count": 12, + "type": 5123 + }, + "accessor_9416": { + "bufferView": "bufferView_18316", + "byteOffset": 3365748, + "byteStride": 12, + "count": 12, + "max": [ + 6.096e-05, + 0.24387, + 0.097536 + ], + "min": [ + 0, + 9.144e-05, + 0 + ], + "type": 35665 + }, + "accessor_9418": { + "bufferView": "bufferView_18316", + "byteOffset": 3365892, + "byteStride": 12, + "count": 12, + "max": [ + 1, + 0.0002501, + 0 + ], + "min": [ + -1, + -0.0002501, + 0 + ], + "type": 35665 + }, + "accessor_9428": { + "bufferView": "bufferView_18315", + "byteOffset": 415976, + "byteStride": 0, + "count": 4, + "type": 5123 + }, + "accessor_9430": { + "bufferView": "bufferView_18316", + "byteOffset": 3366036, + "byteStride": 12, + "count": 3, + "max": [ + 0.24384, + 0.244328, + 0.097536 + ], + "min": [ + 6.096e-05, + 0.243779, + 0.097536 + ], + "type": 35665 + }, + "accessor_9458": { + "bufferView": "bufferView_18315", + "byteOffset": 415984, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9461": { + "bufferView": "bufferView_18315", + "byteOffset": 416272, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9463": { + "bufferView": "bufferView_18316", + "byteOffset": 3366072, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_9465": { + "bufferView": "bufferView_18316", + "byteOffset": 3368544, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_9493": { + "bufferView": "bufferView_18315", + "byteOffset": 417712, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9496": { + "bufferView": "bufferView_18315", + "byteOffset": 418288, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9498": { + "bufferView": "bufferView_18316", + "byteOffset": 3378696, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_9500": { + "bufferView": "bufferView_18316", + "byteOffset": 3383448, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_9528": { + "bufferView": "bufferView_18315", + "byteOffset": 418864, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9531": { + "bufferView": "bufferView_18315", + "byteOffset": 419152, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9533": { + "bufferView": "bufferView_18316", + "byteOffset": 3388200, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_9535": { + "bufferView": "bufferView_18316", + "byteOffset": 3390624, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_956": { + "bufferView": "bufferView_18315", + "byteOffset": 416560, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9563": { + "bufferView": "bufferView_18315", + "byteOffset": 419440, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9566": { + "bufferView": "bufferView_18315", + "byteOffset": 419728, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9568": { + "bufferView": "bufferView_18316", + "byteOffset": 3393048, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_9570": { + "bufferView": "bufferView_18316", + "byteOffset": 3395520, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_958": { + "bufferView": "bufferView_18316", + "byteOffset": 3371016, + "byteStride": 12, + "count": 320, + "max": [ + 0.682752, + 0.195224, + 0.341492 + ], + "min": [ + 0.536448, + 0.0489204, + 0.292724 + ], + "type": 35665 + }, + "accessor_9598": { + "bufferView": "bufferView_18315", + "byteOffset": 420016, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_96": { + "bufferView": "bufferView_18315", + "byteOffset": 408240, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_960": { + "bufferView": "bufferView_18316", + "byteOffset": 3374856, + "byteStride": 12, + "count": 320, + "max": [ + 0.986394, + 0.986394, + 1 + ], + "min": [ + -0.986394, + -0.986394, + -1 + ], + "type": 35665 + }, + "accessor_9601": { + "bufferView": "bufferView_18315", + "byteOffset": 420304, + "byteStride": 0, + "count": 144, + "type": 5123 + }, + "accessor_9603": { + "bufferView": "bufferView_18316", + "byteOffset": 3397992, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_9605": { + "bufferView": "bufferView_18316", + "byteOffset": 3400416, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_9633": { + "bufferView": "bufferView_18315", + "byteOffset": 420592, + "byteStride": 0, + "count": 84, + "type": 5123 + }, + "accessor_9636": { + "bufferView": "bufferView_18315", + "byteOffset": 420760, + "byteStride": 0, + "count": 84, + "type": 5123 + }, + "accessor_9638": { + "bufferView": "bufferView_18316", + "byteOffset": 3402840, + "byteStride": 12, + "count": 96, + "max": [ + 0.48765, + 0.487619, + 0.097536 + ], + "min": [ + 3.048e-05, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9640": { + "bufferView": "bufferView_18316", + "byteOffset": 3403992, + "byteStride": 12, + "count": 96, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_9650": { + "bufferView": "bufferView_18315", + "byteOffset": 420928, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9652": { + "bufferView": "bufferView_18316", + "byteOffset": 3405144, + "byteStride": 12, + "count": 2, + "max": [ + 0.417485, + 0.417454, + 0.097536 + ], + "min": [ + 0.314035, + 0.314005, + 0.097536 + ], + "type": 35665 + }, + "accessor_9662": { + "bufferView": "bufferView_18315", + "byteOffset": 420932, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9664": { + "bufferView": "bufferView_18316", + "byteOffset": 3405168, + "byteStride": 12, + "count": 2, + "max": [ + 0.173645, + 0.173614, + 0.097536 + ], + "min": [ + 0.0701954, + 0.070165, + 0.097536 + ], + "type": 35665 + }, + "accessor_9674": { + "bufferView": "bufferView_18315", + "byteOffset": 420936, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9676": { + "bufferView": "bufferView_18316", + "byteOffset": 3405192, + "byteStride": 12, + "count": 2, + "max": [ + 0, + 0.414498, + 0.097536 + ], + "min": [ + 0, + 0.316961, + 0.097536 + ], + "type": 35665 + }, + "accessor_9686": { + "bufferView": "bufferView_18315", + "byteOffset": 420940, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9688": { + "bufferView": "bufferView_18316", + "byteOffset": 3405216, + "byteStride": 12, + "count": 2, + "max": [ + 0.312816, + 0.312786, + 0.048768 + ], + "min": [ + 0.295565, + 0.295534, + 0.048768 + ], + "type": 35665 + }, + "accessor_9698": { + "bufferView": "bufferView_18315", + "byteOffset": 434960, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9700": { + "bufferView": "bufferView_18316", + "byteOffset": 3540096, + "byteStride": 12, + "count": 2, + "max": [ + 0.192115, + 0.192085, + 0.048768 + ], + "min": [ + 0.174864, + 0.174833, + 0.048768 + ], + "type": 35665 + }, + "accessor_9716": { + "bufferView": "bufferView_18315", + "byteOffset": 434964, + "byteStride": 0, + "count": 168, + "type": 5123 + }, + "accessor_9718": { + "bufferView": "bufferView_18316", + "byteOffset": 3540120, + "byteStride": 12, + "count": 112, + "max": [ + 0.244145, + 0.97539, + 0.097536 + ], + "min": [ + 0, + 0, + 0 + ], + "type": 35665 + }, + "accessor_9720": { + "bufferView": "bufferView_18316", + "byteOffset": 3541464, + "byteStride": 12, + "count": 112, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_9736": { + "bufferView": "bufferView_18315", + "byteOffset": 435756, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9738": { + "bufferView": "bufferView_18316", + "byteOffset": 3547800, + "byteStride": 12, + "count": 186, + "max": [ + 0.195102, + 0.926623, + 0.146304 + ], + "min": [ + 0.0487985, + 0.780318, + 0.097536 + ], + "type": 35665 + }, + "accessor_9740": { + "bufferView": "bufferView_18316", + "byteOffset": 3550032, + "byteStride": 12, + "count": 186, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_9756": { + "bufferView": "bufferView_18315", + "byteOffset": 436332, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9758": { + "bufferView": "bufferView_18316", + "byteOffset": 3552264, + "byteStride": 12, + "count": 198, + "max": [ + 0.195194, + 0.682782, + 0.146304 + ], + "min": [ + 0.0488899, + 0.536478, + 0.097536 + ], + "type": 35665 + }, + "accessor_976": { + "bufferView": "bufferView_18315", + "byteOffset": 435300, + "byteStride": 0, + "count": 228, + "type": 5123 + }, + "accessor_9760": { + "bufferView": "bufferView_18316", + "byteOffset": 3554640, + "byteStride": 12, + "count": 198, + "max": [ + 0.980948, + 0.980948, + 1 + ], + "min": [ + -0.980948, + -0.980948, + -1 + ], + "type": 35665 + }, + "accessor_9776": { + "bufferView": "bufferView_18315", + "byteOffset": 436908, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9778": { + "bufferView": "bufferView_18316", + "byteOffset": 3557016, + "byteStride": 12, + "count": 205, + "max": [ + 0.195346, + 0.195102, + 0.146304 + ], + "min": [ + 0.0490423, + 0.0487985, + 0.097536 + ], + "type": 35665 + }, + "accessor_978": { + "bufferView": "bufferView_18316", + "byteOffset": 3542808, + "byteStride": 12, + "count": 208, + "max": [ + 1.31677, + 0.195177, + 0.243923 + ], + "min": [ + 1.12161, + 0.0487375, + 0.073166 + ], + "type": 35665 + }, + "accessor_9780": { + "bufferView": "bufferView_18316", + "byteOffset": 3559476, + "byteStride": 12, + "count": 205, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_9796": { + "bufferView": "bufferView_18315", + "byteOffset": 437484, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9798": { + "bufferView": "bufferView_18316", + "byteOffset": 3561936, + "byteStride": 12, + "count": 178, + "max": [ + 0.195285, + 0.438942, + 0.146304 + ], + "min": [ + 0.0489814, + 0.292638, + 0.097536 + ], + "type": 35665 + }, + "accessor_98": { + "bufferView": "bufferView_18316", + "byteOffset": 3309360, + "byteStride": 12, + "count": 232, + "max": [ + 0.292614, + 0.170683, + 0.073218 + ], + "min": [ + 0.195048, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_980": { + "bufferView": "bufferView_18316", + "byteOffset": 3545304, + "byteStride": 12, + "count": 208, + "max": [ + 1, + 1, + 0.980887 + ], + "min": [ + -1, + -1, + -0.980887 + ], + "type": 35665 + }, + "accessor_9800": { + "bufferView": "bufferView_18316", + "byteOffset": 3564072, + "byteStride": 12, + "count": 178, + "max": [ + 0.980948, + 0.980908, + 1 + ], + "min": [ + -0.980948, + -0.980908, + -1 + ], + "type": 35665 + }, + "accessor_9816": { + "bufferView": "bufferView_18315", + "byteOffset": 438060, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9818": { + "bufferView": "bufferView_18316", + "byteOffset": 3566208, + "byteStride": 12, + "count": 226, + "max": [ + 0.17084, + 0.536478, + 0.048768 + ], + "min": [ + 0.0733044, + 0.438942, + 0 + ], + "type": 35665 + }, + "accessor_9820": { + "bufferView": "bufferView_18316", + "byteOffset": 3568920, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_9836": { + "bufferView": "bufferView_18315", + "byteOffset": 438636, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9838": { + "bufferView": "bufferView_18316", + "byteOffset": 3571632, + "byteStride": 12, + "count": 226, + "max": [ + 0.170901, + 0.292638, + 0.048768 + ], + "min": [ + 0.0733654, + 0.195102, + 0 + ], + "type": 35665 + }, + "accessor_9840": { + "bufferView": "bufferView_18316", + "byteOffset": 3574344, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_9856": { + "bufferView": "bufferView_18315", + "byteOffset": 439212, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9858": { + "bufferView": "bufferView_18316", + "byteOffset": 3577056, + "byteStride": 12, + "count": 226, + "max": [ + 0.170749, + 0.780318, + 0.048768 + ], + "min": [ + 0.073213, + 0.682782, + 0 + ], + "type": 35665 + }, + "accessor_9860": { + "bufferView": "bufferView_18316", + "byteOffset": 3579768, + "byteStride": 12, + "count": 226, + "max": [ + 0.98101, + 0.98107, + 1 + ], + "min": [ + -0.98101, + -0.98107, + -1 + ], + "type": 35665 + }, + "accessor_9870": { + "bufferView": "bufferView_18315", + "byteOffset": 439788, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9872": { + "bufferView": "bufferView_18316", + "byteOffset": 3582480, + "byteStride": 12, + "count": 2, + "max": [ + 0.243779, + 0.975451, + 0 + ], + "min": [ + 0.243779, + 0.97539, + 0 + ], + "type": 35665 + }, + "accessor_9882": { + "bufferView": "bufferView_18315", + "byteOffset": 439792, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_9884": { + "bufferView": "bufferView_18316", + "byteOffset": 3582504, + "byteStride": 12, + "count": 2, + "max": [ + 0.243749, + 0.24387, + 0 + ], + "min": [ + 0.243749, + 3.048e-05, + 0 + ], + "type": 35665 + }, + "accessor_9900": { + "bufferView": "bufferView_18315", + "byteOffset": 439796, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9902": { + "bufferView": "bufferView_18316", + "byteOffset": 3582528, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.438881, + 0.146304 + ], + "min": [ + 0.292608, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_9904": { + "bufferView": "bufferView_18316", + "byteOffset": 3585000, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_9920": { + "bufferView": "bufferView_18315", + "byteOffset": 440372, + "byteStride": 0, + "count": 576, + "type": 5123 + }, + "accessor_9922": { + "bufferView": "bufferView_18316", + "byteOffset": 3587472, + "byteStride": 12, + "count": 396, + "max": [ + 0.341376, + 0.341346, + 0.048768 + ], + "min": [ + 0.146304, + 0.146274, + 0 + ], + "type": 35665 + }, + "accessor_9924": { + "bufferView": "bufferView_18316", + "byteOffset": 3592224, + "byteStride": 12, + "count": 396, + "max": [ + 0.980734, + 0.980734, + 1 + ], + "min": [ + -0.980734, + -0.980734, + -1 + ], + "type": 35665 + }, + "accessor_9940": { + "bufferView": "bufferView_18315", + "byteOffset": 442100, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9942": { + "bufferView": "bufferView_18316", + "byteOffset": 3602544, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.438881, + 0.146304 + ], + "min": [ + 0.048768, + 0.292578, + 0.097536 + ], + "type": 35665 + }, + "accessor_9944": { + "bufferView": "bufferView_18316", + "byteOffset": 3604968, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_996": { + "bufferView": "bufferView_18315", + "byteOffset": 441524, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9960": { + "bufferView": "bufferView_18315", + "byteOffset": 442676, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9962": { + "bufferView": "bufferView_18316", + "byteOffset": 3607392, + "byteStride": 12, + "count": 206, + "max": [ + 0.438912, + 0.195042, + 0.146304 + ], + "min": [ + 0.292608, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_9964": { + "bufferView": "bufferView_18316", + "byteOffset": 3609864, + "byteStride": 12, + "count": 206, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + }, + "accessor_998": { + "bufferView": "bufferView_18316", + "byteOffset": 3596976, + "byteStride": 12, + "count": 232, + "max": [ + 1.75565, + 0.170683, + 0.073218 + ], + "min": [ + 1.65809, + 0.0731279, + 0 + ], + "type": 35665 + }, + "accessor_9980": { + "bufferView": "bufferView_18315", + "byteOffset": 443252, + "byteStride": 0, + "count": 288, + "type": 5123 + }, + "accessor_9982": { + "bufferView": "bufferView_18316", + "byteOffset": 3612336, + "byteStride": 12, + "count": 202, + "max": [ + 0.195072, + 0.195042, + 0.146304 + ], + "min": [ + 0.048768, + 0.0487375, + 0.097536 + ], + "type": 35665 + }, + "accessor_9984": { + "bufferView": "bufferView_18316", + "byteOffset": 3614760, + "byteStride": 12, + "count": 202, + "max": [ + 0.980704, + 0.980704, + 1 + ], + "min": [ + -0.980704, + -0.980704, + -1 + ], + "type": 35665 + } + }, + "animations": {}, + "asset": { + "generator": "collada2gltf@506d909430e3f033e2a84c31b1d41270f7c6eb67", + "premultipliedAlpha": true, + "profile": "WebGL 1.0.2", + "version": 0.7 + }, + "bufferViews": { + "bufferView_18315": { + "buffer": "Rambler", + "byteLength": 1199656, + "byteOffset": 0, + "target": 34963 + }, + "bufferView_18316": { + "buffer": "Rambler", + "byteLength": 10354608, + "byteOffset": 1199656, + "target": 34962 + } + }, + "buffers": { + "Rambler": { + "byteLength": 11554264, + "type": "arraybuffer", + "uri": "Rambler.bin" + } + }, + "materials": { + "ID109": { + "instanceTechnique": { + "technique": "technique1", + "values": {} + }, + "name": "edge_color198198198255" + }, + "ID1411": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 1, + 1, + 0.196078, + 1 + ] + } + }, + "name": "Color_E02" + }, + "ID151": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 0.227451, + 0.227451, + 0.227451, + 1 + ] + } + }, + "name": "Color_007" + }, + "ID1594": { + "instanceTechnique": { + "technique": "technique1", + "values": {} + }, + "name": "edge_color25525550255" + }, + "ID1683": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 0.117647, + 0.117647, + 0.117647, + 1 + ] + } + }, + "name": "Color_008" + }, + "ID1772": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 1, + 1, + 1, + 1 + ] + } + }, + "name": "material" + }, + "ID1777": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 1, + 1, + 1, + 1 + ] + } + }, + "name": "material_0" + }, + "ID2985": { + "instanceTechnique": { + "technique": "technique1", + "values": {} + }, + "name": "edge_color000255" + }, + "ID363": { + "instanceTechnique": { + "technique": "technique1", + "values": {} + }, + "name": "edge_color585858255" + }, + "ID5": { + "instanceTechnique": { + "technique": "technique2", + "values": { + "diffuse": [ + 0.776471, + 0.776471, + 0.776471, + 1 + ] + } + }, + "name": "Color_1" + } + }, + "meshes": { + "ID1005": { + "name": "ID1005", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3264", + "POSITION": "accessor_3262" + }, + "indices": "accessor_3260", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID101": { + "name": "ID101", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_340", + "POSITION": "accessor_338" + }, + "indices": "accessor_336", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1011": { + "name": "ID1011", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3276" + }, + "indices": "accessor_3274", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1015": { + "name": "ID1015", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3288" + }, + "indices": "accessor_3286", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1019": { + "name": "ID1019", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3300" + }, + "indices": "accessor_3298", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1023": { + "name": "ID1023", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3312" + }, + "indices": "accessor_3310", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1027": { + "name": "ID1027", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3324" + }, + "indices": "accessor_3322", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1032": { + "name": "ID1032", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3344", + "POSITION": "accessor_3342" + }, + "indices": "accessor_3340", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1038": { + "name": "ID1038", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3364", + "POSITION": "accessor_3362" + }, + "indices": "accessor_3360", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1044": { + "name": "ID1044", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3384", + "POSITION": "accessor_3382" + }, + "indices": "accessor_3380", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1050": { + "name": "ID1050", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3404", + "POSITION": "accessor_3402" + }, + "indices": "accessor_3400", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1056": { + "name": "ID1056", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3424", + "POSITION": "accessor_3422" + }, + "indices": "accessor_3420", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1062": { + "name": "ID1062", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3444", + "POSITION": "accessor_3442" + }, + "indices": "accessor_3440", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1068": { + "name": "ID1068", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3464", + "POSITION": "accessor_3462" + }, + "indices": "accessor_3460", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID107": { + "name": "ID107", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_352" + }, + "indices": "accessor_350", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1074": { + "name": "ID1074", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3484", + "POSITION": "accessor_3482" + }, + "indices": "accessor_3480", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1080": { + "name": "ID1080", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3504", + "POSITION": "accessor_3502" + }, + "indices": "accessor_3500", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1086": { + "name": "ID1086", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3524", + "POSITION": "accessor_3522" + }, + "indices": "accessor_3520", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1092": { + "name": "ID1092", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3544", + "POSITION": "accessor_3542" + }, + "indices": "accessor_3540", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1098": { + "name": "ID1098", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3564", + "POSITION": "accessor_3562" + }, + "indices": "accessor_3560", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID11": { + "name": "ID11", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_40", + "POSITION": "accessor_38" + }, + "indices": "accessor_36", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1104": { + "name": "ID1104", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3584", + "POSITION": "accessor_3582" + }, + "indices": "accessor_3580", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1110": { + "name": "ID1110", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3604", + "POSITION": "accessor_3602" + }, + "indices": "accessor_3600", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1116": { + "name": "ID1116", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3624", + "POSITION": "accessor_3622" + }, + "indices": "accessor_3620", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1122": { + "name": "ID1122", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3644", + "POSITION": "accessor_3642" + }, + "indices": "accessor_3640", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1128": { + "name": "ID1128", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3664", + "POSITION": "accessor_3662" + }, + "indices": "accessor_3660", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID113": { + "name": "ID113", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_364" + }, + "indices": "accessor_362", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1134": { + "name": "ID1134", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3684", + "POSITION": "accessor_3682" + }, + "indices": "accessor_3680", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1141": { + "name": "ID1141", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3704", + "POSITION": "accessor_3702" + }, + "indices": "accessor_3700", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1147": { + "name": "ID1147", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3724", + "POSITION": "accessor_3722" + }, + "indices": "accessor_3720", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1153": { + "name": "ID1153", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3744", + "POSITION": "accessor_3742" + }, + "indices": "accessor_3740", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1159": { + "name": "ID1159", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3764", + "POSITION": "accessor_3762" + }, + "indices": "accessor_3760", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1165": { + "name": "ID1165", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3784", + "POSITION": "accessor_3782" + }, + "indices": "accessor_3780", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID117": { + "name": "ID117", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_376" + }, + "indices": "accessor_374", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1171": { + "name": "ID1171", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3804", + "POSITION": "accessor_3802" + }, + "indices": "accessor_3800", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1177": { + "name": "ID1177", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3824", + "POSITION": "accessor_3822" + }, + "indices": "accessor_3820", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1183": { + "name": "ID1183", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3844", + "POSITION": "accessor_3842" + }, + "indices": "accessor_3840", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1189": { + "name": "ID1189", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3864", + "POSITION": "accessor_3862" + }, + "indices": "accessor_3860", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1195": { + "name": "ID1195", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3884", + "POSITION": "accessor_3882" + }, + "indices": "accessor_3880", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1201": { + "name": "ID1201", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3896" + }, + "indices": "accessor_3894", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1205": { + "name": "ID1205", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3908" + }, + "indices": "accessor_3906", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1209": { + "name": "ID1209", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3920" + }, + "indices": "accessor_3918", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID121": { + "name": "ID121", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_388" + }, + "indices": "accessor_386", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1213": { + "name": "ID1213", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_3932" + }, + "indices": "accessor_3930", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1218": { + "name": "ID1218", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3952", + "POSITION": "accessor_3950" + }, + "indices": "accessor_3948", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1224": { + "name": "ID1224", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3972", + "POSITION": "accessor_3970" + }, + "indices": "accessor_3968", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1230": { + "name": "ID1230", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3992", + "POSITION": "accessor_3990" + }, + "indices": "accessor_3988", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1236": { + "name": "ID1236", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4012", + "POSITION": "accessor_4010" + }, + "indices": "accessor_4008", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1242": { + "name": "ID1242", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4032", + "POSITION": "accessor_4030" + }, + "indices": "accessor_4028", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1248": { + "name": "ID1248", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4052", + "POSITION": "accessor_4050" + }, + "indices": "accessor_4048", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID125": { + "name": "ID125", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_400" + }, + "indices": "accessor_398", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1254": { + "name": "ID1254", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4072", + "POSITION": "accessor_4070" + }, + "indices": "accessor_4068", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1260": { + "name": "ID1260", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4092", + "POSITION": "accessor_4090" + }, + "indices": "accessor_4088", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1266": { + "name": "ID1266", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4112", + "POSITION": "accessor_4110" + }, + "indices": "accessor_4108", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1272": { + "name": "ID1272", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4132", + "POSITION": "accessor_4130" + }, + "indices": "accessor_4128", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1278": { + "name": "ID1278", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4144" + }, + "indices": "accessor_4142", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1282": { + "name": "ID1282", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4156" + }, + "indices": "accessor_4154", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1286": { + "name": "ID1286", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4168" + }, + "indices": "accessor_4166", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1290": { + "name": "ID1290", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4180" + }, + "indices": "accessor_4178", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1295": { + "name": "ID1295", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4200", + "POSITION": "accessor_4198" + }, + "indices": "accessor_4196", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID130": { + "name": "ID130", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_420", + "POSITION": "accessor_418" + }, + "indices": "accessor_416", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1301": { + "name": "ID1301", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4220", + "POSITION": "accessor_4218" + }, + "indices": "accessor_4216", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1307": { + "name": "ID1307", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4240", + "POSITION": "accessor_4238" + }, + "indices": "accessor_4236", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1313": { + "name": "ID1313", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4260", + "POSITION": "accessor_4258" + }, + "indices": "accessor_4256", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1319": { + "name": "ID1319", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4280", + "POSITION": "accessor_4278" + }, + "indices": "accessor_4276", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1325": { + "name": "ID1325", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4300", + "POSITION": "accessor_4298" + }, + "indices": "accessor_4296", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1331": { + "name": "ID1331", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4312" + }, + "indices": "accessor_4310", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1335": { + "name": "ID1335", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4324" + }, + "indices": "accessor_4322", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1339": { + "name": "ID1339", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4336" + }, + "indices": "accessor_4334", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1343": { + "name": "ID1343", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4348" + }, + "indices": "accessor_4346", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1347": { + "name": "ID1347", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4360" + }, + "indices": "accessor_4358", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1352": { + "name": "ID1352", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4380", + "POSITION": "accessor_4378" + }, + "indices": "accessor_4376", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1358": { + "name": "ID1358", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4400", + "POSITION": "accessor_4398" + }, + "indices": "accessor_4396", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID136": { + "name": "ID136", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_440", + "POSITION": "accessor_438" + }, + "indices": "accessor_436", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1364": { + "name": "ID1364", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4420", + "POSITION": "accessor_4418" + }, + "indices": "accessor_4416", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1370": { + "name": "ID1370", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4440", + "POSITION": "accessor_4438" + }, + "indices": "accessor_4436", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1376": { + "name": "ID1376", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4460", + "POSITION": "accessor_4458" + }, + "indices": "accessor_4456", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1382": { + "name": "ID1382", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4480", + "POSITION": "accessor_4478" + }, + "indices": "accessor_4476", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1388": { + "name": "ID1388", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4492" + }, + "indices": "accessor_4490", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1392": { + "name": "ID1392", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4504" + }, + "indices": "accessor_4502", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1396": { + "name": "ID1396", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4516" + }, + "indices": "accessor_4514", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1400": { + "name": "ID1400", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4528" + }, + "indices": "accessor_4526", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1404": { + "name": "ID1404", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_4540" + }, + "indices": "accessor_4538", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1409": { + "name": "ID1409", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4560", + "POSITION": "accessor_4558" + }, + "indices": "accessor_4556", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1417": { + "name": "ID1417", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4580", + "POSITION": "accessor_4578" + }, + "indices": "accessor_4576", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID142": { + "name": "ID142", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_460", + "POSITION": "accessor_458" + }, + "indices": "accessor_456", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1423": { + "name": "ID1423", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4600", + "POSITION": "accessor_4598" + }, + "indices": "accessor_4596", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1429": { + "name": "ID1429", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4620", + "POSITION": "accessor_4618" + }, + "indices": "accessor_4616", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1435": { + "name": "ID1435", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4640", + "POSITION": "accessor_4638" + }, + "indices": "accessor_4636", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1441": { + "name": "ID1441", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4660", + "POSITION": "accessor_4658" + }, + "indices": "accessor_4656", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1447": { + "name": "ID1447", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4680", + "POSITION": "accessor_4678" + }, + "indices": "accessor_4676", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1453": { + "name": "ID1453", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4700", + "POSITION": "accessor_4698" + }, + "indices": "accessor_4696", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1459": { + "name": "ID1459", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4720", + "POSITION": "accessor_4718" + }, + "indices": "accessor_4716", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1465": { + "name": "ID1465", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4740", + "POSITION": "accessor_4738" + }, + "indices": "accessor_4736", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1471": { + "name": "ID1471", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4760", + "POSITION": "accessor_4758" + }, + "indices": "accessor_4756", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1477": { + "name": "ID1477", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4780", + "POSITION": "accessor_4778" + }, + "indices": "accessor_4776", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1483": { + "name": "ID1483", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4800", + "POSITION": "accessor_4798" + }, + "indices": "accessor_4796", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1489": { + "name": "ID1489", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4820", + "POSITION": "accessor_4818" + }, + "indices": "accessor_4816", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID149": { + "name": "ID149", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_480", + "POSITION": "accessor_478" + }, + "indices": "accessor_476", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1495": { + "name": "ID1495", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4840", + "POSITION": "accessor_4838" + }, + "indices": "accessor_4836", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1501": { + "name": "ID1501", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4860", + "POSITION": "accessor_4858" + }, + "indices": "accessor_4856", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1507": { + "name": "ID1507", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4880", + "POSITION": "accessor_4878" + }, + "indices": "accessor_4876", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1513": { + "name": "ID1513", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4900", + "POSITION": "accessor_4898" + }, + "indices": "accessor_4896", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1520": { + "name": "ID1520", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4920", + "POSITION": "accessor_4918" + }, + "indices": "accessor_4916", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1526": { + "name": "ID1526", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4940", + "POSITION": "accessor_4938" + }, + "indices": "accessor_4936", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1532": { + "name": "ID1532", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4960", + "POSITION": "accessor_4958" + }, + "indices": "accessor_4956", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1538": { + "name": "ID1538", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_4980", + "POSITION": "accessor_4978" + }, + "indices": "accessor_4976", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1544": { + "name": "ID1544", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5000", + "POSITION": "accessor_4998" + }, + "indices": "accessor_4996", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1550": { + "name": "ID1550", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5020", + "POSITION": "accessor_5018" + }, + "indices": "accessor_5016", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1556": { + "name": "ID1556", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5040", + "POSITION": "accessor_5038" + }, + "indices": "accessor_5036", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1562": { + "name": "ID1562", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5060", + "POSITION": "accessor_5058" + }, + "indices": "accessor_5056", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1568": { + "name": "ID1568", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5080", + "POSITION": "accessor_5078" + }, + "indices": "accessor_5076", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID157": { + "name": "ID157", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_500", + "POSITION": "accessor_498" + }, + "indices": "accessor_496", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1574": { + "name": "ID1574", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5100", + "POSITION": "accessor_5098" + }, + "indices": "accessor_5096", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1580": { + "name": "ID1580", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5120", + "POSITION": "accessor_5118" + }, + "indices": "accessor_5116", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1586": { + "name": "ID1586", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5140", + "POSITION": "accessor_5138" + }, + "indices": "accessor_5136", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1592": { + "name": "ID1592", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5152" + }, + "indices": "accessor_5150", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1598": { + "name": "ID1598", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5164" + }, + "indices": "accessor_5162", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1602": { + "name": "ID1602", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5176" + }, + "indices": "accessor_5174", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1606": { + "name": "ID1606", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5188" + }, + "indices": "accessor_5186", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1611": { + "name": "ID1611", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5208", + "POSITION": "accessor_5206" + }, + "indices": "accessor_5204", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1617": { + "name": "ID1617", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5228", + "POSITION": "accessor_5226" + }, + "indices": "accessor_5224", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1623": { + "name": "ID1623", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5248", + "POSITION": "accessor_5246" + }, + "indices": "accessor_5244", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1629": { + "name": "ID1629", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5268", + "POSITION": "accessor_5266" + }, + "indices": "accessor_5264", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID163": { + "name": "ID163", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_520", + "POSITION": "accessor_518" + }, + "indices": "accessor_516", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1635": { + "name": "ID1635", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5288", + "POSITION": "accessor_5286" + }, + "indices": "accessor_5284", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1641": { + "name": "ID1641", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5300" + }, + "indices": "accessor_5298", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1646": { + "name": "ID1646", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5320", + "POSITION": "accessor_5318" + }, + "indices": "accessor_5316", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1652": { + "name": "ID1652", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5340", + "POSITION": "accessor_5338" + }, + "indices": "accessor_5336", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1658": { + "name": "ID1658", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5360", + "POSITION": "accessor_5358" + }, + "indices": "accessor_5356", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1664": { + "name": "ID1664", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5380", + "POSITION": "accessor_5378" + }, + "indices": "accessor_5376", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1670": { + "name": "ID1670", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5400", + "POSITION": "accessor_5398" + }, + "indices": "accessor_5396", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1676": { + "name": "ID1676", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5412" + }, + "indices": "accessor_5410", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1681": { + "name": "ID1681", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5432", + "POSITION": "accessor_5430" + }, + "indices": "accessor_5428", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID169": { + "name": "ID169", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_540", + "POSITION": "accessor_538" + }, + "indices": "accessor_536", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1690": { + "name": "ID1690", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5452", + "POSITION": "accessor_5450" + }, + "indices": "accessor_5448", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1697": { + "name": "ID1697", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5472", + "POSITION": "accessor_5470" + }, + "indices": "accessor_5468", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID17": { + "name": "ID17", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_60", + "POSITION": "accessor_58" + }, + "indices": "accessor_56", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1703": { + "name": "ID1703", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5492", + "POSITION": "accessor_5490" + }, + "indices": "accessor_5488", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1709": { + "name": "ID1709", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5512", + "POSITION": "accessor_5510" + }, + "indices": "accessor_5508", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1716": { + "name": "ID1716", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5532", + "POSITION": "accessor_5530" + }, + "indices": "accessor_5528", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1723": { + "name": "ID1723", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5552", + "POSITION": "accessor_5550" + }, + "indices": "accessor_5548", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID1730": { + "name": "ID1730", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5572", + "POSITION": "accessor_5570" + }, + "indices": "accessor_5568", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1736": { + "name": "ID1736", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5592", + "POSITION": "accessor_5590" + }, + "indices": "accessor_5588", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1743": { + "name": "ID1743", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5612", + "POSITION": "accessor_5610" + }, + "indices": "accessor_5608", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID175": { + "name": "ID175", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_560", + "POSITION": "accessor_558" + }, + "indices": "accessor_556", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1750": { + "name": "ID1750", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5632", + "POSITION": "accessor_5630" + }, + "indices": "accessor_5628", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID1757": { + "name": "ID1757", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5652", + "POSITION": "accessor_5650" + }, + "indices": "accessor_5648", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID1764": { + "name": "ID1764", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5672", + "POSITION": "accessor_5670" + }, + "indices": "accessor_5668", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID1771": { + "name": "ID1771", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5707", + "POSITION": "accessor_5705" + }, + "indices": "accessor_5700", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_5707", + "POSITION": "accessor_5705" + }, + "indices": "accessor_5703", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID1782": { + "name": "ID1782", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5742", + "POSITION": "accessor_5740" + }, + "indices": "accessor_5735", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_5742", + "POSITION": "accessor_5740" + }, + "indices": "accessor_5738", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID1789": { + "name": "ID1789", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5762", + "POSITION": "accessor_5760" + }, + "indices": "accessor_5758", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1795": { + "name": "ID1795", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5782", + "POSITION": "accessor_5780" + }, + "indices": "accessor_5778", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1801": { + "name": "ID1801", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5802", + "POSITION": "accessor_5800" + }, + "indices": "accessor_5798", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1807": { + "name": "ID1807", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5822", + "POSITION": "accessor_5820" + }, + "indices": "accessor_5818", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID181": { + "name": "ID181", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_580", + "POSITION": "accessor_578" + }, + "indices": "accessor_576", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1813": { + "name": "ID1813", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5842", + "POSITION": "accessor_5840" + }, + "indices": "accessor_5838", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1819": { + "name": "ID1819", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5862", + "POSITION": "accessor_5860" + }, + "indices": "accessor_5858", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID1825": { + "name": "ID1825", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5874" + }, + "indices": "accessor_5872", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1829": { + "name": "ID1829", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5886" + }, + "indices": "accessor_5884", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1833": { + "name": "ID1833", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5898" + }, + "indices": "accessor_5896", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1837": { + "name": "ID1837", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5910" + }, + "indices": "accessor_5908", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1841": { + "name": "ID1841", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_5922" + }, + "indices": "accessor_5920", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID1846": { + "name": "ID1846", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5942", + "POSITION": "accessor_5940" + }, + "indices": "accessor_5938", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1852": { + "name": "ID1852", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5962", + "POSITION": "accessor_5960" + }, + "indices": "accessor_5958", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1858": { + "name": "ID1858", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_5982", + "POSITION": "accessor_5980" + }, + "indices": "accessor_5978", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1864": { + "name": "ID1864", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6002", + "POSITION": "accessor_6000" + }, + "indices": "accessor_5998", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID187": { + "name": "ID187", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_600", + "POSITION": "accessor_598" + }, + "indices": "accessor_596", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1870": { + "name": "ID1870", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6022", + "POSITION": "accessor_6020" + }, + "indices": "accessor_6018", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1876": { + "name": "ID1876", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6042", + "POSITION": "accessor_6040" + }, + "indices": "accessor_6038", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1882": { + "name": "ID1882", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6054" + }, + "indices": "accessor_6052", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1886": { + "name": "ID1886", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6066" + }, + "indices": "accessor_6064", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1890": { + "name": "ID1890", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6078" + }, + "indices": "accessor_6076", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1894": { + "name": "ID1894", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6090" + }, + "indices": "accessor_6088", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1898": { + "name": "ID1898", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6102" + }, + "indices": "accessor_6100", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1903": { + "name": "ID1903", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6122", + "POSITION": "accessor_6120" + }, + "indices": "accessor_6118", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1909": { + "name": "ID1909", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6142", + "POSITION": "accessor_6140" + }, + "indices": "accessor_6138", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1915": { + "name": "ID1915", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6162", + "POSITION": "accessor_6160" + }, + "indices": "accessor_6158", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1921": { + "name": "ID1921", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6182", + "POSITION": "accessor_6180" + }, + "indices": "accessor_6178", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1927": { + "name": "ID1927", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6202", + "POSITION": "accessor_6200" + }, + "indices": "accessor_6198", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID193": { + "name": "ID193", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_620", + "POSITION": "accessor_618" + }, + "indices": "accessor_616", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1933": { + "name": "ID1933", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6222", + "POSITION": "accessor_6220" + }, + "indices": "accessor_6218", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1939": { + "name": "ID1939", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6234" + }, + "indices": "accessor_6232", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1943": { + "name": "ID1943", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6246" + }, + "indices": "accessor_6244", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1947": { + "name": "ID1947", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6258" + }, + "indices": "accessor_6256", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1951": { + "name": "ID1951", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6270" + }, + "indices": "accessor_6268", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1955": { + "name": "ID1955", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6282" + }, + "indices": "accessor_6280", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID1960": { + "name": "ID1960", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6302", + "POSITION": "accessor_6300" + }, + "indices": "accessor_6298", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1966": { + "name": "ID1966", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6322", + "POSITION": "accessor_6320" + }, + "indices": "accessor_6318", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1972": { + "name": "ID1972", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6342", + "POSITION": "accessor_6340" + }, + "indices": "accessor_6338", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1978": { + "name": "ID1978", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6362", + "POSITION": "accessor_6360" + }, + "indices": "accessor_6358", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1984": { + "name": "ID1984", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6382", + "POSITION": "accessor_6380" + }, + "indices": "accessor_6378", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID199": { + "name": "ID199", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_640", + "POSITION": "accessor_638" + }, + "indices": "accessor_636", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID1990": { + "name": "ID1990", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6402", + "POSITION": "accessor_6400" + }, + "indices": "accessor_6398", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID1996": { + "name": "ID1996", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6414" + }, + "indices": "accessor_6412", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2000": { + "name": "ID2000", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6426" + }, + "indices": "accessor_6424", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2004": { + "name": "ID2004", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6438" + }, + "indices": "accessor_6436", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2008": { + "name": "ID2008", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6450" + }, + "indices": "accessor_6448", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2012": { + "name": "ID2012", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6462" + }, + "indices": "accessor_6460", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2017": { + "name": "ID2017", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6482", + "POSITION": "accessor_6480" + }, + "indices": "accessor_6478", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2023": { + "name": "ID2023", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6502", + "POSITION": "accessor_6500" + }, + "indices": "accessor_6498", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2029": { + "name": "ID2029", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6522", + "POSITION": "accessor_6520" + }, + "indices": "accessor_6518", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2035": { + "name": "ID2035", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6542", + "POSITION": "accessor_6540" + }, + "indices": "accessor_6538", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2041": { + "name": "ID2041", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6562", + "POSITION": "accessor_6560" + }, + "indices": "accessor_6558", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2047": { + "name": "ID2047", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6582", + "POSITION": "accessor_6580" + }, + "indices": "accessor_6578", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID205": { + "name": "ID205", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_660", + "POSITION": "accessor_658" + }, + "indices": "accessor_656", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2053": { + "name": "ID2053", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6594" + }, + "indices": "accessor_6592", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2057": { + "name": "ID2057", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6606" + }, + "indices": "accessor_6604", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2061": { + "name": "ID2061", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6618" + }, + "indices": "accessor_6616", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2065": { + "name": "ID2065", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6630" + }, + "indices": "accessor_6628", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2069": { + "name": "ID2069", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6642" + }, + "indices": "accessor_6640", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2074": { + "name": "ID2074", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6662", + "POSITION": "accessor_6660" + }, + "indices": "accessor_6658", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2080": { + "name": "ID2080", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6682", + "POSITION": "accessor_6680" + }, + "indices": "accessor_6678", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2086": { + "name": "ID2086", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6702", + "POSITION": "accessor_6700" + }, + "indices": "accessor_6698", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2092": { + "name": "ID2092", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6722", + "POSITION": "accessor_6720" + }, + "indices": "accessor_6718", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2098": { + "name": "ID2098", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6742", + "POSITION": "accessor_6740" + }, + "indices": "accessor_6738", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2104": { + "name": "ID2104", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6762", + "POSITION": "accessor_6760" + }, + "indices": "accessor_6758", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID211": { + "name": "ID211", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_680", + "POSITION": "accessor_678" + }, + "indices": "accessor_676", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2110": { + "name": "ID2110", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6782", + "POSITION": "accessor_6780" + }, + "indices": "accessor_6778", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2116": { + "name": "ID2116", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6802", + "POSITION": "accessor_6800" + }, + "indices": "accessor_6798", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2122": { + "name": "ID2122", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6822", + "POSITION": "accessor_6820" + }, + "indices": "accessor_6818", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2128": { + "name": "ID2128", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6842", + "POSITION": "accessor_6840" + }, + "indices": "accessor_6838", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2134": { + "name": "ID2134", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6854" + }, + "indices": "accessor_6852", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2138": { + "name": "ID2138", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_6866" + }, + "indices": "accessor_6864", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2143": { + "name": "ID2143", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6886", + "POSITION": "accessor_6884" + }, + "indices": "accessor_6882", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2149": { + "name": "ID2149", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6906", + "POSITION": "accessor_6904" + }, + "indices": "accessor_6902", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2156": { + "name": "ID2156", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6926", + "POSITION": "accessor_6924" + }, + "indices": "accessor_6922", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2162": { + "name": "ID2162", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6946", + "POSITION": "accessor_6944" + }, + "indices": "accessor_6942", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2169": { + "name": "ID2169", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6966", + "POSITION": "accessor_6964" + }, + "indices": "accessor_6962", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID217": { + "name": "ID217", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_700", + "POSITION": "accessor_698" + }, + "indices": "accessor_696", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2175": { + "name": "ID2175", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_6986", + "POSITION": "accessor_6984" + }, + "indices": "accessor_6982", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2181": { + "name": "ID2181", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7006", + "POSITION": "accessor_7004" + }, + "indices": "accessor_7002", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2187": { + "name": "ID2187", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7026", + "POSITION": "accessor_7024" + }, + "indices": "accessor_7022", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2194": { + "name": "ID2194", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7046", + "POSITION": "accessor_7044" + }, + "indices": "accessor_7042", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2200": { + "name": "ID2200", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7066", + "POSITION": "accessor_7064" + }, + "indices": "accessor_7062", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2206": { + "name": "ID2206", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7086", + "POSITION": "accessor_7084" + }, + "indices": "accessor_7082", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2212": { + "name": "ID2212", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7106", + "POSITION": "accessor_7104" + }, + "indices": "accessor_7102", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2219": { + "name": "ID2219", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7126", + "POSITION": "accessor_7124" + }, + "indices": "accessor_7122", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2225": { + "name": "ID2225", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7146", + "POSITION": "accessor_7144" + }, + "indices": "accessor_7142", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID223": { + "name": "ID223", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_720", + "POSITION": "accessor_718" + }, + "indices": "accessor_716", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2231": { + "name": "ID2231", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7166", + "POSITION": "accessor_7164" + }, + "indices": "accessor_7162", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2237": { + "name": "ID2237", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7186", + "POSITION": "accessor_7184" + }, + "indices": "accessor_7182", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2244": { + "name": "ID2244", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7206", + "POSITION": "accessor_7204" + }, + "indices": "accessor_7202", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2250": { + "name": "ID2250", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7226", + "POSITION": "accessor_7224" + }, + "indices": "accessor_7222", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2256": { + "name": "ID2256", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7246", + "POSITION": "accessor_7244" + }, + "indices": "accessor_7242", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2262": { + "name": "ID2262", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7266", + "POSITION": "accessor_7264" + }, + "indices": "accessor_7262", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2269": { + "name": "ID2269", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7286", + "POSITION": "accessor_7284" + }, + "indices": "accessor_7282", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2275": { + "name": "ID2275", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7306", + "POSITION": "accessor_7304" + }, + "indices": "accessor_7302", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2281": { + "name": "ID2281", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7326", + "POSITION": "accessor_7324" + }, + "indices": "accessor_7322", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2287": { + "name": "ID2287", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7346", + "POSITION": "accessor_7344" + }, + "indices": "accessor_7342", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID229": { + "name": "ID229", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_740", + "POSITION": "accessor_738" + }, + "indices": "accessor_736", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2293": { + "name": "ID2293", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7366", + "POSITION": "accessor_7364" + }, + "indices": "accessor_7362", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2299": { + "name": "ID2299", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7386", + "POSITION": "accessor_7384" + }, + "indices": "accessor_7382", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID23": { + "name": "ID23", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_80", + "POSITION": "accessor_78" + }, + "indices": "accessor_76", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2305": { + "name": "ID2305", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7406", + "POSITION": "accessor_7404" + }, + "indices": "accessor_7402", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2311": { + "name": "ID2311", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7426", + "POSITION": "accessor_7424" + }, + "indices": "accessor_7422", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2317": { + "name": "ID2317", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7446", + "POSITION": "accessor_7444" + }, + "indices": "accessor_7442", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2323": { + "name": "ID2323", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7466", + "POSITION": "accessor_7464" + }, + "indices": "accessor_7462", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2329": { + "name": "ID2329", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7486", + "POSITION": "accessor_7484" + }, + "indices": "accessor_7482", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2335": { + "name": "ID2335", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7506", + "POSITION": "accessor_7504" + }, + "indices": "accessor_7502", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2341": { + "name": "ID2341", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7526", + "POSITION": "accessor_7524" + }, + "indices": "accessor_7522", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2347": { + "name": "ID2347", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7546", + "POSITION": "accessor_7544" + }, + "indices": "accessor_7542", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID235": { + "name": "ID235", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_760", + "POSITION": "accessor_758" + }, + "indices": "accessor_756", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2353": { + "name": "ID2353", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7566", + "POSITION": "accessor_7564" + }, + "indices": "accessor_7562", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2359": { + "name": "ID2359", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7586", + "POSITION": "accessor_7584" + }, + "indices": "accessor_7582", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2365": { + "name": "ID2365", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7606", + "POSITION": "accessor_7604" + }, + "indices": "accessor_7602", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2371": { + "name": "ID2371", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_7618" + }, + "indices": "accessor_7616", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2375": { + "name": "ID2375", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_7630" + }, + "indices": "accessor_7628", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2379": { + "name": "ID2379", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_7642" + }, + "indices": "accessor_7640", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2383": { + "name": "ID2383", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_7654" + }, + "indices": "accessor_7652", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2387": { + "name": "ID2387", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_7666" + }, + "indices": "accessor_7664", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2392": { + "name": "ID2392", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7686", + "POSITION": "accessor_7684" + }, + "indices": "accessor_7682", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2398": { + "name": "ID2398", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7706", + "POSITION": "accessor_7704" + }, + "indices": "accessor_7702", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2404": { + "name": "ID2404", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7726", + "POSITION": "accessor_7724" + }, + "indices": "accessor_7722", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID241": { + "name": "ID241", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_780", + "POSITION": "accessor_778" + }, + "indices": "accessor_776", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2410": { + "name": "ID2410", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7746", + "POSITION": "accessor_7744" + }, + "indices": "accessor_7742", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2416": { + "name": "ID2416", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7766", + "POSITION": "accessor_7764" + }, + "indices": "accessor_7762", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2422": { + "name": "ID2422", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7786", + "POSITION": "accessor_7784" + }, + "indices": "accessor_7782", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2428": { + "name": "ID2428", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7806", + "POSITION": "accessor_7804" + }, + "indices": "accessor_7802", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2434": { + "name": "ID2434", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7826", + "POSITION": "accessor_7824" + }, + "indices": "accessor_7822", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2440": { + "name": "ID2440", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7846", + "POSITION": "accessor_7844" + }, + "indices": "accessor_7842", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2446": { + "name": "ID2446", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7866", + "POSITION": "accessor_7864" + }, + "indices": "accessor_7862", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2452": { + "name": "ID2452", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7886", + "POSITION": "accessor_7884" + }, + "indices": "accessor_7882", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2458": { + "name": "ID2458", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7906", + "POSITION": "accessor_7904" + }, + "indices": "accessor_7902", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2464": { + "name": "ID2464", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7926", + "POSITION": "accessor_7924" + }, + "indices": "accessor_7922", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID247": { + "name": "ID247", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_800", + "POSITION": "accessor_798" + }, + "indices": "accessor_796", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2470": { + "name": "ID2470", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7946", + "POSITION": "accessor_7944" + }, + "indices": "accessor_7942", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2476": { + "name": "ID2476", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7966", + "POSITION": "accessor_7964" + }, + "indices": "accessor_7962", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2482": { + "name": "ID2482", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_7986", + "POSITION": "accessor_7984" + }, + "indices": "accessor_7982", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2488": { + "name": "ID2488", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8006", + "POSITION": "accessor_8004" + }, + "indices": "accessor_8002", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2494": { + "name": "ID2494", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8018" + }, + "indices": "accessor_8016", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2498": { + "name": "ID2498", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8030" + }, + "indices": "accessor_8028", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2502": { + "name": "ID2502", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8042" + }, + "indices": "accessor_8040", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2506": { + "name": "ID2506", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8054" + }, + "indices": "accessor_8052", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2510": { + "name": "ID2510", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8066" + }, + "indices": "accessor_8064", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID2515": { + "name": "ID2515", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8086", + "POSITION": "accessor_8084" + }, + "indices": "accessor_8082", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID2522": { + "name": "ID2522", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8106", + "POSITION": "accessor_8104" + }, + "indices": "accessor_8102", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2528": { + "name": "ID2528", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8126", + "POSITION": "accessor_8124" + }, + "indices": "accessor_8122", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID253": { + "name": "ID253", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_820", + "POSITION": "accessor_818" + }, + "indices": "accessor_816", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2534": { + "name": "ID2534", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8146", + "POSITION": "accessor_8144" + }, + "indices": "accessor_8142", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2540": { + "name": "ID2540", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8166", + "POSITION": "accessor_8164" + }, + "indices": "accessor_8162", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2546": { + "name": "ID2546", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8186", + "POSITION": "accessor_8184" + }, + "indices": "accessor_8182", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2552": { + "name": "ID2552", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8206", + "POSITION": "accessor_8204" + }, + "indices": "accessor_8202", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2558": { + "name": "ID2558", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8226", + "POSITION": "accessor_8224" + }, + "indices": "accessor_8222", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2564": { + "name": "ID2564", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8246", + "POSITION": "accessor_8244" + }, + "indices": "accessor_8242", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2570": { + "name": "ID2570", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8266", + "POSITION": "accessor_8264" + }, + "indices": "accessor_8262", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2576": { + "name": "ID2576", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8286", + "POSITION": "accessor_8284" + }, + "indices": "accessor_8282", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2582": { + "name": "ID2582", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8298" + }, + "indices": "accessor_8296", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2586": { + "name": "ID2586", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8310" + }, + "indices": "accessor_8308", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID259": { + "name": "ID259", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_840", + "POSITION": "accessor_838" + }, + "indices": "accessor_836", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2590": { + "name": "ID2590", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8322" + }, + "indices": "accessor_8320", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2594": { + "name": "ID2594", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8334" + }, + "indices": "accessor_8332", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID2599": { + "name": "ID2599", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8354", + "POSITION": "accessor_8352" + }, + "indices": "accessor_8350", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID2606": { + "name": "ID2606", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8374", + "POSITION": "accessor_8372" + }, + "indices": "accessor_8370", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID2613": { + "name": "ID2613", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8394", + "POSITION": "accessor_8392" + }, + "indices": "accessor_8390", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID2620": { + "name": "ID2620", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8414", + "POSITION": "accessor_8412" + }, + "indices": "accessor_8410", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2626": { + "name": "ID2626", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8434", + "POSITION": "accessor_8432" + }, + "indices": "accessor_8430", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2632": { + "name": "ID2632", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8454", + "POSITION": "accessor_8452" + }, + "indices": "accessor_8450", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2639": { + "name": "ID2639", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8474", + "POSITION": "accessor_8472" + }, + "indices": "accessor_8470", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2645": { + "name": "ID2645", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8494", + "POSITION": "accessor_8492" + }, + "indices": "accessor_8490", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID265": { + "name": "ID265", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_860", + "POSITION": "accessor_858" + }, + "indices": "accessor_856", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2651": { + "name": "ID2651", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8514", + "POSITION": "accessor_8512" + }, + "indices": "accessor_8510", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2658": { + "name": "ID2658", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8534", + "POSITION": "accessor_8532" + }, + "indices": "accessor_8530", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2664": { + "name": "ID2664", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8554", + "POSITION": "accessor_8552" + }, + "indices": "accessor_8550", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2670": { + "name": "ID2670", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8574", + "POSITION": "accessor_8572" + }, + "indices": "accessor_8570", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2676": { + "name": "ID2676", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8594", + "POSITION": "accessor_8592" + }, + "indices": "accessor_8590", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2683": { + "name": "ID2683", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8614", + "POSITION": "accessor_8612" + }, + "indices": "accessor_8610", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2689": { + "name": "ID2689", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8634", + "POSITION": "accessor_8632" + }, + "indices": "accessor_8630", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2695": { + "name": "ID2695", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8654", + "POSITION": "accessor_8652" + }, + "indices": "accessor_8650", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2701": { + "name": "ID2701", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8674", + "POSITION": "accessor_8672" + }, + "indices": "accessor_8670", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2708": { + "name": "ID2708", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8694", + "POSITION": "accessor_8692" + }, + "indices": "accessor_8690", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID271": { + "name": "ID271", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_880", + "POSITION": "accessor_878" + }, + "indices": "accessor_876", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2714": { + "name": "ID2714", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8714", + "POSITION": "accessor_8712" + }, + "indices": "accessor_8710", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2720": { + "name": "ID2720", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8734", + "POSITION": "accessor_8732" + }, + "indices": "accessor_8730", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2726": { + "name": "ID2726", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8754", + "POSITION": "accessor_8752" + }, + "indices": "accessor_8750", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2732": { + "name": "ID2732", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8774", + "POSITION": "accessor_8772" + }, + "indices": "accessor_8770", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2738": { + "name": "ID2738", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8794", + "POSITION": "accessor_8792" + }, + "indices": "accessor_8790", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2745": { + "name": "ID2745", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8814", + "POSITION": "accessor_8812" + }, + "indices": "accessor_8810", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2751": { + "name": "ID2751", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8834", + "POSITION": "accessor_8832" + }, + "indices": "accessor_8830", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2757": { + "name": "ID2757", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8854", + "POSITION": "accessor_8852" + }, + "indices": "accessor_8850", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2763": { + "name": "ID2763", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8874", + "POSITION": "accessor_8872" + }, + "indices": "accessor_8870", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2769": { + "name": "ID2769", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8894", + "POSITION": "accessor_8892" + }, + "indices": "accessor_8890", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID277": { + "name": "ID277", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_900", + "POSITION": "accessor_898" + }, + "indices": "accessor_896", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2775": { + "name": "ID2775", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8914", + "POSITION": "accessor_8912" + }, + "indices": "accessor_8910", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2782": { + "name": "ID2782", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8934", + "POSITION": "accessor_8932" + }, + "indices": "accessor_8930", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2789": { + "name": "ID2789", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8954", + "POSITION": "accessor_8952" + }, + "indices": "accessor_8950", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2795": { + "name": "ID2795", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_8974", + "POSITION": "accessor_8972" + }, + "indices": "accessor_8970", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2801": { + "name": "ID2801", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8986" + }, + "indices": "accessor_8984", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2805": { + "name": "ID2805", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_8998" + }, + "indices": "accessor_8996", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2809": { + "name": "ID2809", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9010" + }, + "indices": "accessor_9008", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2814": { + "name": "ID2814", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9030", + "POSITION": "accessor_9028" + }, + "indices": "accessor_9026", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2820": { + "name": "ID2820", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9050", + "POSITION": "accessor_9048" + }, + "indices": "accessor_9046", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2826": { + "name": "ID2826", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9070", + "POSITION": "accessor_9068" + }, + "indices": "accessor_9066", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID283": { + "name": "ID283", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_920", + "POSITION": "accessor_918" + }, + "indices": "accessor_916", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2832": { + "name": "ID2832", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9090", + "POSITION": "accessor_9088" + }, + "indices": "accessor_9086", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2838": { + "name": "ID2838", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9110", + "POSITION": "accessor_9108" + }, + "indices": "accessor_9106", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2844": { + "name": "ID2844", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9130", + "POSITION": "accessor_9128" + }, + "indices": "accessor_9126", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2850": { + "name": "ID2850", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9150", + "POSITION": "accessor_9148" + }, + "indices": "accessor_9146", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2857": { + "name": "ID2857", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9170", + "POSITION": "accessor_9168" + }, + "indices": "accessor_9166", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2864": { + "name": "ID2864", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9190", + "POSITION": "accessor_9188" + }, + "indices": "accessor_9186", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2870": { + "name": "ID2870", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9210", + "POSITION": "accessor_9208" + }, + "indices": "accessor_9206", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2876": { + "name": "ID2876", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9222" + }, + "indices": "accessor_9220", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2880": { + "name": "ID2880", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9234" + }, + "indices": "accessor_9232", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2884": { + "name": "ID2884", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9246" + }, + "indices": "accessor_9244", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2889": { + "name": "ID2889", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9266", + "POSITION": "accessor_9264" + }, + "indices": "accessor_9262", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID289": { + "name": "ID289", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_940", + "POSITION": "accessor_938" + }, + "indices": "accessor_936", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2895": { + "name": "ID2895", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9286", + "POSITION": "accessor_9284" + }, + "indices": "accessor_9282", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID29": { + "name": "ID29", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_100", + "POSITION": "accessor_98" + }, + "indices": "accessor_96", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID2901": { + "name": "ID2901", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9306", + "POSITION": "accessor_9304" + }, + "indices": "accessor_9302", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2907": { + "name": "ID2907", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9326", + "POSITION": "accessor_9324" + }, + "indices": "accessor_9322", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2913": { + "name": "ID2913", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9338" + }, + "indices": "accessor_9336", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2918": { + "name": "ID2918", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9358", + "POSITION": "accessor_9356" + }, + "indices": "accessor_9354", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2924": { + "name": "ID2924", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9378", + "POSITION": "accessor_9376" + }, + "indices": "accessor_9374", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2930": { + "name": "ID2930", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9398", + "POSITION": "accessor_9396" + }, + "indices": "accessor_9394", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2936": { + "name": "ID2936", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9418", + "POSITION": "accessor_9416" + }, + "indices": "accessor_9414", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID2942": { + "name": "ID2942", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9430" + }, + "indices": "accessor_9428", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID2947": { + "name": "ID2947", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9465", + "POSITION": "accessor_9463" + }, + "indices": "accessor_9458", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9465", + "POSITION": "accessor_9463" + }, + "indices": "accessor_9461", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID295": { + "name": "ID295", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_960", + "POSITION": "accessor_958" + }, + "indices": "accessor_956", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID2953": { + "name": "ID2953", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9500", + "POSITION": "accessor_9498" + }, + "indices": "accessor_9493", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9500", + "POSITION": "accessor_9498" + }, + "indices": "accessor_9496", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID2959": { + "name": "ID2959", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9535", + "POSITION": "accessor_9533" + }, + "indices": "accessor_9528", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9535", + "POSITION": "accessor_9533" + }, + "indices": "accessor_9531", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID2965": { + "name": "ID2965", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9570", + "POSITION": "accessor_9568" + }, + "indices": "accessor_9563", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9570", + "POSITION": "accessor_9568" + }, + "indices": "accessor_9566", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID2971": { + "name": "ID2971", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9605", + "POSITION": "accessor_9603" + }, + "indices": "accessor_9598", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9605", + "POSITION": "accessor_9603" + }, + "indices": "accessor_9601", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID2977": { + "name": "ID2977", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9640", + "POSITION": "accessor_9638" + }, + "indices": "accessor_9633", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_9640", + "POSITION": "accessor_9638" + }, + "indices": "accessor_9636", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID2983": { + "name": "ID2983", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9652" + }, + "indices": "accessor_9650", + "material": "ID2985", + "primitive": 1 + } + ] + }, + "ID2989": { + "name": "ID2989", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9664" + }, + "indices": "accessor_9662", + "material": "ID2985", + "primitive": 1 + } + ] + }, + "ID2993": { + "name": "ID2993", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9676" + }, + "indices": "accessor_9674", + "material": "ID2985", + "primitive": 1 + } + ] + }, + "ID2997": { + "name": "ID2997", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9688" + }, + "indices": "accessor_9686", + "material": "ID2985", + "primitive": 1 + } + ] + }, + "ID3": { + "name": "ID3", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_20", + "POSITION": "accessor_18" + }, + "indices": "accessor_16", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3001": { + "name": "ID3001", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9700" + }, + "indices": "accessor_9698", + "material": "ID2985", + "primitive": 1 + } + ] + }, + "ID3006": { + "name": "ID3006", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9720", + "POSITION": "accessor_9718" + }, + "indices": "accessor_9716", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID301": { + "name": "ID301", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_980", + "POSITION": "accessor_978" + }, + "indices": "accessor_976", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3012": { + "name": "ID3012", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9740", + "POSITION": "accessor_9738" + }, + "indices": "accessor_9736", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3018": { + "name": "ID3018", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9760", + "POSITION": "accessor_9758" + }, + "indices": "accessor_9756", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3024": { + "name": "ID3024", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9780", + "POSITION": "accessor_9778" + }, + "indices": "accessor_9776", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3030": { + "name": "ID3030", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9800", + "POSITION": "accessor_9798" + }, + "indices": "accessor_9796", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3036": { + "name": "ID3036", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9820", + "POSITION": "accessor_9818" + }, + "indices": "accessor_9816", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3042": { + "name": "ID3042", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9840", + "POSITION": "accessor_9838" + }, + "indices": "accessor_9836", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3048": { + "name": "ID3048", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9860", + "POSITION": "accessor_9858" + }, + "indices": "accessor_9856", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3054": { + "name": "ID3054", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9872" + }, + "indices": "accessor_9870", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3058": { + "name": "ID3058", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_9884" + }, + "indices": "accessor_9882", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3063": { + "name": "ID3063", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9904", + "POSITION": "accessor_9902" + }, + "indices": "accessor_9900", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3069": { + "name": "ID3069", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9924", + "POSITION": "accessor_9922" + }, + "indices": "accessor_9920", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID307": { + "name": "ID307", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1000", + "POSITION": "accessor_998" + }, + "indices": "accessor_996", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3075": { + "name": "ID3075", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9944", + "POSITION": "accessor_9942" + }, + "indices": "accessor_9940", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3081": { + "name": "ID3081", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9964", + "POSITION": "accessor_9962" + }, + "indices": "accessor_9960", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3087": { + "name": "ID3087", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_9984", + "POSITION": "accessor_9982" + }, + "indices": "accessor_9980", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3093": { + "name": "ID3093", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10004", + "POSITION": "accessor_10002" + }, + "indices": "accessor_10000", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3099": { + "name": "ID3099", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10016" + }, + "indices": "accessor_10014", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3103": { + "name": "ID3103", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10028" + }, + "indices": "accessor_10026", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3107": { + "name": "ID3107", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10040" + }, + "indices": "accessor_10038", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3111": { + "name": "ID3111", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10052" + }, + "indices": "accessor_10050", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3115": { + "name": "ID3115", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10064" + }, + "indices": "accessor_10062", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3120": { + "name": "ID3120", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10084", + "POSITION": "accessor_10082" + }, + "indices": "accessor_10080", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3126": { + "name": "ID3126", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10104", + "POSITION": "accessor_10102" + }, + "indices": "accessor_10100", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID313": { + "name": "ID313", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1020", + "POSITION": "accessor_1018" + }, + "indices": "accessor_1016", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3132": { + "name": "ID3132", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10124", + "POSITION": "accessor_10122" + }, + "indices": "accessor_10120", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3138": { + "name": "ID3138", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10144", + "POSITION": "accessor_10142" + }, + "indices": "accessor_10140", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3144": { + "name": "ID3144", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10164", + "POSITION": "accessor_10162" + }, + "indices": "accessor_10160", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3150": { + "name": "ID3150", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10176" + }, + "indices": "accessor_10174", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3155": { + "name": "ID3155", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10196", + "POSITION": "accessor_10194" + }, + "indices": "accessor_10192", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3161": { + "name": "ID3161", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10216", + "POSITION": "accessor_10214" + }, + "indices": "accessor_10212", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3167": { + "name": "ID3167", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10236", + "POSITION": "accessor_10234" + }, + "indices": "accessor_10232", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3173": { + "name": "ID3173", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10256", + "POSITION": "accessor_10254" + }, + "indices": "accessor_10252", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3179": { + "name": "ID3179", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10276", + "POSITION": "accessor_10274" + }, + "indices": "accessor_10272", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3185": { + "name": "ID3185", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10288" + }, + "indices": "accessor_10286", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID319": { + "name": "ID319", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1040", + "POSITION": "accessor_1038" + }, + "indices": "accessor_1036", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3190": { + "name": "ID3190", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10308", + "POSITION": "accessor_10306" + }, + "indices": "accessor_10304", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID3197": { + "name": "ID3197", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10343", + "POSITION": "accessor_10341" + }, + "indices": "accessor_10336", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_10343", + "POSITION": "accessor_10341" + }, + "indices": "accessor_10339", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID3204": { + "name": "ID3204", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10363", + "POSITION": "accessor_10361" + }, + "indices": "accessor_10359", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3210": { + "name": "ID3210", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10383", + "POSITION": "accessor_10381" + }, + "indices": "accessor_10379", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3217": { + "name": "ID3217", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10403", + "POSITION": "accessor_10401" + }, + "indices": "accessor_10399", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3223": { + "name": "ID3223", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10423", + "POSITION": "accessor_10421" + }, + "indices": "accessor_10419", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3230": { + "name": "ID3230", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10443", + "POSITION": "accessor_10441" + }, + "indices": "accessor_10439", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3236": { + "name": "ID3236", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10463", + "POSITION": "accessor_10461" + }, + "indices": "accessor_10459", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3242": { + "name": "ID3242", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10483", + "POSITION": "accessor_10481" + }, + "indices": "accessor_10479", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3248": { + "name": "ID3248", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10503", + "POSITION": "accessor_10501" + }, + "indices": "accessor_10499", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID325": { + "name": "ID325", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1060", + "POSITION": "accessor_1058" + }, + "indices": "accessor_1056", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3255": { + "name": "ID3255", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10523", + "POSITION": "accessor_10521" + }, + "indices": "accessor_10519", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3262": { + "name": "ID3262", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10543", + "POSITION": "accessor_10541" + }, + "indices": "accessor_10539", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3269": { + "name": "ID3269", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10563", + "POSITION": "accessor_10561" + }, + "indices": "accessor_10559", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3275": { + "name": "ID3275", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10583", + "POSITION": "accessor_10581" + }, + "indices": "accessor_10579", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3281": { + "name": "ID3281", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10603", + "POSITION": "accessor_10601" + }, + "indices": "accessor_10599", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3287": { + "name": "ID3287", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10623", + "POSITION": "accessor_10621" + }, + "indices": "accessor_10619", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3293": { + "name": "ID3293", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10643", + "POSITION": "accessor_10641" + }, + "indices": "accessor_10639", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3299": { + "name": "ID3299", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10663", + "POSITION": "accessor_10661" + }, + "indices": "accessor_10659", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3305": { + "name": "ID3305", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10683", + "POSITION": "accessor_10681" + }, + "indices": "accessor_10679", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID331": { + "name": "ID331", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1080", + "POSITION": "accessor_1078" + }, + "indices": "accessor_1076", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3311": { + "name": "ID3311", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10703", + "POSITION": "accessor_10701" + }, + "indices": "accessor_10699", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3317": { + "name": "ID3317", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10723", + "POSITION": "accessor_10721" + }, + "indices": "accessor_10719", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3323": { + "name": "ID3323", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10743", + "POSITION": "accessor_10741" + }, + "indices": "accessor_10739", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3329": { + "name": "ID3329", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10755" + }, + "indices": "accessor_10753", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3333": { + "name": "ID3333", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10767" + }, + "indices": "accessor_10765", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3338": { + "name": "ID3338", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10787", + "POSITION": "accessor_10785" + }, + "indices": "accessor_10783", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3344": { + "name": "ID3344", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10807", + "POSITION": "accessor_10805" + }, + "indices": "accessor_10803", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3350": { + "name": "ID3350", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10827", + "POSITION": "accessor_10825" + }, + "indices": "accessor_10823", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3356": { + "name": "ID3356", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10847", + "POSITION": "accessor_10845" + }, + "indices": "accessor_10843", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3362": { + "name": "ID3362", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10867", + "POSITION": "accessor_10865" + }, + "indices": "accessor_10863", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3368": { + "name": "ID3368", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10887", + "POSITION": "accessor_10885" + }, + "indices": "accessor_10883", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID337": { + "name": "ID337", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1100", + "POSITION": "accessor_1098" + }, + "indices": "accessor_1096", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3374": { + "name": "ID3374", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10907", + "POSITION": "accessor_10905" + }, + "indices": "accessor_10903", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3380": { + "name": "ID3380", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10927", + "POSITION": "accessor_10925" + }, + "indices": "accessor_10923", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3386": { + "name": "ID3386", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10947", + "POSITION": "accessor_10945" + }, + "indices": "accessor_10943", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3392": { + "name": "ID3392", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_10967", + "POSITION": "accessor_10965" + }, + "indices": "accessor_10963", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3398": { + "name": "ID3398", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10979" + }, + "indices": "accessor_10977", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3402": { + "name": "ID3402", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_10991" + }, + "indices": "accessor_10989", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3407": { + "name": "ID3407", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11011", + "POSITION": "accessor_11009" + }, + "indices": "accessor_11007", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3413": { + "name": "ID3413", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11031", + "POSITION": "accessor_11029" + }, + "indices": "accessor_11027", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3419": { + "name": "ID3419", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11051", + "POSITION": "accessor_11049" + }, + "indices": "accessor_11047", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3425": { + "name": "ID3425", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11071", + "POSITION": "accessor_11069" + }, + "indices": "accessor_11067", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID343": { + "name": "ID343", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1120", + "POSITION": "accessor_1118" + }, + "indices": "accessor_1116", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3431": { + "name": "ID3431", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11091", + "POSITION": "accessor_11089" + }, + "indices": "accessor_11087", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3437": { + "name": "ID3437", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11103" + }, + "indices": "accessor_11101", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3442": { + "name": "ID3442", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11123", + "POSITION": "accessor_11121" + }, + "indices": "accessor_11119", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3448": { + "name": "ID3448", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11143", + "POSITION": "accessor_11141" + }, + "indices": "accessor_11139", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3454": { + "name": "ID3454", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11163", + "POSITION": "accessor_11161" + }, + "indices": "accessor_11159", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3460": { + "name": "ID3460", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11183", + "POSITION": "accessor_11181" + }, + "indices": "accessor_11179", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3466": { + "name": "ID3466", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11203", + "POSITION": "accessor_11201" + }, + "indices": "accessor_11199", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3472": { + "name": "ID3472", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11223", + "POSITION": "accessor_11221" + }, + "indices": "accessor_11219", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3478": { + "name": "ID3478", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11243", + "POSITION": "accessor_11241" + }, + "indices": "accessor_11239", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3484": { + "name": "ID3484", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11263", + "POSITION": "accessor_11261" + }, + "indices": "accessor_11259", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID349": { + "name": "ID349", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1140", + "POSITION": "accessor_1138" + }, + "indices": "accessor_1136", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3490": { + "name": "ID3490", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11283", + "POSITION": "accessor_11281" + }, + "indices": "accessor_11279", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3496": { + "name": "ID3496", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11303", + "POSITION": "accessor_11301" + }, + "indices": "accessor_11299", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID35": { + "name": "ID35", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_120", + "POSITION": "accessor_118" + }, + "indices": "accessor_116", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3502": { + "name": "ID3502", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11315" + }, + "indices": "accessor_11313", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3506": { + "name": "ID3506", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11327" + }, + "indices": "accessor_11325", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3511": { + "name": "ID3511", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11347", + "POSITION": "accessor_11345" + }, + "indices": "accessor_11343", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID3518": { + "name": "ID3518", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11367", + "POSITION": "accessor_11365" + }, + "indices": "accessor_11363", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3524": { + "name": "ID3524", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11387", + "POSITION": "accessor_11385" + }, + "indices": "accessor_11383", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3530": { + "name": "ID3530", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11407", + "POSITION": "accessor_11405" + }, + "indices": "accessor_11403", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3536": { + "name": "ID3536", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11427", + "POSITION": "accessor_11425" + }, + "indices": "accessor_11423", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3542": { + "name": "ID3542", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11447", + "POSITION": "accessor_11445" + }, + "indices": "accessor_11443", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3548": { + "name": "ID3548", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11467", + "POSITION": "accessor_11465" + }, + "indices": "accessor_11463", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID355": { + "name": "ID355", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1160", + "POSITION": "accessor_1158" + }, + "indices": "accessor_1156", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3554": { + "name": "ID3554", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11487", + "POSITION": "accessor_11485" + }, + "indices": "accessor_11483", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3560": { + "name": "ID3560", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11507", + "POSITION": "accessor_11505" + }, + "indices": "accessor_11503", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3566": { + "name": "ID3566", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11519" + }, + "indices": "accessor_11517", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3570": { + "name": "ID3570", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11531" + }, + "indices": "accessor_11529", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3574": { + "name": "ID3574", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11543" + }, + "indices": "accessor_11541", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3578": { + "name": "ID3578", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11555" + }, + "indices": "accessor_11553", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3582": { + "name": "ID3582", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11567" + }, + "indices": "accessor_11565", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3587": { + "name": "ID3587", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11587", + "POSITION": "accessor_11585" + }, + "indices": "accessor_11583", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3593": { + "name": "ID3593", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11599" + }, + "indices": "accessor_11597", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3597": { + "name": "ID3597", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11611" + }, + "indices": "accessor_11609", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3602": { + "name": "ID3602", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11631", + "POSITION": "accessor_11629" + }, + "indices": "accessor_11627", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3608": { + "name": "ID3608", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11651", + "POSITION": "accessor_11649" + }, + "indices": "accessor_11647", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID361": { + "name": "ID361", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1172" + }, + "indices": "accessor_1170", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3614": { + "name": "ID3614", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11671", + "POSITION": "accessor_11669" + }, + "indices": "accessor_11667", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3620": { + "name": "ID3620", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11691", + "POSITION": "accessor_11689" + }, + "indices": "accessor_11687", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3626": { + "name": "ID3626", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11711", + "POSITION": "accessor_11709" + }, + "indices": "accessor_11707", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3632": { + "name": "ID3632", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11731", + "POSITION": "accessor_11729" + }, + "indices": "accessor_11727", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3638": { + "name": "ID3638", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11751", + "POSITION": "accessor_11749" + }, + "indices": "accessor_11747", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3644": { + "name": "ID3644", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11771", + "POSITION": "accessor_11769" + }, + "indices": "accessor_11767", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3650": { + "name": "ID3650", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11791", + "POSITION": "accessor_11789" + }, + "indices": "accessor_11787", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3657": { + "name": "ID3657", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11811", + "POSITION": "accessor_11809" + }, + "indices": "accessor_11807", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID3663": { + "name": "ID3663", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11823" + }, + "indices": "accessor_11821", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID3667": { + "name": "ID3667", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_11835" + }, + "indices": "accessor_11833", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID367": { + "name": "ID367", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1184" + }, + "indices": "accessor_1182", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3672": { + "name": "ID3672", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11855", + "POSITION": "accessor_11853" + }, + "indices": "accessor_11851", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3678": { + "name": "ID3678", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11875", + "POSITION": "accessor_11873" + }, + "indices": "accessor_11871", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3684": { + "name": "ID3684", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11895", + "POSITION": "accessor_11893" + }, + "indices": "accessor_11891", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3690": { + "name": "ID3690", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11915", + "POSITION": "accessor_11913" + }, + "indices": "accessor_11911", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3696": { + "name": "ID3696", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11935", + "POSITION": "accessor_11933" + }, + "indices": "accessor_11931", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3702": { + "name": "ID3702", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11955", + "POSITION": "accessor_11953" + }, + "indices": "accessor_11951", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3708": { + "name": "ID3708", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11975", + "POSITION": "accessor_11973" + }, + "indices": "accessor_11971", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID371": { + "name": "ID371", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1196" + }, + "indices": "accessor_1194", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3714": { + "name": "ID3714", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_11995", + "POSITION": "accessor_11993" + }, + "indices": "accessor_11991", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3720": { + "name": "ID3720", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12015", + "POSITION": "accessor_12013" + }, + "indices": "accessor_12011", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3726": { + "name": "ID3726", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12035", + "POSITION": "accessor_12033" + }, + "indices": "accessor_12031", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3732": { + "name": "ID3732", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12055", + "POSITION": "accessor_12053" + }, + "indices": "accessor_12051", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3738": { + "name": "ID3738", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12075", + "POSITION": "accessor_12073" + }, + "indices": "accessor_12071", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3744": { + "name": "ID3744", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12087" + }, + "indices": "accessor_12085", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3748": { + "name": "ID3748", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12099" + }, + "indices": "accessor_12097", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID375": { + "name": "ID375", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1208" + }, + "indices": "accessor_1206", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3752": { + "name": "ID3752", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12111" + }, + "indices": "accessor_12109", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3756": { + "name": "ID3756", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12123" + }, + "indices": "accessor_12121", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3761": { + "name": "ID3761", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12143", + "POSITION": "accessor_12141" + }, + "indices": "accessor_12139", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3767": { + "name": "ID3767", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12163", + "POSITION": "accessor_12161" + }, + "indices": "accessor_12159", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3773": { + "name": "ID3773", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12183", + "POSITION": "accessor_12181" + }, + "indices": "accessor_12179", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3779": { + "name": "ID3779", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12203", + "POSITION": "accessor_12201" + }, + "indices": "accessor_12199", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3785": { + "name": "ID3785", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12223", + "POSITION": "accessor_12221" + }, + "indices": "accessor_12219", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID379": { + "name": "ID379", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1220" + }, + "indices": "accessor_1218", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3791": { + "name": "ID3791", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12243", + "POSITION": "accessor_12241" + }, + "indices": "accessor_12239", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3797": { + "name": "ID3797", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12263", + "POSITION": "accessor_12261" + }, + "indices": "accessor_12259", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3803": { + "name": "ID3803", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12283", + "POSITION": "accessor_12281" + }, + "indices": "accessor_12279", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3809": { + "name": "ID3809", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12295" + }, + "indices": "accessor_12293", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3813": { + "name": "ID3813", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12307" + }, + "indices": "accessor_12305", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3818": { + "name": "ID3818", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12327", + "POSITION": "accessor_12325" + }, + "indices": "accessor_12323", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3824": { + "name": "ID3824", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12347", + "POSITION": "accessor_12345" + }, + "indices": "accessor_12343", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID383": { + "name": "ID383", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1232" + }, + "indices": "accessor_1230", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3830": { + "name": "ID3830", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12367", + "POSITION": "accessor_12365" + }, + "indices": "accessor_12363", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3836": { + "name": "ID3836", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12387", + "POSITION": "accessor_12385" + }, + "indices": "accessor_12383", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3842": { + "name": "ID3842", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12407", + "POSITION": "accessor_12405" + }, + "indices": "accessor_12403", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3848": { + "name": "ID3848", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12427", + "POSITION": "accessor_12425" + }, + "indices": "accessor_12423", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3854": { + "name": "ID3854", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12447", + "POSITION": "accessor_12445" + }, + "indices": "accessor_12443", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3860": { + "name": "ID3860", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12467", + "POSITION": "accessor_12465" + }, + "indices": "accessor_12463", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3866": { + "name": "ID3866", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12487", + "POSITION": "accessor_12485" + }, + "indices": "accessor_12483", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID387": { + "name": "ID387", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1244" + }, + "indices": "accessor_1242", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3872": { + "name": "ID3872", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12507", + "POSITION": "accessor_12505" + }, + "indices": "accessor_12503", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3878": { + "name": "ID3878", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12527", + "POSITION": "accessor_12525" + }, + "indices": "accessor_12523", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3884": { + "name": "ID3884", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12547", + "POSITION": "accessor_12545" + }, + "indices": "accessor_12543", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3890": { + "name": "ID3890", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12559" + }, + "indices": "accessor_12557", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3894": { + "name": "ID3894", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12571" + }, + "indices": "accessor_12569", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3898": { + "name": "ID3898", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12583" + }, + "indices": "accessor_12581", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3902": { + "name": "ID3902", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12595" + }, + "indices": "accessor_12593", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3907": { + "name": "ID3907", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12615", + "POSITION": "accessor_12613" + }, + "indices": "accessor_12611", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID391": { + "name": "ID391", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1256" + }, + "indices": "accessor_1254", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3913": { + "name": "ID3913", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12635", + "POSITION": "accessor_12633" + }, + "indices": "accessor_12631", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3919": { + "name": "ID3919", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12655", + "POSITION": "accessor_12653" + }, + "indices": "accessor_12651", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3925": { + "name": "ID3925", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12675", + "POSITION": "accessor_12673" + }, + "indices": "accessor_12671", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3931": { + "name": "ID3931", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12695", + "POSITION": "accessor_12693" + }, + "indices": "accessor_12691", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3937": { + "name": "ID3937", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12715", + "POSITION": "accessor_12713" + }, + "indices": "accessor_12711", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3943": { + "name": "ID3943", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12735", + "POSITION": "accessor_12733" + }, + "indices": "accessor_12731", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3949": { + "name": "ID3949", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12755", + "POSITION": "accessor_12753" + }, + "indices": "accessor_12751", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID395": { + "name": "ID395", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1268" + }, + "indices": "accessor_1266", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3955": { + "name": "ID3955", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12775", + "POSITION": "accessor_12773" + }, + "indices": "accessor_12771", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3961": { + "name": "ID3961", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12795", + "POSITION": "accessor_12793" + }, + "indices": "accessor_12791", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3967": { + "name": "ID3967", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12815", + "POSITION": "accessor_12813" + }, + "indices": "accessor_12811", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3973": { + "name": "ID3973", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12835", + "POSITION": "accessor_12833" + }, + "indices": "accessor_12831", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID3979": { + "name": "ID3979", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12847" + }, + "indices": "accessor_12845", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3983": { + "name": "ID3983", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12859" + }, + "indices": "accessor_12857", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3987": { + "name": "ID3987", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12871" + }, + "indices": "accessor_12869", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID399": { + "name": "ID399", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1280" + }, + "indices": "accessor_1278", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3991": { + "name": "ID3991", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12883" + }, + "indices": "accessor_12881", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID3996": { + "name": "ID3996", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12903", + "POSITION": "accessor_12901" + }, + "indices": "accessor_12899", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4002": { + "name": "ID4002", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12923", + "POSITION": "accessor_12921" + }, + "indices": "accessor_12919", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4008": { + "name": "ID4008", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12943", + "POSITION": "accessor_12941" + }, + "indices": "accessor_12939", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4014": { + "name": "ID4014", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12963", + "POSITION": "accessor_12961" + }, + "indices": "accessor_12959", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4020": { + "name": "ID4020", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_12983", + "POSITION": "accessor_12981" + }, + "indices": "accessor_12979", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4026": { + "name": "ID4026", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13003", + "POSITION": "accessor_13001" + }, + "indices": "accessor_12999", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID403": { + "name": "ID403", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_1292" + }, + "indices": "accessor_1290", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4033": { + "name": "ID4033", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13023", + "POSITION": "accessor_13021" + }, + "indices": "accessor_13019", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4039": { + "name": "ID4039", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13043", + "POSITION": "accessor_13041" + }, + "indices": "accessor_13039", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4045": { + "name": "ID4045", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13063", + "POSITION": "accessor_13061" + }, + "indices": "accessor_13059", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4051": { + "name": "ID4051", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13083", + "POSITION": "accessor_13081" + }, + "indices": "accessor_13079", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4057": { + "name": "ID4057", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13103", + "POSITION": "accessor_13101" + }, + "indices": "accessor_13099", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4063": { + "name": "ID4063", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13123", + "POSITION": "accessor_13121" + }, + "indices": "accessor_13119", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4070": { + "name": "ID4070", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13143", + "POSITION": "accessor_13141" + }, + "indices": "accessor_13139", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4077": { + "name": "ID4077", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13163", + "POSITION": "accessor_13161" + }, + "indices": "accessor_13159", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID408": { + "name": "ID408", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1312", + "POSITION": "accessor_1310" + }, + "indices": "accessor_1308", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4083": { + "name": "ID4083", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13183", + "POSITION": "accessor_13181" + }, + "indices": "accessor_13179", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4089": { + "name": "ID4089", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13203", + "POSITION": "accessor_13201" + }, + "indices": "accessor_13199", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4095": { + "name": "ID4095", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13223", + "POSITION": "accessor_13221" + }, + "indices": "accessor_13219", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID41": { + "name": "ID41", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_140", + "POSITION": "accessor_138" + }, + "indices": "accessor_136", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4101": { + "name": "ID4101", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13243", + "POSITION": "accessor_13241" + }, + "indices": "accessor_13239", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4107": { + "name": "ID4107", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13263", + "POSITION": "accessor_13261" + }, + "indices": "accessor_13259", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4113": { + "name": "ID4113", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13283", + "POSITION": "accessor_13281" + }, + "indices": "accessor_13279", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4119": { + "name": "ID4119", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13303", + "POSITION": "accessor_13301" + }, + "indices": "accessor_13299", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4125": { + "name": "ID4125", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13315" + }, + "indices": "accessor_13313", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4129": { + "name": "ID4129", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13327" + }, + "indices": "accessor_13325", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4134": { + "name": "ID4134", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13347", + "POSITION": "accessor_13345" + }, + "indices": "accessor_13343", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID414": { + "name": "ID414", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1332", + "POSITION": "accessor_1330" + }, + "indices": "accessor_1328", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4141": { + "name": "ID4141", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13367", + "POSITION": "accessor_13365" + }, + "indices": "accessor_13363", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4147": { + "name": "ID4147", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13387", + "POSITION": "accessor_13385" + }, + "indices": "accessor_13383", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4153": { + "name": "ID4153", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13407", + "POSITION": "accessor_13405" + }, + "indices": "accessor_13403", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4159": { + "name": "ID4159", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13427", + "POSITION": "accessor_13425" + }, + "indices": "accessor_13423", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4165": { + "name": "ID4165", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13447", + "POSITION": "accessor_13445" + }, + "indices": "accessor_13443", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4171": { + "name": "ID4171", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13459" + }, + "indices": "accessor_13457", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4176": { + "name": "ID4176", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13479", + "POSITION": "accessor_13477" + }, + "indices": "accessor_13475", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4182": { + "name": "ID4182", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13499", + "POSITION": "accessor_13497" + }, + "indices": "accessor_13495", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4188": { + "name": "ID4188", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13519", + "POSITION": "accessor_13517" + }, + "indices": "accessor_13515", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4194": { + "name": "ID4194", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13539", + "POSITION": "accessor_13537" + }, + "indices": "accessor_13535", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID420": { + "name": "ID420", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1352", + "POSITION": "accessor_1350" + }, + "indices": "accessor_1348", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4200": { + "name": "ID4200", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13559", + "POSITION": "accessor_13557" + }, + "indices": "accessor_13555", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4206": { + "name": "ID4206", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13571" + }, + "indices": "accessor_13569", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4210": { + "name": "ID4210", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13583" + }, + "indices": "accessor_13581", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4214": { + "name": "ID4214", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13595" + }, + "indices": "accessor_13593", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4218": { + "name": "ID4218", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13607" + }, + "indices": "accessor_13605", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4222": { + "name": "ID4222", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13619" + }, + "indices": "accessor_13617", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4226": { + "name": "ID4226", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13631" + }, + "indices": "accessor_13629", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4230": { + "name": "ID4230", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13643" + }, + "indices": "accessor_13641", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4235": { + "name": "ID4235", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13663", + "POSITION": "accessor_13661" + }, + "indices": "accessor_13659", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4241": { + "name": "ID4241", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13683", + "POSITION": "accessor_13681" + }, + "indices": "accessor_13679", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4247": { + "name": "ID4247", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13703", + "POSITION": "accessor_13701" + }, + "indices": "accessor_13699", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4253": { + "name": "ID4253", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13723", + "POSITION": "accessor_13721" + }, + "indices": "accessor_13719", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4259": { + "name": "ID4259", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13743", + "POSITION": "accessor_13741" + }, + "indices": "accessor_13739", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID426": { + "name": "ID426", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1372", + "POSITION": "accessor_1370" + }, + "indices": "accessor_1368", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4265": { + "name": "ID4265", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13755" + }, + "indices": "accessor_13753", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4269": { + "name": "ID4269", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13767" + }, + "indices": "accessor_13765", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4273": { + "name": "ID4273", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13779" + }, + "indices": "accessor_13777", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4277": { + "name": "ID4277", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13791" + }, + "indices": "accessor_13789", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4281": { + "name": "ID4281", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13803" + }, + "indices": "accessor_13801", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4285": { + "name": "ID4285", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13815" + }, + "indices": "accessor_13813", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4289": { + "name": "ID4289", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13827" + }, + "indices": "accessor_13825", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4294": { + "name": "ID4294", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13847", + "POSITION": "accessor_13845" + }, + "indices": "accessor_13843", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4300": { + "name": "ID4300", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13867", + "POSITION": "accessor_13865" + }, + "indices": "accessor_13863", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4306": { + "name": "ID4306", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13887", + "POSITION": "accessor_13885" + }, + "indices": "accessor_13883", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4312": { + "name": "ID4312", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13907", + "POSITION": "accessor_13905" + }, + "indices": "accessor_13903", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4318": { + "name": "ID4318", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13927", + "POSITION": "accessor_13925" + }, + "indices": "accessor_13923", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID432": { + "name": "ID432", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1392", + "POSITION": "accessor_1390" + }, + "indices": "accessor_1388", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4324": { + "name": "ID4324", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_13939" + }, + "indices": "accessor_13937", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4329": { + "name": "ID4329", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13959", + "POSITION": "accessor_13957" + }, + "indices": "accessor_13955", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID4336": { + "name": "ID4336", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13979", + "POSITION": "accessor_13977" + }, + "indices": "accessor_13975", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4342": { + "name": "ID4342", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_13999", + "POSITION": "accessor_13997" + }, + "indices": "accessor_13995", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4348": { + "name": "ID4348", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14019", + "POSITION": "accessor_14017" + }, + "indices": "accessor_14015", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4355": { + "name": "ID4355", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14039", + "POSITION": "accessor_14037" + }, + "indices": "accessor_14035", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID4362": { + "name": "ID4362", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14059", + "POSITION": "accessor_14057" + }, + "indices": "accessor_14055", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4368": { + "name": "ID4368", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14079", + "POSITION": "accessor_14077" + }, + "indices": "accessor_14075", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4374": { + "name": "ID4374", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14099", + "POSITION": "accessor_14097" + }, + "indices": "accessor_14095", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID438": { + "name": "ID438", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1412", + "POSITION": "accessor_1410" + }, + "indices": "accessor_1408", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4381": { + "name": "ID4381", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14119", + "POSITION": "accessor_14117" + }, + "indices": "accessor_14115", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4387": { + "name": "ID4387", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14139", + "POSITION": "accessor_14137" + }, + "indices": "accessor_14135", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4393": { + "name": "ID4393", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14159", + "POSITION": "accessor_14157" + }, + "indices": "accessor_14155", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4400": { + "name": "ID4400", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14179", + "POSITION": "accessor_14177" + }, + "indices": "accessor_14175", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4406": { + "name": "ID4406", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14199", + "POSITION": "accessor_14197" + }, + "indices": "accessor_14195", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4412": { + "name": "ID4412", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14219", + "POSITION": "accessor_14217" + }, + "indices": "accessor_14215", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4419": { + "name": "ID4419", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14239", + "POSITION": "accessor_14237" + }, + "indices": "accessor_14235", + "material": "ID1683", + "primitive": 4 + } + ] + }, + "ID4426": { + "name": "ID4426", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14274", + "POSITION": "accessor_14272" + }, + "indices": "accessor_14267", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_14274", + "POSITION": "accessor_14272" + }, + "indices": "accessor_14270", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID4433": { + "name": "ID4433", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14309", + "POSITION": "accessor_14307" + }, + "indices": "accessor_14302", + "material": "ID1772", + "primitive": 4 + }, + { + "attributes": { + "NORMAL": "accessor_14309", + "POSITION": "accessor_14307" + }, + "indices": "accessor_14305", + "material": "ID1777", + "primitive": 4 + } + ] + }, + "ID444": { + "name": "ID444", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1432", + "POSITION": "accessor_1430" + }, + "indices": "accessor_1428", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4441": { + "name": "ID4441", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14329", + "POSITION": "accessor_14327" + }, + "indices": "accessor_14325", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4447": { + "name": "ID4447", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14349", + "POSITION": "accessor_14347" + }, + "indices": "accessor_14345", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4453": { + "name": "ID4453", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14369", + "POSITION": "accessor_14367" + }, + "indices": "accessor_14365", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4459": { + "name": "ID4459", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14389", + "POSITION": "accessor_14387" + }, + "indices": "accessor_14385", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4465": { + "name": "ID4465", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14409", + "POSITION": "accessor_14407" + }, + "indices": "accessor_14405", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4471": { + "name": "ID4471", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14429", + "POSITION": "accessor_14427" + }, + "indices": "accessor_14425", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4477": { + "name": "ID4477", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14449", + "POSITION": "accessor_14447" + }, + "indices": "accessor_14445", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4483": { + "name": "ID4483", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14469", + "POSITION": "accessor_14467" + }, + "indices": "accessor_14465", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4489": { + "name": "ID4489", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14489", + "POSITION": "accessor_14487" + }, + "indices": "accessor_14485", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4495": { + "name": "ID4495", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14509", + "POSITION": "accessor_14507" + }, + "indices": "accessor_14505", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID450": { + "name": "ID450", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1452", + "POSITION": "accessor_1450" + }, + "indices": "accessor_1448", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4501": { + "name": "ID4501", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14529", + "POSITION": "accessor_14527" + }, + "indices": "accessor_14525", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4507": { + "name": "ID4507", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14549", + "POSITION": "accessor_14547" + }, + "indices": "accessor_14545", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4513": { + "name": "ID4513", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14569", + "POSITION": "accessor_14567" + }, + "indices": "accessor_14565", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4519": { + "name": "ID4519", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14589", + "POSITION": "accessor_14587" + }, + "indices": "accessor_14585", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4525": { + "name": "ID4525", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14609", + "POSITION": "accessor_14607" + }, + "indices": "accessor_14605", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4531": { + "name": "ID4531", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14629", + "POSITION": "accessor_14627" + }, + "indices": "accessor_14625", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4537": { + "name": "ID4537", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14649", + "POSITION": "accessor_14647" + }, + "indices": "accessor_14645", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4543": { + "name": "ID4543", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14669", + "POSITION": "accessor_14667" + }, + "indices": "accessor_14665", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4549": { + "name": "ID4549", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14689", + "POSITION": "accessor_14687" + }, + "indices": "accessor_14685", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4555": { + "name": "ID4555", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14709", + "POSITION": "accessor_14707" + }, + "indices": "accessor_14705", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID456": { + "name": "ID456", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1472", + "POSITION": "accessor_1470" + }, + "indices": "accessor_1468", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4561": { + "name": "ID4561", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14729", + "POSITION": "accessor_14727" + }, + "indices": "accessor_14725", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4567": { + "name": "ID4567", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_14749", + "POSITION": "accessor_14747" + }, + "indices": "accessor_14745", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4573": { + "name": "ID4573", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14761" + }, + "indices": "accessor_14759", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4577": { + "name": "ID4577", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14773" + }, + "indices": "accessor_14771", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4581": { + "name": "ID4581", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14785" + }, + "indices": "accessor_14783", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4585": { + "name": "ID4585", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14797" + }, + "indices": "accessor_14795", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4589": { + "name": "ID4589", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14809" + }, + "indices": "accessor_14807", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4593": { + "name": "ID4593", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14821" + }, + "indices": "accessor_14819", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4597": { + "name": "ID4597", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14833" + }, + "indices": "accessor_14831", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4601": { + "name": "ID4601", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14845" + }, + "indices": "accessor_14843", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4605": { + "name": "ID4605", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14857" + }, + "indices": "accessor_14855", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4609": { + "name": "ID4609", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14869" + }, + "indices": "accessor_14867", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4613": { + "name": "ID4613", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14881" + }, + "indices": "accessor_14879", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4617": { + "name": "ID4617", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14893" + }, + "indices": "accessor_14891", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID462": { + "name": "ID462", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1492", + "POSITION": "accessor_1490" + }, + "indices": "accessor_1488", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4621": { + "name": "ID4621", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14905" + }, + "indices": "accessor_14903", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4625": { + "name": "ID4625", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14917" + }, + "indices": "accessor_14915", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4629": { + "name": "ID4629", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14929" + }, + "indices": "accessor_14927", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4633": { + "name": "ID4633", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14941" + }, + "indices": "accessor_14939", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4637": { + "name": "ID4637", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14953" + }, + "indices": "accessor_14951", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4641": { + "name": "ID4641", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14965" + }, + "indices": "accessor_14963", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4645": { + "name": "ID4645", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14977" + }, + "indices": "accessor_14975", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4649": { + "name": "ID4649", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_14989" + }, + "indices": "accessor_14987", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4653": { + "name": "ID4653", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15001" + }, + "indices": "accessor_14999", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4657": { + "name": "ID4657", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15013" + }, + "indices": "accessor_15011", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4661": { + "name": "ID4661", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15025" + }, + "indices": "accessor_15023", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4665": { + "name": "ID4665", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15037" + }, + "indices": "accessor_15035", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4669": { + "name": "ID4669", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15049" + }, + "indices": "accessor_15047", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4673": { + "name": "ID4673", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15061" + }, + "indices": "accessor_15059", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4677": { + "name": "ID4677", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15073" + }, + "indices": "accessor_15071", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID468": { + "name": "ID468", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1512", + "POSITION": "accessor_1510" + }, + "indices": "accessor_1508", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4681": { + "name": "ID4681", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15085" + }, + "indices": "accessor_15083", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4685": { + "name": "ID4685", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15097" + }, + "indices": "accessor_15095", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4689": { + "name": "ID4689", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15109" + }, + "indices": "accessor_15107", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4693": { + "name": "ID4693", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15121" + }, + "indices": "accessor_15119", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4697": { + "name": "ID4697", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15133" + }, + "indices": "accessor_15131", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID47": { + "name": "ID47", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_160", + "POSITION": "accessor_158" + }, + "indices": "accessor_156", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID4702": { + "name": "ID4702", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15153", + "POSITION": "accessor_15151" + }, + "indices": "accessor_15149", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4708": { + "name": "ID4708", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15173", + "POSITION": "accessor_15171" + }, + "indices": "accessor_15169", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4714": { + "name": "ID4714", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15193", + "POSITION": "accessor_15191" + }, + "indices": "accessor_15189", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4720": { + "name": "ID4720", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15205" + }, + "indices": "accessor_15203", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID4726": { + "name": "ID4726", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15225", + "POSITION": "accessor_15223" + }, + "indices": "accessor_15221", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4732": { + "name": "ID4732", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15245", + "POSITION": "accessor_15243" + }, + "indices": "accessor_15241", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4738": { + "name": "ID4738", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15265", + "POSITION": "accessor_15263" + }, + "indices": "accessor_15261", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID474": { + "name": "ID474", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1532", + "POSITION": "accessor_1530" + }, + "indices": "accessor_1528", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4744": { + "name": "ID4744", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15285", + "POSITION": "accessor_15283" + }, + "indices": "accessor_15281", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4750": { + "name": "ID4750", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15305", + "POSITION": "accessor_15303" + }, + "indices": "accessor_15301", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4756": { + "name": "ID4756", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15325", + "POSITION": "accessor_15323" + }, + "indices": "accessor_15321", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4762": { + "name": "ID4762", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15345", + "POSITION": "accessor_15343" + }, + "indices": "accessor_15341", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4768": { + "name": "ID4768", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15365", + "POSITION": "accessor_15363" + }, + "indices": "accessor_15361", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4774": { + "name": "ID4774", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15385", + "POSITION": "accessor_15383" + }, + "indices": "accessor_15381", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4780": { + "name": "ID4780", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15405", + "POSITION": "accessor_15403" + }, + "indices": "accessor_15401", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4786": { + "name": "ID4786", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15425", + "POSITION": "accessor_15423" + }, + "indices": "accessor_15421", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4792": { + "name": "ID4792", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15445", + "POSITION": "accessor_15443" + }, + "indices": "accessor_15441", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4798": { + "name": "ID4798", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15465", + "POSITION": "accessor_15463" + }, + "indices": "accessor_15461", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID480": { + "name": "ID480", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1552", + "POSITION": "accessor_1550" + }, + "indices": "accessor_1548", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4804": { + "name": "ID4804", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15485", + "POSITION": "accessor_15483" + }, + "indices": "accessor_15481", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4810": { + "name": "ID4810", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15505", + "POSITION": "accessor_15503" + }, + "indices": "accessor_15501", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4816": { + "name": "ID4816", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15525", + "POSITION": "accessor_15523" + }, + "indices": "accessor_15521", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4822": { + "name": "ID4822", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15545", + "POSITION": "accessor_15543" + }, + "indices": "accessor_15541", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4828": { + "name": "ID4828", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15565", + "POSITION": "accessor_15563" + }, + "indices": "accessor_15561", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4834": { + "name": "ID4834", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15585", + "POSITION": "accessor_15583" + }, + "indices": "accessor_15581", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4840": { + "name": "ID4840", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15605", + "POSITION": "accessor_15603" + }, + "indices": "accessor_15601", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4846": { + "name": "ID4846", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15625", + "POSITION": "accessor_15623" + }, + "indices": "accessor_15621", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4852": { + "name": "ID4852", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_15645", + "POSITION": "accessor_15643" + }, + "indices": "accessor_15641", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4858": { + "name": "ID4858", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15657" + }, + "indices": "accessor_15655", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID486": { + "name": "ID486", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1572", + "POSITION": "accessor_1570" + }, + "indices": "accessor_1568", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4862": { + "name": "ID4862", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15669" + }, + "indices": "accessor_15667", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4866": { + "name": "ID4866", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15681" + }, + "indices": "accessor_15679", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4870": { + "name": "ID4870", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15693" + }, + "indices": "accessor_15691", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4874": { + "name": "ID4874", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15705" + }, + "indices": "accessor_15703", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4878": { + "name": "ID4878", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15717" + }, + "indices": "accessor_15715", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4882": { + "name": "ID4882", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15729" + }, + "indices": "accessor_15727", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4886": { + "name": "ID4886", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15741" + }, + "indices": "accessor_15739", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4890": { + "name": "ID4890", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15753" + }, + "indices": "accessor_15751", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4894": { + "name": "ID4894", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15765" + }, + "indices": "accessor_15763", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4898": { + "name": "ID4898", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15777" + }, + "indices": "accessor_15775", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4902": { + "name": "ID4902", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15789" + }, + "indices": "accessor_15787", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4906": { + "name": "ID4906", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15801" + }, + "indices": "accessor_15799", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4910": { + "name": "ID4910", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15813" + }, + "indices": "accessor_15811", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4914": { + "name": "ID4914", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15825" + }, + "indices": "accessor_15823", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4918": { + "name": "ID4918", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15837" + }, + "indices": "accessor_15835", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID492": { + "name": "ID492", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1592", + "POSITION": "accessor_1590" + }, + "indices": "accessor_1588", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4922": { + "name": "ID4922", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15849" + }, + "indices": "accessor_15847", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4926": { + "name": "ID4926", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15861" + }, + "indices": "accessor_15859", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4930": { + "name": "ID4930", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15873" + }, + "indices": "accessor_15871", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4934": { + "name": "ID4934", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15885" + }, + "indices": "accessor_15883", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4938": { + "name": "ID4938", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15897" + }, + "indices": "accessor_15895", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4942": { + "name": "ID4942", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15909" + }, + "indices": "accessor_15907", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4946": { + "name": "ID4946", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15921" + }, + "indices": "accessor_15919", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4950": { + "name": "ID4950", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15933" + }, + "indices": "accessor_15931", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4954": { + "name": "ID4954", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15945" + }, + "indices": "accessor_15943", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4958": { + "name": "ID4958", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15957" + }, + "indices": "accessor_15955", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4962": { + "name": "ID4962", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15969" + }, + "indices": "accessor_15967", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4966": { + "name": "ID4966", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15981" + }, + "indices": "accessor_15979", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4970": { + "name": "ID4970", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_15993" + }, + "indices": "accessor_15991", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4974": { + "name": "ID4974", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16005" + }, + "indices": "accessor_16003", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4978": { + "name": "ID4978", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16017" + }, + "indices": "accessor_16015", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID498": { + "name": "ID498", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1612", + "POSITION": "accessor_1610" + }, + "indices": "accessor_1608", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID4982": { + "name": "ID4982", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16029" + }, + "indices": "accessor_16027", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID4987": { + "name": "ID4987", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16049", + "POSITION": "accessor_16047" + }, + "indices": "accessor_16045", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4993": { + "name": "ID4993", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16069", + "POSITION": "accessor_16067" + }, + "indices": "accessor_16065", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID4999": { + "name": "ID4999", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16089", + "POSITION": "accessor_16087" + }, + "indices": "accessor_16085", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5005": { + "name": "ID5005", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16101" + }, + "indices": "accessor_16099", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID5011": { + "name": "ID5011", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16121", + "POSITION": "accessor_16119" + }, + "indices": "accessor_16117", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5017": { + "name": "ID5017", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16141", + "POSITION": "accessor_16139" + }, + "indices": "accessor_16137", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5023": { + "name": "ID5023", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16161", + "POSITION": "accessor_16159" + }, + "indices": "accessor_16157", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5029": { + "name": "ID5029", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16181", + "POSITION": "accessor_16179" + }, + "indices": "accessor_16177", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5035": { + "name": "ID5035", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16201", + "POSITION": "accessor_16199" + }, + "indices": "accessor_16197", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID504": { + "name": "ID504", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1632", + "POSITION": "accessor_1630" + }, + "indices": "accessor_1628", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5041": { + "name": "ID5041", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16221", + "POSITION": "accessor_16219" + }, + "indices": "accessor_16217", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5047": { + "name": "ID5047", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16241", + "POSITION": "accessor_16239" + }, + "indices": "accessor_16237", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5053": { + "name": "ID5053", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16261", + "POSITION": "accessor_16259" + }, + "indices": "accessor_16257", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5059": { + "name": "ID5059", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16281", + "POSITION": "accessor_16279" + }, + "indices": "accessor_16277", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5065": { + "name": "ID5065", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16301", + "POSITION": "accessor_16299" + }, + "indices": "accessor_16297", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5071": { + "name": "ID5071", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16321", + "POSITION": "accessor_16319" + }, + "indices": "accessor_16317", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5077": { + "name": "ID5077", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16341", + "POSITION": "accessor_16339" + }, + "indices": "accessor_16337", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5083": { + "name": "ID5083", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16361", + "POSITION": "accessor_16359" + }, + "indices": "accessor_16357", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5089": { + "name": "ID5089", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16381", + "POSITION": "accessor_16379" + }, + "indices": "accessor_16377", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5095": { + "name": "ID5095", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16401", + "POSITION": "accessor_16399" + }, + "indices": "accessor_16397", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID510": { + "name": "ID510", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1652", + "POSITION": "accessor_1650" + }, + "indices": "accessor_1648", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5101": { + "name": "ID5101", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16421", + "POSITION": "accessor_16419" + }, + "indices": "accessor_16417", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5107": { + "name": "ID5107", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16441", + "POSITION": "accessor_16439" + }, + "indices": "accessor_16437", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5113": { + "name": "ID5113", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16461", + "POSITION": "accessor_16459" + }, + "indices": "accessor_16457", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5119": { + "name": "ID5119", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16481", + "POSITION": "accessor_16479" + }, + "indices": "accessor_16477", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5125": { + "name": "ID5125", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16501", + "POSITION": "accessor_16499" + }, + "indices": "accessor_16497", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5131": { + "name": "ID5131", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16521", + "POSITION": "accessor_16519" + }, + "indices": "accessor_16517", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5137": { + "name": "ID5137", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16541", + "POSITION": "accessor_16539" + }, + "indices": "accessor_16537", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5143": { + "name": "ID5143", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16553" + }, + "indices": "accessor_16551", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5147": { + "name": "ID5147", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16565" + }, + "indices": "accessor_16563", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5151": { + "name": "ID5151", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16577" + }, + "indices": "accessor_16575", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5155": { + "name": "ID5155", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16589" + }, + "indices": "accessor_16587", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5159": { + "name": "ID5159", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16601" + }, + "indices": "accessor_16599", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID516": { + "name": "ID516", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1672", + "POSITION": "accessor_1670" + }, + "indices": "accessor_1668", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5163": { + "name": "ID5163", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16613" + }, + "indices": "accessor_16611", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5167": { + "name": "ID5167", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16625" + }, + "indices": "accessor_16623", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5171": { + "name": "ID5171", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16637" + }, + "indices": "accessor_16635", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5175": { + "name": "ID5175", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16649" + }, + "indices": "accessor_16647", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5179": { + "name": "ID5179", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16661" + }, + "indices": "accessor_16659", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5183": { + "name": "ID5183", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16673" + }, + "indices": "accessor_16671", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5187": { + "name": "ID5187", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16685" + }, + "indices": "accessor_16683", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5191": { + "name": "ID5191", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16697" + }, + "indices": "accessor_16695", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5195": { + "name": "ID5195", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16709" + }, + "indices": "accessor_16707", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5199": { + "name": "ID5199", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16721" + }, + "indices": "accessor_16719", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5203": { + "name": "ID5203", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16733" + }, + "indices": "accessor_16731", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5207": { + "name": "ID5207", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16745" + }, + "indices": "accessor_16743", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5211": { + "name": "ID5211", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16757" + }, + "indices": "accessor_16755", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5215": { + "name": "ID5215", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16769" + }, + "indices": "accessor_16767", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5219": { + "name": "ID5219", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16781" + }, + "indices": "accessor_16779", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID522": { + "name": "ID522", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1692", + "POSITION": "accessor_1690" + }, + "indices": "accessor_1688", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5223": { + "name": "ID5223", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16793" + }, + "indices": "accessor_16791", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5227": { + "name": "ID5227", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16805" + }, + "indices": "accessor_16803", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5231": { + "name": "ID5231", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16817" + }, + "indices": "accessor_16815", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5235": { + "name": "ID5235", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16829" + }, + "indices": "accessor_16827", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5239": { + "name": "ID5239", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16841" + }, + "indices": "accessor_16839", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5243": { + "name": "ID5243", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16853" + }, + "indices": "accessor_16851", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5247": { + "name": "ID5247", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16865" + }, + "indices": "accessor_16863", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5251": { + "name": "ID5251", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16877" + }, + "indices": "accessor_16875", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5255": { + "name": "ID5255", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16889" + }, + "indices": "accessor_16887", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5259": { + "name": "ID5259", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16901" + }, + "indices": "accessor_16899", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5263": { + "name": "ID5263", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16913" + }, + "indices": "accessor_16911", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5267": { + "name": "ID5267", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16925" + }, + "indices": "accessor_16923", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5272": { + "name": "ID5272", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16945", + "POSITION": "accessor_16943" + }, + "indices": "accessor_16941", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5278": { + "name": "ID5278", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16965", + "POSITION": "accessor_16963" + }, + "indices": "accessor_16961", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID528": { + "name": "ID528", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1712", + "POSITION": "accessor_1710" + }, + "indices": "accessor_1708", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5284": { + "name": "ID5284", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_16985", + "POSITION": "accessor_16983" + }, + "indices": "accessor_16981", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5290": { + "name": "ID5290", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_16997" + }, + "indices": "accessor_16995", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID5296": { + "name": "ID5296", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17017", + "POSITION": "accessor_17015" + }, + "indices": "accessor_17013", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID53": { + "name": "ID53", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_180", + "POSITION": "accessor_178" + }, + "indices": "accessor_176", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5302": { + "name": "ID5302", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17037", + "POSITION": "accessor_17035" + }, + "indices": "accessor_17033", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5308": { + "name": "ID5308", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17057", + "POSITION": "accessor_17055" + }, + "indices": "accessor_17053", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5314": { + "name": "ID5314", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17069" + }, + "indices": "accessor_17067", + "material": "ID1594", + "primitive": 1 + } + ] + }, + "ID5319": { + "name": "ID5319", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17089", + "POSITION": "accessor_17087" + }, + "indices": "accessor_17085", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5325": { + "name": "ID5325", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17109", + "POSITION": "accessor_17107" + }, + "indices": "accessor_17105", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5331": { + "name": "ID5331", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17129", + "POSITION": "accessor_17127" + }, + "indices": "accessor_17125", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5337": { + "name": "ID5337", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17149", + "POSITION": "accessor_17147" + }, + "indices": "accessor_17145", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID534": { + "name": "ID534", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1732", + "POSITION": "accessor_1730" + }, + "indices": "accessor_1728", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5343": { + "name": "ID5343", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17169", + "POSITION": "accessor_17167" + }, + "indices": "accessor_17165", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5349": { + "name": "ID5349", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17189", + "POSITION": "accessor_17187" + }, + "indices": "accessor_17185", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5355": { + "name": "ID5355", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17209", + "POSITION": "accessor_17207" + }, + "indices": "accessor_17205", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5361": { + "name": "ID5361", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17229", + "POSITION": "accessor_17227" + }, + "indices": "accessor_17225", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5367": { + "name": "ID5367", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17249", + "POSITION": "accessor_17247" + }, + "indices": "accessor_17245", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5373": { + "name": "ID5373", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17269", + "POSITION": "accessor_17267" + }, + "indices": "accessor_17265", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5379": { + "name": "ID5379", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17289", + "POSITION": "accessor_17287" + }, + "indices": "accessor_17285", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5385": { + "name": "ID5385", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17309", + "POSITION": "accessor_17307" + }, + "indices": "accessor_17305", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5391": { + "name": "ID5391", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17329", + "POSITION": "accessor_17327" + }, + "indices": "accessor_17325", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5397": { + "name": "ID5397", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17349", + "POSITION": "accessor_17347" + }, + "indices": "accessor_17345", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID540": { + "name": "ID540", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1752", + "POSITION": "accessor_1750" + }, + "indices": "accessor_1748", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5403": { + "name": "ID5403", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17369", + "POSITION": "accessor_17367" + }, + "indices": "accessor_17365", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5409": { + "name": "ID5409", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17389", + "POSITION": "accessor_17387" + }, + "indices": "accessor_17385", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5415": { + "name": "ID5415", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17409", + "POSITION": "accessor_17407" + }, + "indices": "accessor_17405", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5421": { + "name": "ID5421", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17429", + "POSITION": "accessor_17427" + }, + "indices": "accessor_17425", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5427": { + "name": "ID5427", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17449", + "POSITION": "accessor_17447" + }, + "indices": "accessor_17445", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5433": { + "name": "ID5433", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17469", + "POSITION": "accessor_17467" + }, + "indices": "accessor_17465", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5439": { + "name": "ID5439", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17489", + "POSITION": "accessor_17487" + }, + "indices": "accessor_17485", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5445": { + "name": "ID5445", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17509", + "POSITION": "accessor_17507" + }, + "indices": "accessor_17505", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5451": { + "name": "ID5451", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17521" + }, + "indices": "accessor_17519", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5455": { + "name": "ID5455", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17533" + }, + "indices": "accessor_17531", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5459": { + "name": "ID5459", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17545" + }, + "indices": "accessor_17543", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID546": { + "name": "ID546", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1772", + "POSITION": "accessor_1770" + }, + "indices": "accessor_1768", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5463": { + "name": "ID5463", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17557" + }, + "indices": "accessor_17555", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5467": { + "name": "ID5467", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17569" + }, + "indices": "accessor_17567", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5471": { + "name": "ID5471", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17581" + }, + "indices": "accessor_17579", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5475": { + "name": "ID5475", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17593" + }, + "indices": "accessor_17591", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5479": { + "name": "ID5479", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17605" + }, + "indices": "accessor_17603", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5483": { + "name": "ID5483", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17617" + }, + "indices": "accessor_17615", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5487": { + "name": "ID5487", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17629" + }, + "indices": "accessor_17627", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5491": { + "name": "ID5491", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17641" + }, + "indices": "accessor_17639", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5495": { + "name": "ID5495", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17653" + }, + "indices": "accessor_17651", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5499": { + "name": "ID5499", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17665" + }, + "indices": "accessor_17663", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5503": { + "name": "ID5503", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17677" + }, + "indices": "accessor_17675", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5507": { + "name": "ID5507", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17689" + }, + "indices": "accessor_17687", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5511": { + "name": "ID5511", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17701" + }, + "indices": "accessor_17699", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5515": { + "name": "ID5515", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17713" + }, + "indices": "accessor_17711", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5519": { + "name": "ID5519", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17725" + }, + "indices": "accessor_17723", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID552": { + "name": "ID552", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1792", + "POSITION": "accessor_1790" + }, + "indices": "accessor_1788", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5523": { + "name": "ID5523", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17737" + }, + "indices": "accessor_17735", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5527": { + "name": "ID5527", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17749" + }, + "indices": "accessor_17747", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5531": { + "name": "ID5531", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17761" + }, + "indices": "accessor_17759", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5535": { + "name": "ID5535", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17773" + }, + "indices": "accessor_17771", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5539": { + "name": "ID5539", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17785" + }, + "indices": "accessor_17783", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5543": { + "name": "ID5543", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17797" + }, + "indices": "accessor_17795", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5547": { + "name": "ID5547", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17809" + }, + "indices": "accessor_17807", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5551": { + "name": "ID5551", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17821" + }, + "indices": "accessor_17819", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5555": { + "name": "ID5555", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17833" + }, + "indices": "accessor_17831", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5559": { + "name": "ID5559", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17845" + }, + "indices": "accessor_17843", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5563": { + "name": "ID5563", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17857" + }, + "indices": "accessor_17855", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5567": { + "name": "ID5567", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17869" + }, + "indices": "accessor_17867", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5571": { + "name": "ID5571", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17881" + }, + "indices": "accessor_17879", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID5575": { + "name": "ID5575", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_17893" + }, + "indices": "accessor_17891", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID558": { + "name": "ID558", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1812", + "POSITION": "accessor_1810" + }, + "indices": "accessor_1808", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5580": { + "name": "ID5580", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17913", + "POSITION": "accessor_17911" + }, + "indices": "accessor_17909", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5586": { + "name": "ID5586", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17933", + "POSITION": "accessor_17931" + }, + "indices": "accessor_17929", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5592": { + "name": "ID5592", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17953", + "POSITION": "accessor_17951" + }, + "indices": "accessor_17949", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5598": { + "name": "ID5598", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17973", + "POSITION": "accessor_17971" + }, + "indices": "accessor_17969", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5605": { + "name": "ID5605", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_17993", + "POSITION": "accessor_17991" + }, + "indices": "accessor_17989", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5611": { + "name": "ID5611", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18013", + "POSITION": "accessor_18011" + }, + "indices": "accessor_18009", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5617": { + "name": "ID5617", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18033", + "POSITION": "accessor_18031" + }, + "indices": "accessor_18029", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5623": { + "name": "ID5623", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18053", + "POSITION": "accessor_18051" + }, + "indices": "accessor_18049", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5632": { + "name": "ID5632", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18073", + "POSITION": "accessor_18071" + }, + "indices": "accessor_18069", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5638": { + "name": "ID5638", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18093", + "POSITION": "accessor_18091" + }, + "indices": "accessor_18089", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID564": { + "name": "ID564", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1832", + "POSITION": "accessor_1830" + }, + "indices": "accessor_1828", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5645": { + "name": "ID5645", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18113", + "POSITION": "accessor_18111" + }, + "indices": "accessor_18109", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5651": { + "name": "ID5651", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18133", + "POSITION": "accessor_18131" + }, + "indices": "accessor_18129", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5657": { + "name": "ID5657", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18153", + "POSITION": "accessor_18151" + }, + "indices": "accessor_18149", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5663": { + "name": "ID5663", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18173", + "POSITION": "accessor_18171" + }, + "indices": "accessor_18169", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5669": { + "name": "ID5669", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18193", + "POSITION": "accessor_18191" + }, + "indices": "accessor_18189", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5675": { + "name": "ID5675", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18213", + "POSITION": "accessor_18211" + }, + "indices": "accessor_18209", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5681": { + "name": "ID5681", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18233", + "POSITION": "accessor_18231" + }, + "indices": "accessor_18229", + "material": "ID1411", + "primitive": 4 + } + ] + }, + "ID5689": { + "name": "ID5689", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18253", + "POSITION": "accessor_18251" + }, + "indices": "accessor_18249", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5695": { + "name": "ID5695", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18273", + "POSITION": "accessor_18271" + }, + "indices": "accessor_18269", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID570": { + "name": "ID570", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1852", + "POSITION": "accessor_1850" + }, + "indices": "accessor_1848", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID5704": { + "name": "ID5704", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18293", + "POSITION": "accessor_18291" + }, + "indices": "accessor_18289", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID5710": { + "name": "ID5710", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_18313", + "POSITION": "accessor_18311" + }, + "indices": "accessor_18309", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID576": { + "name": "ID576", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1872", + "POSITION": "accessor_1870" + }, + "indices": "accessor_1868", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID582": { + "name": "ID582", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1892", + "POSITION": "accessor_1890" + }, + "indices": "accessor_1888", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID588": { + "name": "ID588", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1912", + "POSITION": "accessor_1910" + }, + "indices": "accessor_1908", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID59": { + "name": "ID59", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_200", + "POSITION": "accessor_198" + }, + "indices": "accessor_196", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID594": { + "name": "ID594", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1932", + "POSITION": "accessor_1930" + }, + "indices": "accessor_1928", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID600": { + "name": "ID600", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1952", + "POSITION": "accessor_1950" + }, + "indices": "accessor_1948", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID606": { + "name": "ID606", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1972", + "POSITION": "accessor_1970" + }, + "indices": "accessor_1968", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID612": { + "name": "ID612", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_1992", + "POSITION": "accessor_1990" + }, + "indices": "accessor_1988", + "material": "ID151", + "primitive": 4 + } + ] + }, + "ID618": { + "name": "ID618", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2004" + }, + "indices": "accessor_2002", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID622": { + "name": "ID622", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2016" + }, + "indices": "accessor_2014", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID626": { + "name": "ID626", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2028" + }, + "indices": "accessor_2026", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID630": { + "name": "ID630", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2040" + }, + "indices": "accessor_2038", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID634": { + "name": "ID634", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2052" + }, + "indices": "accessor_2050", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID638": { + "name": "ID638", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2064" + }, + "indices": "accessor_2062", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID642": { + "name": "ID642", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2076" + }, + "indices": "accessor_2074", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID646": { + "name": "ID646", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2088" + }, + "indices": "accessor_2086", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID65": { + "name": "ID65", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_220", + "POSITION": "accessor_218" + }, + "indices": "accessor_216", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID650": { + "name": "ID650", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2100" + }, + "indices": "accessor_2098", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID654": { + "name": "ID654", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2112" + }, + "indices": "accessor_2110", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID658": { + "name": "ID658", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2124" + }, + "indices": "accessor_2122", + "material": "ID363", + "primitive": 1 + } + ] + }, + "ID663": { + "name": "ID663", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2144", + "POSITION": "accessor_2142" + }, + "indices": "accessor_2140", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID669": { + "name": "ID669", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2164", + "POSITION": "accessor_2162" + }, + "indices": "accessor_2160", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID675": { + "name": "ID675", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2184", + "POSITION": "accessor_2182" + }, + "indices": "accessor_2180", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID681": { + "name": "ID681", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2204", + "POSITION": "accessor_2202" + }, + "indices": "accessor_2200", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID687": { + "name": "ID687", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2224", + "POSITION": "accessor_2222" + }, + "indices": "accessor_2220", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID693": { + "name": "ID693", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2244", + "POSITION": "accessor_2242" + }, + "indices": "accessor_2240", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID699": { + "name": "ID699", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2264", + "POSITION": "accessor_2262" + }, + "indices": "accessor_2260", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID705": { + "name": "ID705", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2284", + "POSITION": "accessor_2282" + }, + "indices": "accessor_2280", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID71": { + "name": "ID71", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_240", + "POSITION": "accessor_238" + }, + "indices": "accessor_236", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID711": { + "name": "ID711", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2304", + "POSITION": "accessor_2302" + }, + "indices": "accessor_2300", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID717": { + "name": "ID717", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2324", + "POSITION": "accessor_2322" + }, + "indices": "accessor_2320", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID723": { + "name": "ID723", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2344", + "POSITION": "accessor_2342" + }, + "indices": "accessor_2340", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID729": { + "name": "ID729", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2364", + "POSITION": "accessor_2362" + }, + "indices": "accessor_2360", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID735": { + "name": "ID735", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2384", + "POSITION": "accessor_2382" + }, + "indices": "accessor_2380", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID741": { + "name": "ID741", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2404", + "POSITION": "accessor_2402" + }, + "indices": "accessor_2400", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID747": { + "name": "ID747", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2424", + "POSITION": "accessor_2422" + }, + "indices": "accessor_2420", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID753": { + "name": "ID753", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2444", + "POSITION": "accessor_2442" + }, + "indices": "accessor_2440", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID759": { + "name": "ID759", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2464", + "POSITION": "accessor_2462" + }, + "indices": "accessor_2460", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID765": { + "name": "ID765", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2476" + }, + "indices": "accessor_2474", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID769": { + "name": "ID769", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2488" + }, + "indices": "accessor_2486", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID77": { + "name": "ID77", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_260", + "POSITION": "accessor_258" + }, + "indices": "accessor_256", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID773": { + "name": "ID773", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2500" + }, + "indices": "accessor_2498", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID777": { + "name": "ID777", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2512" + }, + "indices": "accessor_2510", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID781": { + "name": "ID781", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2524" + }, + "indices": "accessor_2522", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID786": { + "name": "ID786", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2544", + "POSITION": "accessor_2542" + }, + "indices": "accessor_2540", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID792": { + "name": "ID792", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2564", + "POSITION": "accessor_2562" + }, + "indices": "accessor_2560", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID798": { + "name": "ID798", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2584", + "POSITION": "accessor_2582" + }, + "indices": "accessor_2580", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID804": { + "name": "ID804", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2604", + "POSITION": "accessor_2602" + }, + "indices": "accessor_2600", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID810": { + "name": "ID810", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2624", + "POSITION": "accessor_2622" + }, + "indices": "accessor_2620", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID816": { + "name": "ID816", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2644", + "POSITION": "accessor_2642" + }, + "indices": "accessor_2640", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID822": { + "name": "ID822", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2664", + "POSITION": "accessor_2662" + }, + "indices": "accessor_2660", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID828": { + "name": "ID828", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2684", + "POSITION": "accessor_2682" + }, + "indices": "accessor_2680", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID83": { + "name": "ID83", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_280", + "POSITION": "accessor_278" + }, + "indices": "accessor_276", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID834": { + "name": "ID834", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2704", + "POSITION": "accessor_2702" + }, + "indices": "accessor_2700", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID840": { + "name": "ID840", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2724", + "POSITION": "accessor_2722" + }, + "indices": "accessor_2720", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID846": { + "name": "ID846", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2744", + "POSITION": "accessor_2742" + }, + "indices": "accessor_2740", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID852": { + "name": "ID852", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2764", + "POSITION": "accessor_2762" + }, + "indices": "accessor_2760", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID858": { + "name": "ID858", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2784", + "POSITION": "accessor_2782" + }, + "indices": "accessor_2780", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID864": { + "name": "ID864", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2804", + "POSITION": "accessor_2802" + }, + "indices": "accessor_2800", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID870": { + "name": "ID870", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2824", + "POSITION": "accessor_2822" + }, + "indices": "accessor_2820", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID876": { + "name": "ID876", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2844", + "POSITION": "accessor_2842" + }, + "indices": "accessor_2840", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID882": { + "name": "ID882", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2864", + "POSITION": "accessor_2862" + }, + "indices": "accessor_2860", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID888": { + "name": "ID888", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2876" + }, + "indices": "accessor_2874", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID89": { + "name": "ID89", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_300", + "POSITION": "accessor_298" + }, + "indices": "accessor_296", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID892": { + "name": "ID892", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2888" + }, + "indices": "accessor_2886", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID896": { + "name": "ID896", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2900" + }, + "indices": "accessor_2898", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID900": { + "name": "ID900", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2912" + }, + "indices": "accessor_2910", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID904": { + "name": "ID904", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_2924" + }, + "indices": "accessor_2922", + "material": "ID109", + "primitive": 1 + } + ] + }, + "ID909": { + "name": "ID909", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2944", + "POSITION": "accessor_2942" + }, + "indices": "accessor_2940", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID915": { + "name": "ID915", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2964", + "POSITION": "accessor_2962" + }, + "indices": "accessor_2960", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID921": { + "name": "ID921", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_2984", + "POSITION": "accessor_2982" + }, + "indices": "accessor_2980", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID927": { + "name": "ID927", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3004", + "POSITION": "accessor_3002" + }, + "indices": "accessor_3000", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID933": { + "name": "ID933", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3024", + "POSITION": "accessor_3022" + }, + "indices": "accessor_3020", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID939": { + "name": "ID939", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3044", + "POSITION": "accessor_3042" + }, + "indices": "accessor_3040", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID945": { + "name": "ID945", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3064", + "POSITION": "accessor_3062" + }, + "indices": "accessor_3060", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID95": { + "name": "ID95", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_320", + "POSITION": "accessor_318" + }, + "indices": "accessor_316", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID951": { + "name": "ID951", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3084", + "POSITION": "accessor_3082" + }, + "indices": "accessor_3080", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID957": { + "name": "ID957", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3104", + "POSITION": "accessor_3102" + }, + "indices": "accessor_3100", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID963": { + "name": "ID963", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3124", + "POSITION": "accessor_3122" + }, + "indices": "accessor_3120", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID969": { + "name": "ID969", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3144", + "POSITION": "accessor_3142" + }, + "indices": "accessor_3140", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID975": { + "name": "ID975", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3164", + "POSITION": "accessor_3162" + }, + "indices": "accessor_3160", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID981": { + "name": "ID981", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3184", + "POSITION": "accessor_3182" + }, + "indices": "accessor_3180", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID987": { + "name": "ID987", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3204", + "POSITION": "accessor_3202" + }, + "indices": "accessor_3200", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID993": { + "name": "ID993", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3224", + "POSITION": "accessor_3222" + }, + "indices": "accessor_3220", + "material": "ID5", + "primitive": 4 + } + ] + }, + "ID999": { + "name": "ID999", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_3244", + "POSITION": "accessor_3242" + }, + "indices": "accessor_3240", + "material": "ID5", + "primitive": 4 + } + ] + } + }, + "nodes": { + "ID1031": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32266, + 1.80443, + 0.151174, + 1 + ], + "meshes": [ + "ID1032", + "ID1038", + "ID1044", + "ID1050", + "ID1056", + "ID1062", + "ID1068", + "ID1074", + "ID1080", + "ID1086", + "ID1092", + "ID1098", + "ID1104", + "ID1110", + "ID1116", + "ID1122", + "ID1128", + "ID1134" + ], + "name": "group_7" + }, + "ID1140": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.12826, + 1.80443, + 0.151174, + 1 + ], + "meshes": [ + "ID1141", + "ID1147", + "ID1153", + "ID1159", + "ID1165", + "ID1171", + "ID1177", + "ID1183", + "ID1189", + "ID1195", + "ID1201", + "ID1205", + "ID1209", + "ID1213" + ], + "name": "group_8" + }, + "ID1217": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.12826, + 1.80443, + 0.541318, + 1 + ], + "meshes": [ + "ID1218", + "ID1224", + "ID1230", + "ID1236", + "ID1242", + "ID1248", + "ID1254", + "ID1260", + "ID1266", + "ID1272", + "ID1278", + "ID1282", + "ID1286", + "ID1290" + ], + "name": "group_9" + }, + "ID129": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + -0, + 0, + 1, + 0, + 3.12835, + 2.04827, + 0.12679, + 1 + ], + "meshes": [ + "ID130", + "ID136", + "ID142" + ], + "name": "group_1" + }, + "ID1294": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29824, + 3.02363, + 0.151174, + 1 + ], + "meshes": [ + "ID1295", + "ID1301", + "ID1307", + "ID1313", + "ID1319", + "ID1325", + "ID1331", + "ID1335", + "ID1339", + "ID1343", + "ID1347" + ], + "name": "group_10" + }, + "ID1351": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29824, + 1.56065, + 0.151174, + 1 + ], + "meshes": [ + "ID1352", + "ID1358", + "ID1364", + "ID1370", + "ID1376", + "ID1382", + "ID1388", + "ID1392", + "ID1396", + "ID1400", + "ID1404" + ], + "name": "group_11" + }, + "ID1408": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.59127, + 1.80443, + 0.151174, + 1 + ], + "meshes": [ + "ID1409", + "ID1417", + "ID1423", + "ID1429", + "ID1435", + "ID1441", + "ID1447", + "ID1453", + "ID1459", + "ID1465", + "ID1471", + "ID1477", + "ID1483", + "ID1489", + "ID1495", + "ID1501", + "ID1507", + "ID1513" + ], + "name": "group_12" + }, + "ID148": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.88445, + 2.5358, + 0.248595, + 1 + ], + "meshes": [ + "ID149", + "ID157", + "ID163", + "ID169", + "ID175", + "ID181", + "ID187", + "ID193", + "ID199", + "ID205", + "ID211", + "ID217", + "ID223", + "ID229", + "ID235", + "ID241", + "ID247", + "ID253", + "ID259", + "ID265", + "ID271", + "ID277", + "ID283", + "ID289", + "ID295", + "ID301", + "ID307", + "ID313", + "ID319", + "ID325", + "ID331", + "ID337", + "ID343", + "ID349", + "ID355", + "ID361", + "ID367", + "ID371", + "ID375", + "ID379", + "ID383", + "ID387", + "ID391", + "ID395", + "ID399", + "ID403" + ], + "name": "group_2" + }, + "ID1519": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.07849, + 1.80388, + 0.151174, + 1 + ], + "meshes": [ + "ID1520", + "ID1526", + "ID1532", + "ID1538", + "ID1544", + "ID1550", + "ID1556", + "ID1562", + "ID1568", + "ID1574", + "ID1580", + "ID1586", + "ID1592", + "ID1598", + "ID1602", + "ID1606" + ], + "name": "group_13" + }, + "ID1610": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29827, + 1.5605, + 0.248595, + 1 + ], + "meshes": [ + "ID1611", + "ID1617", + "ID1623", + "ID1629", + "ID1635", + "ID1641" + ], + "name": "group_14" + }, + "ID1645": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29827, + 3.26726, + 0.248595, + 1 + ], + "meshes": [ + "ID1646", + "ID1652", + "ID1658", + "ID1664", + "ID1670", + "ID1676" + ], + "name": "group_15" + }, + "ID1680": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.17712, + 1.31678, + 0.346246, + 1 + ], + "meshes": [ + "ID1681" + ], + "name": "group_16" + }, + "ID1689": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.1406, + 1.56059, + 0.30967, + 1 + ], + "meshes": [ + "ID1690" + ], + "name": "group_17" + }, + "ID1696": { + "children": [], + "matrix": [ + -0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + -0, + -0, + 1, + 0, + 3.12835, + 3.02363, + 0.12679, + 1 + ], + "meshes": [ + "ID1697", + "ID1703", + "ID1709" + ], + "name": "group_18" + }, + "ID1715": { + "children": [], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.1406, + 3.51131, + 0.30967, + 1 + ], + "meshes": [ + "ID1716" + ], + "name": "group_19" + }, + "ID1722": { + "children": [], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.17712, + 3.75512, + 0.346246, + 1 + ], + "meshes": [ + "ID1723" + ], + "name": "group_20" + }, + "ID1729": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.37209, + 2.29211, + 0.541318, + 1 + ], + "meshes": [ + "ID1730", + "ID1736" + ], + "name": "group_21" + }, + "ID1742": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.44457, + 1.31676, + 0.321862, + 1 + ], + "meshes": [ + "ID1743" + ], + "name": "group_22" + }, + "ID1749": { + "children": [], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.44457, + 3.75509, + 0.321862, + 1 + ], + "meshes": [ + "ID1750" + ], + "name": "group_23" + }, + "ID1756": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.95626, + 2.29211, + 0.321862, + 1 + ], + "meshes": [ + "ID1757" + ], + "name": "group_24" + }, + "ID1763": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.95626, + 3.26747, + 0.321862, + 1 + ], + "meshes": [ + "ID1764" + ], + "name": "group_25" + }, + "ID1770": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.6405, + 1.82873, + 0.297417, + 1 + ], + "meshes": [ + "ID1771" + ], + "name": "group_26" + }, + "ID1781": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.6405, + 3.04799, + 0.297417, + 1 + ], + "meshes": [ + "ID1782" + ], + "name": "group_27" + }, + "ID1788": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.07904, + 2.29211, + 0.541318, + 1 + ], + "meshes": [ + "ID1789", + "ID1795", + "ID1801", + "ID1807", + "ID1813", + "ID1819", + "ID1825", + "ID1829", + "ID1833", + "ID1837", + "ID1841" + ], + "name": "group_28" + }, + "ID1845": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32282, + 1.80443, + 0.541318, + 1 + ], + "meshes": [ + "ID1846", + "ID1852", + "ID1858", + "ID1864", + "ID1870", + "ID1876", + "ID1882", + "ID1886", + "ID1890", + "ID1894", + "ID1898" + ], + "name": "group_29" + }, + "ID1902": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32282, + 2.77979, + 0.541318, + 1 + ], + "meshes": [ + "ID1903", + "ID1909", + "ID1915", + "ID1921", + "ID1927", + "ID1933", + "ID1939", + "ID1943", + "ID1947", + "ID1951", + "ID1955" + ], + "name": "group_30" + }, + "ID1959": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29824, + 1.56065, + 0.541318, + 1 + ], + "meshes": [ + "ID1960", + "ID1966", + "ID1972", + "ID1978", + "ID1984", + "ID1990", + "ID1996", + "ID2000", + "ID2004", + "ID2008", + "ID2012" + ], + "name": "group_31" + }, + "ID2": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.34749, + 2.77964, + 0.248595, + 1 + ], + "meshes": [ + "ID3", + "ID11", + "ID65", + "ID71", + "ID77", + "ID83", + "ID89", + "ID95", + "ID101", + "ID107", + "ID113", + "ID117", + "ID17", + "ID121", + "ID125", + "ID23", + "ID29", + "ID35", + "ID41", + "ID47", + "ID53", + "ID59" + ], + "name": "group_0" + }, + "ID2016": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29824, + 3.02363, + 0.541318, + 1 + ], + "meshes": [ + "ID2017", + "ID2023", + "ID2029", + "ID2035", + "ID2041", + "ID2047", + "ID2053", + "ID2057", + "ID2061", + "ID2065", + "ID2069" + ], + "name": "group_32" + }, + "ID2073": { + "children": [], + "matrix": [ + 0, + 1, + -0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 4.59127, + 2.04827, + 0.541227, + 1 + ], + "meshes": [ + "ID2074", + "ID2080", + "ID2086", + "ID2092", + "ID2098", + "ID2104", + "ID2110", + "ID2116", + "ID2122", + "ID2128", + "ID2134", + "ID2138" + ], + "name": "group_33" + }, + "ID2142": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + 0, + 0, + -0, + 0, + 1, + 0, + 3.85968, + 2.53595, + 0.541318, + 1 + ], + "meshes": [ + "ID2143", + "ID2149" + ], + "name": "group_34" + }, + "ID2155": { + "children": [], + "matrix": [ + -1, + 0, + 0, + 0, + -0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.34736, + 3.02363, + 0.541318, + 1 + ], + "meshes": [ + "ID2156", + "ID2162" + ], + "name": "group_35" + }, + "ID2168": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29827, + 1.80449, + 0.638854, + 1 + ], + "meshes": [ + "ID2169", + "ID2175", + "ID2181", + "ID2187" + ], + "name": "group_36" + }, + "ID2193": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29827, + 3.02363, + 0.638854, + 1 + ], + "meshes": [ + "ID2194", + "ID2200", + "ID2206", + "ID2212" + ], + "name": "group_37" + }, + "ID2218": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 3.12836, + 2.77973, + 0.638854, + 1 + ], + "meshes": [ + "ID2219", + "ID2225", + "ID2231", + "ID2237" + ], + "name": "group_38" + }, + "ID2243": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 3.12836, + 2.77973, + 0.73639, + 1 + ], + "meshes": [ + "ID2244", + "ID2250", + "ID2256", + "ID2262" + ], + "name": "group_39" + }, + "ID2268": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 1.80428, + 0.736275, + 1 + ], + "meshes": [ + "ID2269", + "ID2275", + "ID2281", + "ID2287", + "ID2293", + "ID2299", + "ID2305", + "ID2311", + "ID2317", + "ID2323", + "ID2329", + "ID2335", + "ID2341", + "ID2347", + "ID2353", + "ID2359", + "ID2365", + "ID2371", + "ID2375", + "ID2379", + "ID2383", + "ID2387" + ], + "name": "group_40" + }, + "ID2391": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 3.02342, + 0.736275, + 1 + ], + "meshes": [ + "ID2392", + "ID2398", + "ID2404", + "ID2410", + "ID2416", + "ID2422", + "ID2428", + "ID2434", + "ID2440", + "ID2446", + "ID2452", + "ID2458", + "ID2464", + "ID2470", + "ID2476", + "ID2482", + "ID2488", + "ID2494", + "ID2498", + "ID2502", + "ID2506", + "ID2510" + ], + "name": "group_41" + }, + "ID2514": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.4722, + 2.04827, + 0.321862, + 1 + ], + "meshes": [ + "ID2515" + ], + "name": "group_42" + }, + "ID2521": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.61609, + 1.80443, + 0.638854, + 1 + ], + "meshes": [ + "ID2522", + "ID2528", + "ID2534", + "ID2540", + "ID2546", + "ID2552", + "ID2558", + "ID2564", + "ID2570", + "ID2576", + "ID2582", + "ID2586", + "ID2590", + "ID2594" + ], + "name": "group_43" + }, + "ID2598": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.4722, + 2.04827, + 0.809542, + 1 + ], + "meshes": [ + "ID2599" + ], + "name": "group_44" + }, + "ID2605": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.4722, + 3.51131, + 0.321862, + 1 + ], + "meshes": [ + "ID2606" + ], + "name": "group_45" + }, + "ID2612": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 5.4722, + 3.51131, + 0.809542, + 1 + ], + "meshes": [ + "ID2613" + ], + "name": "group_46" + }, + "ID2619": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.88445, + 2.04827, + 0.541318, + 1 + ], + "meshes": [ + "ID2620", + "ID2626", + "ID2632" + ], + "name": "group_47" + }, + "ID2638": { + "children": [], + "matrix": [ + -1, + 0, + -0, + 0, + -0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.12829, + 3.02363, + 0.541318, + 1 + ], + "meshes": [ + "ID2639", + "ID2645", + "ID2651" + ], + "name": "group_48" + }, + "ID2657": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 3.61621, + 2.53592, + 0.73639, + 1 + ], + "meshes": [ + "ID2658", + "ID2664", + "ID2670", + "ID2676" + ], + "name": "group_49" + }, + "ID2682": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 3.61621, + 3.0236, + 0.73639, + 1 + ], + "meshes": [ + "ID2683", + "ID2689", + "ID2695", + "ID2701" + ], + "name": "group_50" + }, + "ID2707": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.81059, + 1.80443, + 1.029, + 1 + ], + "meshes": [ + "ID2708", + "ID2714", + "ID2720", + "ID2726", + "ID2732", + "ID2738" + ], + "name": "group_51" + }, + "ID2744": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + 0, + 0, + -0, + 0, + 1, + 0, + 5.81059, + 3.26741, + 1.029, + 1 + ], + "meshes": [ + "ID2745", + "ID2751", + "ID2757", + "ID2763", + "ID2769", + "ID2775" + ], + "name": "group_52" + }, + "ID2781": { + "children": [], + "matrix": [ + 0.989016, + 0, + -0.147809, + 0, + -0, + 1, + 0, + 0, + 0.147809, + 0, + 0.989016, + 0, + 6.77275, + 1.8045, + 0.614019, + 1 + ], + "meshes": [ + "ID2782" + ], + "name": "group_53" + }, + "ID2788": { + "children": [], + "matrix": [ + 0.989016, + 0, + -0.147809, + 0, + -0, + 1, + 0, + 0, + 0.147809, + 0, + 0.989016, + 0, + 6.80862, + 1.80449, + 0.74161, + 1 + ], + "meshes": [ + "ID2789", + "ID2795", + "ID2801", + "ID2805", + "ID2809" + ], + "name": "group_54" + }, + "ID2813": { + "children": [], + "matrix": [ + 0.989016, + 0, + -0.147809, + 0, + -0, + 1, + 0, + 0, + 0.147809, + 0, + 0.989016, + 0, + 7.20568, + 1.80469, + 0.767788, + 1 + ], + "meshes": [ + "ID2814", + "ID2820", + "ID2826", + "ID2832", + "ID2838", + "ID2844", + "ID2850" + ], + "name": "group_55" + }, + "ID2856": { + "children": [], + "matrix": [ + 0.989016, + 0, + -0.147809, + 0, + -0, + 1, + 0, + 0, + 0.147809, + 0, + 0.989016, + 0, + 6.77224, + 3.0234, + 0.6145, + 1 + ], + "meshes": [ + "ID2857" + ], + "name": "group_56" + }, + "ID2863": { + "children": [], + "matrix": [ + 0.989016, + 0, + -0.147809, + 0, + -0, + 1, + 0, + 0, + 0.147809, + 0, + 0.989016, + 0, + 6.8081, + 3.02338, + 0.74209, + 1 + ], + "meshes": [ + "ID2864", + "ID2870", + "ID2876", + "ID2880", + "ID2884" + ], + "name": "group_57" + }, + "ID2888": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29818, + 1.80443, + 1.029, + 1 + ], + "meshes": [ + "ID2889", + "ID2895", + "ID2901", + "ID2907", + "ID2913" + ], + "name": "group_58" + }, + "ID2917": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29818, + 3.02357, + 1.029, + 1 + ], + "meshes": [ + "ID2918", + "ID2924", + "ID2930", + "ID2936", + "ID2942" + ], + "name": "group_59" + }, + "ID2946": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.85996, + 2.29211, + 0.833926, + 1 + ], + "meshes": [ + "ID2947", + "ID2953", + "ID2959", + "ID2965", + "ID2971", + "ID2977", + "ID2983", + "ID2989", + "ID2993", + "ID2997", + "ID3001" + ], + "name": "group_60" + }, + "ID3005": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.34699, + 2.04827, + 0.833926, + 1 + ], + "meshes": [ + "ID3006", + "ID3012", + "ID3018", + "ID3024", + "ID3030", + "ID3036", + "ID3042", + "ID3048", + "ID3054", + "ID3058" + ], + "name": "group_61" + }, + "ID3062": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.88449, + 2.29211, + 0.833926, + 1 + ], + "meshes": [ + "ID3063", + "ID3069", + "ID3075", + "ID3081", + "ID3087", + "ID3093", + "ID3099", + "ID3103", + "ID3107", + "ID3111", + "ID3115" + ], + "name": "group_62" + }, + "ID3119": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.85999, + 2.04815, + 0.833811, + 1 + ], + "meshes": [ + "ID3120", + "ID3126", + "ID3132", + "ID3138", + "ID3144", + "ID3150" + ], + "name": "group_63" + }, + "ID3154": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.85999, + 2.77961, + 0.833811, + 1 + ], + "meshes": [ + "ID3155", + "ID3161", + "ID3167", + "ID3173", + "ID3179", + "ID3185" + ], + "name": "group_64" + }, + "ID3189": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 4.00934, + 2.29214, + 0.907078, + 1 + ], + "meshes": [ + "ID3190" + ], + "name": "group_65" + }, + "ID3196": { + "children": [], + "matrix": [ + 0, + -1, + 0, + 0, + 1, + 0, + -0, + 0, + 0, + 0, + 1, + 0, + 4.00934, + 3.26744, + 0.907078, + 1 + ], + "meshes": [ + "ID3197" + ], + "name": "group_66" + }, + "ID3203": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + -0, + 0, + 1, + 0, + 2.88445, + 2.29211, + 0.833926, + 1 + ], + "meshes": [ + "ID3204", + "ID3210" + ], + "name": "group_67" + }, + "ID3216": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + -0, + 0, + 1, + 0, + 2.88445, + 3.02363, + 0.833926, + 1 + ], + "meshes": [ + "ID3217", + "ID3223" + ], + "name": "group_68" + }, + "ID3229": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 3.61621, + 3.02366, + 0.833926, + 1 + ], + "meshes": [ + "ID3230", + "ID3236", + "ID3242", + "ID3248" + ], + "name": "group_69" + }, + "ID3254": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.83568, + 2.07266, + 0.907078, + 1 + ], + "meshes": [ + "ID3255" + ], + "name": "group_70" + }, + "ID3261": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.83568, + 2.80418, + 0.907078, + 1 + ], + "meshes": [ + "ID3262" + ], + "name": "group_71" + }, + "ID3268": { + "children": [], + "matrix": [ + 1e-07, + 5.21e-05, + 1, + 0, + -0.0006771, + 1, + -5.21e-05, + 0, + -1, + -0.0006771, + 1e-07, + 0, + 5.73754, + 1.56041, + 0.175602, + 1 + ], + "meshes": [ + "ID3269", + "ID3275", + "ID3281", + "ID3287", + "ID3293", + "ID3299", + "ID3305", + "ID3311", + "ID3317", + "ID3323", + "ID3329", + "ID3333" + ], + "name": "group_72" + }, + "ID3337": { + "children": [], + "matrix": [ + 1e-07, + 5.21e-05, + 1, + 0, + -0.0006771, + 1, + -5.21e-05, + 0, + -1, + -0.0006771, + 1e-07, + 0, + 5.73754, + 3.26717, + 0.175602, + 1 + ], + "meshes": [ + "ID3338", + "ID3344", + "ID3350", + "ID3356", + "ID3362", + "ID3368", + "ID3374", + "ID3380", + "ID3386", + "ID3392", + "ID3398", + "ID3402" + ], + "name": "group_73" + }, + "ID3406": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + -0, + 0, + 1, + 0, + 2.88429, + 2.77979, + 0.931347, + 1 + ], + "meshes": [ + "ID3407", + "ID3413", + "ID3419", + "ID3425", + "ID3431", + "ID3437" + ], + "name": "group_74" + }, + "ID3441": { + "children": [], + "matrix": [ + 0, + 1, + -0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 4.59127, + 2.04827, + 0.931267, + 1 + ], + "meshes": [ + "ID3442", + "ID3448", + "ID3454", + "ID3460", + "ID3466", + "ID3472", + "ID3478", + "ID3484", + "ID3490", + "ID3496", + "ID3502", + "ID3506" + ], + "name": "group_75" + }, + "ID3510": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.88445, + 2.4628, + 1.02898, + 1 + ], + "meshes": [ + "ID3511" + ], + "name": "group_76" + }, + "ID3517": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.59573, + 2.14581, + 0.71199, + 1 + ], + "meshes": [ + "ID3518", + "ID3524", + "ID3530", + "ID3536", + "ID3542", + "ID3548", + "ID3554", + "ID3560", + "ID3566", + "ID3570", + "ID3574", + "ID3578", + "ID3582" + ], + "name": "group_77" + }, + "ID3586": { + "children": [], + "matrix": [ + -1, + 0, + -0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + -1, + 0, + 4.10351, + 2.42635, + 1.21191, + 1 + ], + "meshes": [ + "ID3587", + "ID3593", + "ID3597" + ], + "name": "group_78" + }, + "ID3601": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.6158, + 2.37825, + 0.944382, + 1 + ], + "meshes": [ + "ID3602", + "ID3608", + "ID3614", + "ID3620", + "ID3626", + "ID3632", + "ID3638", + "ID3644", + "ID3650" + ], + "name": "group_79" + }, + "ID3656": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.10345, + 2.42632, + 0.992394, + 1 + ], + "meshes": [ + "ID3657", + "ID3663", + "ID3667" + ], + "name": "group_80" + }, + "ID3671": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 6.29824, + 1.80443, + 1.12653, + 1 + ], + "meshes": [ + "ID3672", + "ID3678", + "ID3684", + "ID3690", + "ID3696", + "ID3702", + "ID3708", + "ID3714", + "ID3720", + "ID3726", + "ID3732", + "ID3738", + "ID3744", + "ID3748", + "ID3752", + "ID3756" + ], + "name": "group_81" + }, + "ID3760": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.81022, + 2.04827, + 1.12653, + 1 + ], + "meshes": [ + "ID3761", + "ID3767", + "ID3773", + "ID3779", + "ID3785", + "ID3791", + "ID3797", + "ID3803", + "ID3809", + "ID3813" + ], + "name": "group_82" + }, + "ID3817": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 2.8839, + 2.29263, + 1.12653, + 1 + ], + "meshes": [ + "ID3818", + "ID3824", + "ID3830", + "ID3836", + "ID3842", + "ID3848", + "ID3854", + "ID3860", + "ID3866", + "ID3872", + "ID3878", + "ID3884", + "ID3890", + "ID3894", + "ID3898", + "ID3902" + ], + "name": "group_83" + }, + "ID3906": { + "children": [], + "matrix": [ + -0, + -1, + 0, + 0, + 1, + -0, + 0, + 0, + 0, + 0, + 1, + 0, + 2.8839, + 3.02421, + 1.12653, + 1 + ], + "meshes": [ + "ID3907", + "ID3913", + "ID3919", + "ID3925", + "ID3931", + "ID3937", + "ID3943", + "ID3949", + "ID3955", + "ID3961", + "ID3967", + "ID3973", + "ID3979", + "ID3983", + "ID3987", + "ID3991" + ], + "name": "group_84" + }, + "ID3995": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.85961, + 2.04835, + 1.22407, + 1 + ], + "meshes": [ + "ID3996", + "ID4002", + "ID4008", + "ID4014", + "ID4020", + "ID4026" + ], + "name": "group_85" + }, + "ID4032": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 3.85961, + 2.77981, + 1.22407, + 1 + ], + "meshes": [ + "ID4033", + "ID4039", + "ID4045", + "ID4051", + "ID4057", + "ID4063" + ], + "name": "group_86" + }, + "ID4069": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.34732, + 2.29216, + 1.22407, + 1 + ], + "meshes": [ + "ID4070" + ], + "name": "group_87" + }, + "ID407": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.88445, + 2.29196, + 0.248595, + 1 + ], + "meshes": [ + "ID582", + "ID588", + "ID594", + "ID600", + "ID606", + "ID612", + "ID618", + "ID622", + "ID626", + "ID630", + "ID634", + "ID638", + "ID642", + "ID646", + "ID650", + "ID654", + "ID658", + "ID408", + "ID414", + "ID420", + "ID426", + "ID432", + "ID438", + "ID444", + "ID450", + "ID456", + "ID462", + "ID468", + "ID474", + "ID480", + "ID486", + "ID492", + "ID498", + "ID504", + "ID510", + "ID516", + "ID522", + "ID528", + "ID534", + "ID540", + "ID546", + "ID552", + "ID558", + "ID564", + "ID570", + "ID576" + ], + "name": "group_3" + }, + "ID4076": { + "children": [], + "matrix": [ + 1e-07, + -0.0003751, + 1, + 0, + -0.0003751, + 1, + 0.0003751, + 0, + -1, + -0.0003751, + -0, + 0, + 2.88472, + 2.04833, + 0.882341, + 1 + ], + "meshes": [ + "ID4077", + "ID4083", + "ID4089", + "ID4095", + "ID4101", + "ID4107", + "ID4113", + "ID4119", + "ID4125", + "ID4129" + ], + "name": "group_88" + }, + "ID4133": { + "children": [], + "matrix": [ + 0.999902, + 9.5e-06, + 0.0139622, + 0, + -9.4e-06, + 1, + -8e-07, + 0, + -0.0139622, + 7e-07, + 0.999902, + 0, + 6.21169, + 1.80423, + 1.66771, + 1 + ], + "meshes": [ + "ID4134" + ], + "name": "group_89" + }, + "ID4140": { + "children": [], + "matrix": [ + 0.999902, + 9.5e-06, + 0.0139622, + 0, + -9.4e-06, + 1, + -8e-07, + 0, + -0.0139622, + 7e-07, + 0.999902, + 0, + 6.06172, + 2.04827, + 0.86128, + 1 + ], + "meshes": [ + "ID4141", + "ID4147", + "ID4153", + "ID4159", + "ID4165", + "ID4171" + ], + "name": "group_90" + }, + "ID4175": { + "children": [], + "matrix": [ + 0.999902, + 9.5e-06, + 0.0139622, + 0, + -9.4e-06, + 1, + -8e-07, + 0, + -0.0139622, + 7e-07, + 0.999902, + 0, + 5.9357, + 2.04829, + 0.297939, + 1 + ], + "meshes": [ + "ID4176", + "ID4182", + "ID4188", + "ID4194", + "ID4200", + "ID4206", + "ID4210", + "ID4214", + "ID4218", + "ID4222", + "ID4226", + "ID4230" + ], + "name": "group_91" + }, + "ID4234": { + "children": [], + "matrix": [ + 0.999906, + -0.0001172, + 0.0136824, + 0, + 0.0001172, + 1, + -1.1e-06, + 0, + -0.0136824, + 2.7e-06, + 0.999906, + 0, + 5.93578, + 2.77984, + 0.297938, + 1 + ], + "meshes": [ + "ID4235", + "ID4241", + "ID4247", + "ID4253", + "ID4259", + "ID4265", + "ID4269", + "ID4273", + "ID4277", + "ID4281", + "ID4285", + "ID4289" + ], + "name": "group_92" + }, + "ID4293": { + "children": [], + "matrix": [ + 0.999906, + -0.0001172, + 0.0136824, + 0, + 0.0001172, + 1, + -1.1e-06, + 0, + -0.0136824, + 2.7e-06, + 0.999906, + 0, + 6.0618, + 2.77982, + 0.861279, + 1 + ], + "meshes": [ + "ID4294", + "ID4300", + "ID4306", + "ID4312", + "ID4318", + "ID4324" + ], + "name": "group_93" + }, + "ID4328": { + "children": [], + "matrix": [ + 0.981959, + -2.55e-05, + -0.189095, + 0, + 1.39e-05, + 1, + -6.3e-05, + 0, + 0.189095, + 5.92e-05, + 0.981959, + 0, + 4.58014, + 1.80455, + 1.8281, + 1 + ], + "meshes": [ + "ID4329" + ], + "name": "group_94" + }, + "ID4335": { + "children": [], + "matrix": [ + 0.981959, + -2.55e-05, + -0.189095, + 0, + 1.39e-05, + 1, + -6.3e-05, + 0, + 0.189095, + 5.92e-05, + 0.981959, + 0, + 4.36065, + 1.81796, + 1.55677, + 1 + ], + "meshes": [ + "ID4336", + "ID4342", + "ID4348" + ], + "name": "group_95" + }, + "ID4354": { + "children": [], + "matrix": [ + 0.981959, + -2.55e-05, + -0.189095, + 0, + 1.39e-05, + 1, + -6.3e-05, + 0, + 0.189095, + 5.92e-05, + 0.981959, + 0, + 4.13186, + 1.85343, + 1.14823, + 1 + ], + "meshes": [ + "ID4355" + ], + "name": "group_96" + }, + "ID4361": { + "children": [], + "matrix": [ + 0.981959, + -2.55e-05, + -0.189095, + 0, + 1.39e-05, + 1, + -6.3e-05, + 0, + 0.189095, + 5.92e-05, + 0.981959, + 0, + 3.89688, + 1.80451, + 0.911209, + 1 + ], + "meshes": [ + "ID4362", + "ID4368", + "ID4374" + ], + "name": "group_97" + }, + "ID4380": { + "children": [], + "matrix": [ + 0.981942, + -0.00021, + -0.189181, + 0, + -0.0002038, + -1, + 5.22e-05, + 0, + 0.189181, + 1.27e-05, + 0.981942, + 0, + 4.36066, + 3.2544, + 1.5565, + 1 + ], + "meshes": [ + "ID4381", + "ID4387", + "ID4393" + ], + "name": "group_98" + }, + "ID4399": { + "children": [], + "matrix": [ + 0.981942, + -0.00021, + -0.189181, + 0, + -0.0002038, + -1, + 5.22e-05, + 0, + 0.189181, + 1.27e-05, + 0.981942, + 0, + 3.89689, + 3.2676, + 0.910931, + 1 + ], + "meshes": [ + "ID4400", + "ID4406", + "ID4412" + ], + "name": "group_99" + }, + "ID4418": { + "children": [], + "matrix": [ + 0.981942, + -0.00021, + -0.189181, + 0, + -0.0002038, + -1, + 5.22e-05, + 0, + 0.189181, + 1.27e-05, + 0.981942, + 0, + 4.13187, + 3.21877, + 1.14797, + 1 + ], + "meshes": [ + "ID4419" + ], + "name": "group_100" + }, + "ID4425": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.68925, + 2.04827, + 0.760622, + 1 + ], + "meshes": [ + "ID4426" + ], + "name": "group_101" + }, + "ID4432": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.68925, + 2.53589, + 0.760622, + 1 + ], + "meshes": [ + "ID4433" + ], + "name": "group_102" + }, + "ID4439": { + "children": [ + "ID4440", + "ID4701" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.63256, + 0.902256, + -0.199448, + 1 + ], + "name": "group_103" + }, + "ID4440": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + -0.0021897, + 0, + -0.00309245, + 1 + ], + "meshes": [ + "ID4441", + "ID4447", + "ID4453", + "ID4459", + "ID4465", + "ID4471", + "ID4477", + "ID4483", + "ID4489", + "ID4495", + "ID4501", + "ID4507", + "ID4513", + "ID4519", + "ID4525", + "ID4531", + "ID4537", + "ID4543", + "ID4549", + "ID4555", + "ID4561", + "ID4567", + "ID4573", + "ID4577", + "ID4581", + "ID4585", + "ID4589", + "ID4593", + "ID4597", + "ID4601", + "ID4605", + "ID4609", + "ID4613", + "ID4617", + "ID4621", + "ID4625", + "ID4629", + "ID4633", + "ID4637", + "ID4641", + "ID4645", + "ID4649", + "ID4653", + "ID4657", + "ID4661", + "ID4665", + "ID4669", + "ID4673", + "ID4677", + "ID4681", + "ID4685", + "ID4689", + "ID4693", + "ID4697" + ], + "name": "group_104" + }, + "ID4701": { + "children": [], + "matrix": [ + 0.997336, + 0, + 0.0729454, + 0, + 0, + 1, + -0, + 0, + -0.0729454, + 0, + 0.997336, + 0, + 0.18844, + 0.048768, + 0.119553, + 1 + ], + "meshes": [ + "ID4702", + "ID4708", + "ID4714", + "ID4720" + ], + "name": "group_105" + }, + "ID4724": { + "children": [ + "ID4725", + "ID4986" + ], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 2.63256, + 4.16965, + -0.199448, + 1 + ], + "name": "group_106" + }, + "ID4725": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + -0.0021897, + 0, + -0.00309245, + 1 + ], + "meshes": [ + "ID4726", + "ID4732", + "ID4738", + "ID4744", + "ID4750", + "ID4756", + "ID4762", + "ID4768", + "ID4774", + "ID4780", + "ID4786", + "ID4792", + "ID4798", + "ID4804", + "ID4810", + "ID4816", + "ID4822", + "ID4828", + "ID4834", + "ID4840", + "ID4846", + "ID4852", + "ID4858", + "ID4862", + "ID4866", + "ID4870", + "ID4874", + "ID4878", + "ID4882", + "ID4886", + "ID4890", + "ID4894", + "ID4898", + "ID4902", + "ID4906", + "ID4910", + "ID4914", + "ID4918", + "ID4922", + "ID4926", + "ID4930", + "ID4934", + "ID4938", + "ID4942", + "ID4946", + "ID4950", + "ID4954", + "ID4958", + "ID4962", + "ID4966", + "ID4970", + "ID4974", + "ID4978", + "ID4982" + ], + "name": "group_107" + }, + "ID4986": { + "children": [], + "matrix": [ + 0.997336, + 0, + 0.0729454, + 0, + 0, + 1, + -0, + 0, + -0.0729454, + 0, + 0.997336, + 0, + 0.18844, + 0.048768, + 0.119553, + 1 + ], + "meshes": [ + "ID4987", + "ID4993", + "ID4999", + "ID5005" + ], + "name": "group_108" + }, + "ID5009": { + "children": [ + "ID5010", + "ID5271" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.9244, + 0.902347, + -0.199448, + 1 + ], + "name": "group_109" + }, + "ID5010": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + -0.0021897, + 0, + -0.00309245, + 1 + ], + "meshes": [ + "ID5011", + "ID5017", + "ID5023", + "ID5029", + "ID5035", + "ID5041", + "ID5047", + "ID5053", + "ID5059", + "ID5065", + "ID5071", + "ID5077", + "ID5083", + "ID5089", + "ID5095", + "ID5101", + "ID5107", + "ID5113", + "ID5119", + "ID5125", + "ID5131", + "ID5137", + "ID5143", + "ID5147", + "ID5151", + "ID5155", + "ID5159", + "ID5163", + "ID5167", + "ID5171", + "ID5175", + "ID5179", + "ID5183", + "ID5187", + "ID5191", + "ID5195", + "ID5199", + "ID5203", + "ID5207", + "ID5211", + "ID5215", + "ID5219", + "ID5223", + "ID5227", + "ID5231", + "ID5235", + "ID5239", + "ID5243", + "ID5247", + "ID5251", + "ID5255", + "ID5259", + "ID5263", + "ID5267" + ], + "name": "group_110" + }, + "ID5271": { + "children": [], + "matrix": [ + 0.997336, + 0, + 0.0729454, + 0, + 0, + 1, + -0, + 0, + -0.0729454, + 0, + 0.997336, + 0, + 0.18844, + 0.048768, + 0.119553, + 1 + ], + "meshes": [ + "ID5272", + "ID5278", + "ID5284", + "ID5290" + ], + "name": "group_111" + }, + "ID5294": { + "children": [ + "ID5295", + "ID5318" + ], + "matrix": [ + 1, + 0, + -0, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.9244, + 4.16962, + -0.199448, + 1 + ], + "name": "group_112" + }, + "ID5295": { + "children": [], + "matrix": [ + 0.997336, + 0, + 0.0729454, + 0, + 0, + 1, + -0, + 0, + -0.0729454, + 0, + 0.997336, + 0, + 0.18844, + 0.048768, + 0.119553, + 1 + ], + "meshes": [ + "ID5296", + "ID5302", + "ID5308", + "ID5314" + ], + "name": "group_113" + }, + "ID5318": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + -0.0021897, + 0, + -0.00309245, + 1 + ], + "meshes": [ + "ID5539", + "ID5543", + "ID5547", + "ID5551", + "ID5555", + "ID5559", + "ID5563", + "ID5567", + "ID5571", + "ID5575", + "ID5319", + "ID5325", + "ID5331", + "ID5337", + "ID5343", + "ID5349", + "ID5355", + "ID5361", + "ID5367", + "ID5373", + "ID5379", + "ID5385", + "ID5391", + "ID5397", + "ID5403", + "ID5409", + "ID5415", + "ID5421", + "ID5427", + "ID5433", + "ID5439", + "ID5445", + "ID5451", + "ID5455", + "ID5459", + "ID5463", + "ID5467", + "ID5471", + "ID5475", + "ID5479", + "ID5483", + "ID5487", + "ID5491", + "ID5495", + "ID5499", + "ID5503", + "ID5507", + "ID5511", + "ID5515", + "ID5519", + "ID5523", + "ID5527", + "ID5531", + "ID5535" + ], + "name": "group_114" + }, + "ID5579": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 1.80443, + 0.638854, + 1 + ], + "meshes": [ + "ID5580", + "ID5586", + "ID5592", + "ID5598" + ], + "name": "group_115" + }, + "ID5604": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 3.02363, + 0.638854, + 1 + ], + "meshes": [ + "ID5605", + "ID5611", + "ID5617", + "ID5623" + ], + "name": "group_116" + }, + "ID5629": { + "children": [ + "ID5630" + ], + "matrix": [ + -0, + -1, + -0, + 0, + -0, + 0, + -1, + 0, + 1, + -0, + -0, + 0, + 5.07907, + 3.02363, + 1.61421, + 1 + ], + "name": "instance_0" + }, + "ID5630": { + "children": [ + "ID5631", + "ID5644" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "ID5657", + "ID5663", + "ID5669", + "ID5675", + "ID5681" + ], + "name": "sedadlo.dxf" + }, + "ID5631": { + "children": [], + "matrix": [ + -0, + -0, + 1, + 0, + -1, + 0, + -0, + 0, + -0, + -1, + -0, + 0, + 0.092168, + 0.804688, + 0.146304, + 1 + ], + "meshes": [ + "ID5632", + "ID5638" + ], + "name": "group_117" + }, + "ID5644": { + "children": [], + "matrix": [ + -0, + -0, + 1, + 0, + -1, + 0, + -0, + 0, + -0, + -1, + -0, + 0, + 0.975512, + 0.804688, + 0.146304, + 1 + ], + "meshes": [ + "ID5645", + "ID5651" + ], + "name": "group_118" + }, + "ID5687": { + "children": [ + "ID5688" + ], + "matrix": [ + 0.84329, + -0, + -0.537459, + 0, + -0.537459, + -0, + -0.84329, + 0, + 0, + 1, + -0, + 0, + 4.63165, + 1.81795, + 2.03696, + 1 + ], + "name": "instance_1" + }, + "ID5688": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "ID5689", + "ID5695" + ], + "name": "dilky_3.dxf" + }, + "ID5701": { + "children": [ + "ID5688" + ], + "matrix": [ + 0.84329, + -0, + -0.537459, + 0, + -0.537459, + -0, + -0.84329, + 0, + 0, + 1, + -0, + 0, + 4.63043, + 2.0496, + 2.03692, + 1 + ], + "name": "instance_2" + }, + "ID5702": { + "children": [ + "ID5703" + ], + "matrix": [ + 0.84329, + 0, + -0.537459, + 0, + -0.537459, + 0, + -0.84329, + 0, + 0, + -1, + -0, + 0, + 4.63165, + 3.2544, + 2.03696, + 1 + ], + "name": "instance_3" + }, + "ID5703": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "ID5704", + "ID5710" + ], + "name": "dilky_3.dxf" + }, + "ID5716": { + "children": [ + "ID5703" + ], + "matrix": [ + 0.984859, + 0, + -0.173359, + 0, + -0.173359, + 0, + -0.984859, + 0, + 0, + -1, + -0, + 0, + 6.19348, + 2.04827, + 1.86782, + 1 + ], + "name": "instance_4" + }, + "ID5717": { + "children": [ + "ID5688" + ], + "matrix": [ + 0.984859, + 0, + -0.173359, + 0, + -0.173359, + 0, + -0.984859, + 0, + -0, + 1, + 0, + 0, + 6.19348, + 3.02362, + 1.86782, + 1 + ], + "name": "instance_5" + }, + "ID5718": { + "children": [ + "ID5703" + ], + "matrix": [ + 0.84329, + 0, + -0.537459, + 0, + -0.537459, + 0, + -0.84329, + 0, + 0, + -1, + -0, + 0, + 4.63165, + 3.02274, + 2.03696, + 1 + ], + "name": "instance_6" + }, + "ID662": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4.34749, + 2.04812, + 0.248595, + 1 + ], + "meshes": [ + "ID663", + "ID669", + "ID675", + "ID681", + "ID687", + "ID693", + "ID699", + "ID705", + "ID711", + "ID717", + "ID723", + "ID729", + "ID735", + "ID741", + "ID747", + "ID753", + "ID759", + "ID765", + "ID769", + "ID773", + "ID777", + "ID781" + ], + "name": "group_4" + }, + "ID785": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 1.80428, + 0.248595, + 1 + ], + "meshes": [ + "ID786", + "ID792", + "ID798", + "ID804", + "ID810", + "ID816", + "ID822", + "ID828", + "ID834", + "ID840", + "ID846", + "ID852", + "ID858", + "ID864", + "ID870", + "ID876", + "ID882", + "ID888", + "ID892", + "ID896", + "ID900", + "ID904" + ], + "name": "group_5" + }, + "ID908": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 5.32285, + 3.02348, + 0.248595, + 1 + ], + "meshes": [ + "ID909", + "ID915", + "ID921", + "ID927", + "ID933", + "ID939", + "ID945", + "ID951", + "ID957", + "ID963", + "ID969", + "ID975", + "ID981", + "ID987", + "ID993", + "ID999", + "ID1005", + "ID1011", + "ID1015", + "ID1019", + "ID1023", + "ID1027" + ], + "name": "group_6" + }, + "node_0": { + "children": [ + "ID2", + "ID129", + "ID148", + "ID407", + "ID662", + "ID785", + "ID908", + "ID1031", + "ID1140", + "ID1217", + "ID1294", + "ID1351", + "ID1408", + "ID1519", + "ID1610", + "ID1645", + "ID1680", + "ID1689", + "ID1696", + "ID1715", + "ID1722", + "ID1729", + "ID1742", + "ID1749", + "ID1756", + "ID1763", + "ID1770", + "ID1781", + "ID1788", + "ID1845", + "ID1902", + "ID1959", + "ID2016", + "ID2073", + "ID2142", + "ID2155", + "ID2168", + "ID2193", + "ID2218", + "ID2243", + "ID2268", + "ID2391", + "ID2514", + "ID2521", + "ID2598", + "ID2605", + "ID2612", + "ID2619", + "ID2638", + "ID2657", + "ID2682", + "ID2707", + "ID2744", + "ID2781", + "ID2788", + "ID2813", + "ID2856", + "ID2863", + "ID2888", + "ID2917", + "ID2946", + "ID3005", + "ID3062", + "ID3119", + "ID3154", + "ID3189", + "ID3196", + "ID3203", + "ID3216", + "ID3229", + "ID3254", + "ID3261", + "ID3268", + "ID3337", + "ID3406", + "ID3441", + "ID3510", + "ID3517", + "ID3586", + "ID3601", + "ID3656", + "ID3671", + "ID3760", + "ID3817", + "ID3906", + "ID3995", + "ID4032", + "ID4069", + "ID4076", + "ID4133", + "ID4140", + "ID4175", + "ID4234", + "ID4293", + "ID4328", + "ID4335", + "ID4354", + "ID4361", + "ID4380", + "ID4399", + "ID4418", + "ID4425", + "ID4432", + "ID4439", + "ID4724", + "ID5009", + "ID5294", + "ID5579", + "ID5604", + "ID5629", + "ID5687", + "ID5701", + "ID5702", + "ID5716", + "ID5717", + "ID5718" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "SketchUp" + }, + "node_130": { + "children": [ + "node_0" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" + } + }, + "programs": { + "program_0": { + "attributes": [ + "a_position" + ], + "fragmentShader": "Rambler0FS", + "vertexShader": "Rambler0VS" + }, + "program_1": { + "attributes": [ + "a_normal", + "a_position" + ], + "fragmentShader": "Rambler1FS", + "vertexShader": "Rambler1VS" + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "node_130" + ] + } + }, + "shaders": { + "Rambler0FS": { + "type": 35632, + "uri": "Rambler0FS.glsl" + }, + "Rambler0VS": { + "type": 35633, + "uri": "Rambler0VS.glsl" + }, + "Rambler1FS": { + "type": 35632, + "uri": "Rambler1FS.glsl" + }, + "Rambler1VS": { + "type": 35633, + "uri": "Rambler1VS.glsl" + } + }, + "skins": {}, + "techniques": { + "technique1": { + "parameters": { + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + } + }, + "pass": "defaultPass", + "passes": { + "defaultPass": { + "details": { + "commonProfile": { + "extras": { + "doubleSided": false + }, + "lightingModel": "Constant", + "parameters": [ + "modelViewMatrix", + "projectionMatrix" + ] + }, + "type": "COLLADA-1.4.1/commonProfile" + }, + "instanceProgram": { + "attributes": { + "a_position": "position" + }, + "program": "program_0", + "uniforms": { + "u_modelViewMatrix": "modelViewMatrix", + "u_projectionMatrix": "projectionMatrix" + } + }, + "states": { + "blendEnable": 0, + "cullFaceEnable": 1, + "depthMask": 1, + "depthTestEnable": 1 + } + } + } + }, + "technique2": { + "parameters": { + "diffuse": { + "type": 35666 + }, + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "normal": { + "semantic": "NORMAL", + "type": 35665 + }, + "normalMatrix": { + "semantic": "MODELVIEWINVERSETRANSPOSE", + "type": 35675 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + } + }, + "pass": "defaultPass", + "passes": { + "defaultPass": { + "details": { + "commonProfile": { + "extras": { + "doubleSided": false + }, + "lightingModel": "Lambert", + "parameters": [ + "diffuse", + "modelViewMatrix", + "normalMatrix", + "projectionMatrix" + ] + }, + "type": "COLLADA-1.4.1/commonProfile" + }, + "instanceProgram": { + "attributes": { + "a_normal": "normal", + "a_position": "position" + }, + "program": "program_1", + "uniforms": { + "u_diffuse": "diffuse", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix" + } + }, + "states": { + "blendEnable": 0, + "cullFaceEnable": 1, + "depthMask": 1, + "depthTestEnable": 1 + } + } + } + } + } +} \ No newline at end of file diff --git a/model/rambler/Rambler.json b/model/rambler/Rambler.json deleted file mode 100755 index 7d8d135567..0000000000 --- a/model/rambler/Rambler.json +++ /dev/null @@ -1,44069 +0,0 @@ -{ - "accessors": { - "accessor_100": { - "bufferView": "bufferView_14917", - "byteOffset": 3310080, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_10007": { - "bufferView": "bufferView_14916", - "byteOffset": 566400, - "byteStride": 0, - "count": 1632, - "type": 5123 - }, - "accessor_10009": { - "bufferView": "bufferView_14917", - "byteOffset": 4717080, - "byteStride": 12, - "count": 1013, - "max": [ - 11.0412, - 20.1588, - 20.1588 - ], - "min": [ - 0, - 10.5612, - 10.56 - ], - "type": 35665 - }, - "accessor_1001": { - "bufferView": "bufferView_14916", - "byteOffset": 489840, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10011": { - "bufferView": "bufferView_14917", - "byteOffset": 4729236, - "byteStride": 12, - "count": 1013, - "max": [ - 1, - 0.980826, - 0.980826 - ], - "min": [ - -1, - -0.980826, - -0.980826 - ], - "type": 35665 - }, - "accessor_1003": { - "bufferView": "bufferView_14917", - "byteOffset": 3966288, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_10032": { - "bufferView": "bufferView_14916", - "byteOffset": 569664, - "byteStride": 0, - "count": 2388, - "type": 5123 - }, - "accessor_10034": { - "bufferView": "bufferView_14917", - "byteOffset": 4741392, - "byteStride": 12, - "count": 2123, - "max": [ - 9.6024, - 8.64, - 8.6412 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_10036": { - "bufferView": "bufferView_14917", - "byteOffset": 4766868, - "byteStride": 12, - "count": 2123, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1005": { - "bufferView": "bufferView_14917", - "byteOffset": 3969072, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_10054": { - "bufferView": "bufferView_14916", - "byteOffset": 574440, - "byteStride": 0, - "count": 1056, - "type": 5123 - }, - "accessor_10056": { - "bufferView": "bufferView_14917", - "byteOffset": 4792344, - "byteStride": 12, - "count": 683, - "max": [ - 9.6, - 10.0512, - 10.0512 - ], - "min": [ - 0, - 2.3712, - 2.3712 - ], - "type": 35665 - }, - "accessor_10058": { - "bufferView": "bufferView_14917", - "byteOffset": 4800540, - "byteStride": 12, - "count": 683, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_10074": { - "bufferView": "bufferView_14916", - "byteOffset": 576552, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10076": { - "bufferView": "bufferView_14917", - "byteOffset": 4808736, - "byteStride": 12, - "count": 40, - "max": [ - 7.68, - 2.5344, - 7.3248 - ], - "min": [ - 1.92, - 0, - 5.0976 - ], - "type": 35665 - }, - "accessor_10078": { - "bufferView": "bufferView_14917", - "byteOffset": 4809216, - "byteStride": 12, - "count": 40, - "max": [ - 1, - 1, - 0.980794 - ], - "min": [ - -1, - -1, - -0.980794 - ], - "type": 35665 - }, - "accessor_10094": { - "bufferView": "bufferView_14916", - "byteOffset": 576672, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10096": { - "bufferView": "bufferView_14917", - "byteOffset": 4809696, - "byteStride": 12, - "count": 48, - "max": [ - 7.68, - 4.4016, - 11.0352 - ], - "min": [ - 1.92, - 1.3872, - 8.0208 - ], - "type": 35665 - }, - "accessor_10098": { - "bufferView": "bufferView_14917", - "byteOffset": 4810272, - "byteStride": 12, - "count": 48, - "max": [ - 1, - 0.831765, - 0.831765 - ], - "min": [ - -1, - -0.831765, - -0.831765 - ], - "type": 35665 - }, - "accessor_10114": { - "bufferView": "bufferView_14916", - "byteOffset": 576792, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10116": { - "bufferView": "bufferView_14917", - "byteOffset": 4810848, - "byteStride": 12, - "count": 40, - "max": [ - 7.68, - 7.3248, - 12.4224 - ], - "min": [ - 1.92, - 5.0976, - 9.888 - ], - "type": 35665 - }, - "accessor_10118": { - "bufferView": "bufferView_14917", - "byteOffset": 4811328, - "byteStride": 12, - "count": 40, - "max": [ - 1, - 0.980794, - 1 - ], - "min": [ - -1, - -0.980794, - -1 - ], - "type": 35665 - }, - "accessor_10134": { - "bufferView": "bufferView_14916", - "byteOffset": 576912, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10136": { - "bufferView": "bufferView_14917", - "byteOffset": 4811808, - "byteStride": 12, - "count": 44, - "max": [ - 7.68, - 11.0352, - 11.0352 - ], - "min": [ - 1.92, - 8.0208, - 8.0208 - ], - "type": 35665 - }, - "accessor_10138": { - "bufferView": "bufferView_14917", - "byteOffset": 4812336, - "byteStride": 12, - "count": 44, - "max": [ - 1, - 0.831765, - 0.831765 - ], - "min": [ - -1, - -0.831765, - -0.831765 - ], - "type": 35665 - }, - "accessor_10154": { - "bufferView": "bufferView_14916", - "byteOffset": 577032, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10156": { - "bufferView": "bufferView_14917", - "byteOffset": 4812864, - "byteStride": 12, - "count": 48, - "max": [ - 7.68, - 12.4224, - 7.3248 - ], - "min": [ - 1.92, - 9.888, - 5.0976 - ], - "type": 35665 - }, - "accessor_10158": { - "bufferView": "bufferView_14917", - "byteOffset": 4813440, - "byteStride": 12, - "count": 48, - "max": [ - 1, - 1, - 0.980794 - ], - "min": [ - -1, - -1, - -0.980794 - ], - "type": 35665 - }, - "accessor_10174": { - "bufferView": "bufferView_14916", - "byteOffset": 577152, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10176": { - "bufferView": "bufferView_14917", - "byteOffset": 4814016, - "byteStride": 12, - "count": 44, - "max": [ - 7.68, - 11.0352, - 4.4016 - ], - "min": [ - 1.92, - 8.0208, - 1.3872 - ], - "type": 35665 - }, - "accessor_10178": { - "bufferView": "bufferView_14917", - "byteOffset": 4814544, - "byteStride": 12, - "count": 44, - "max": [ - 1, - 0.831765, - 0.831765 - ], - "min": [ - -1, - -0.831765, - -0.831765 - ], - "type": 35665 - }, - "accessor_10194": { - "bufferView": "bufferView_14916", - "byteOffset": 577272, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10196": { - "bufferView": "bufferView_14917", - "byteOffset": 4815072, - "byteStride": 12, - "count": 48, - "max": [ - 7.68, - 7.3248, - 2.5344 - ], - "min": [ - 1.92, - 5.0976, - 0 - ], - "type": 35665 - }, - "accessor_10198": { - "bufferView": "bufferView_14917", - "byteOffset": 4815648, - "byteStride": 12, - "count": 48, - "max": [ - 1, - 0.980794, - 1 - ], - "min": [ - -1, - -0.980794, - -1 - ], - "type": 35665 - }, - "accessor_1021": { - "bufferView": "bufferView_14916", - "byteOffset": 515484, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_10214": { - "bufferView": "bufferView_14916", - "byteOffset": 577392, - "byteStride": 0, - "count": 60, - "type": 5123 - }, - "accessor_10216": { - "bufferView": "bufferView_14917", - "byteOffset": 4816224, - "byteStride": 12, - "count": 43, - "max": [ - 7.68, - 4.4016, - 4.4016 - ], - "min": [ - 1.92, - 1.3872, - 1.3872 - ], - "type": 35665 - }, - "accessor_10218": { - "bufferView": "bufferView_14917", - "byteOffset": 4816740, - "byteStride": 12, - "count": 43, - "max": [ - 1, - 0.831765, - 0.831765 - ], - "min": [ - -1, - -0.831765, - -0.831765 - ], - "type": 35665 - }, - "accessor_1023": { - "bufferView": "bufferView_14917", - "byteOffset": 4219920, - "byteStride": 12, - "count": 208, - "max": [ - 99.8413, - 7.68415, - 9.60325 - ], - "min": [ - 92.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_10234": { - "bufferView": "bufferView_14916", - "byteOffset": 577512, - "byteStride": 0, - "count": 2388, - "type": 5123 - }, - "accessor_10236": { - "bufferView": "bufferView_14917", - "byteOffset": 4817256, - "byteStride": 12, - "count": 2123, - "max": [ - 9.6024, - 8.64, - 8.6412 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_10238": { - "bufferView": "bufferView_14917", - "byteOffset": 4842732, - "byteStride": 12, - "count": 2123, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1025": { - "bufferView": "bufferView_14917", - "byteOffset": 4222416, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_10256": { - "bufferView": "bufferView_14916", - "byteOffset": 582288, - "byteStride": 0, - "count": 180, - "type": 5123 - }, - "accessor_10258": { - "bufferView": "bufferView_14917", - "byteOffset": 4868208, - "byteStride": 12, - "count": 118, - "max": [ - 9.6204, - 57.6192, - 3.84 - ], - "min": [ - 0.0024, - 0.018, - 0 - ], - "type": 35665 - }, - "accessor_10260": { - "bufferView": "bufferView_14917", - "byteOffset": 4869624, - "byteStride": 12, - "count": 118, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_10276": { - "bufferView": "bufferView_14916", - "byteOffset": 582648, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10278": { - "bufferView": "bufferView_14917", - "byteOffset": 4871040, - "byteStride": 12, - "count": 201, - "max": [ - 7.6824, - 55.698, - 5.76 - ], - "min": [ - 1.9224, - 49.938, - 3.84 - ], - "type": 35665 - }, - "accessor_10280": { - "bufferView": "bufferView_14917", - "byteOffset": 4873452, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10296": { - "bufferView": "bufferView_14916", - "byteOffset": 583224, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10298": { - "bufferView": "bufferView_14917", - "byteOffset": 4875864, - "byteStride": 12, - "count": 197, - "max": [ - 7.6956, - 17.298, - 5.76 - ], - "min": [ - 1.9356, - 11.538, - 3.84 - ], - "type": 35665 - }, - "accessor_10300": { - "bufferView": "bufferView_14917", - "byteOffset": 4878228, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10316": { - "bufferView": "bufferView_14916", - "byteOffset": 583800, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10318": { - "bufferView": "bufferView_14917", - "byteOffset": 4880592, - "byteStride": 12, - "count": 202, - "max": [ - 7.686, - 46.098, - 5.76 - ], - "min": [ - 1.926, - 40.338, - 3.84 - ], - "type": 35665 - }, - "accessor_10320": { - "bufferView": "bufferView_14917", - "byteOffset": 4883016, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10336": { - "bufferView": "bufferView_14916", - "byteOffset": 584376, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10338": { - "bufferView": "bufferView_14917", - "byteOffset": 4885440, - "byteStride": 12, - "count": 206, - "max": [ - 7.6932, - 26.898, - 5.76 - ], - "min": [ - 1.9332, - 21.138, - 3.84 - ], - "type": 35665 - }, - "accessor_10340": { - "bufferView": "bufferView_14917", - "byteOffset": 4887912, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10356": { - "bufferView": "bufferView_14916", - "byteOffset": 584952, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10358": { - "bufferView": "bufferView_14917", - "byteOffset": 4890384, - "byteStride": 12, - "count": 198, - "max": [ - 7.6896, - 36.498, - 5.76 - ], - "min": [ - 1.9296, - 30.738, - 3.84 - ], - "type": 35665 - }, - "accessor_10360": { - "bufferView": "bufferView_14917", - "byteOffset": 4892760, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10376": { - "bufferView": "bufferView_14916", - "byteOffset": 585528, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10378": { - "bufferView": "bufferView_14917", - "byteOffset": 4895136, - "byteStride": 12, - "count": 206, - "max": [ - 7.6992, - 7.698, - 5.76 - ], - "min": [ - 1.9392, - 1.938, - 3.84 - ], - "type": 35665 - }, - "accessor_10380": { - "bufferView": "bufferView_14917", - "byteOffset": 4897608, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10396": { - "bufferView": "bufferView_14916", - "byteOffset": 586104, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10398": { - "bufferView": "bufferView_14917", - "byteOffset": 4900080, - "byteStride": 12, - "count": 225, - "max": [ - 6.7308, - 30.738, - 1.92 - ], - "min": [ - 2.8908, - 26.898, - 0 - ], - "type": 35665 - }, - "accessor_10400": { - "bufferView": "bufferView_14917", - "byteOffset": 4902780, - "byteStride": 12, - "count": 225, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1041": { - "bufferView": "bufferView_14916", - "byteOffset": 531216, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_10416": { - "bufferView": "bufferView_14916", - "byteOffset": 586680, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10418": { - "bufferView": "bufferView_14917", - "byteOffset": 4905480, - "byteStride": 12, - "count": 214, - "max": [ - 6.7272, - 40.338, - 1.92 - ], - "min": [ - 2.8872, - 36.498, - 0 - ], - "type": 35665 - }, - "accessor_10420": { - "bufferView": "bufferView_14917", - "byteOffset": 4908048, - "byteStride": 12, - "count": 214, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1043": { - "bufferView": "bufferView_14917", - "byteOffset": 4379592, - "byteStride": 12, - "count": 320, - "max": [ - 74.88, - 7.686, - 13.4445 - ], - "min": [ - 69.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_10436": { - "bufferView": "bufferView_14916", - "byteOffset": 587256, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10438": { - "bufferView": "bufferView_14917", - "byteOffset": 4910616, - "byteStride": 12, - "count": 218, - "max": [ - 6.7236, - 49.938, - 1.92 - ], - "min": [ - 2.8836, - 46.098, - 0 - ], - "type": 35665 - }, - "accessor_10440": { - "bufferView": "bufferView_14917", - "byteOffset": 4913232, - "byteStride": 12, - "count": 218, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1045": { - "bufferView": "bufferView_14917", - "byteOffset": 4383432, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_10456": { - "bufferView": "bufferView_14916", - "byteOffset": 587832, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10458": { - "bufferView": "bufferView_14917", - "byteOffset": 4915848, - "byteStride": 12, - "count": 222, - "max": [ - 6.7344, - 21.138, - 1.92 - ], - "min": [ - 2.8944, - 17.298, - 0 - ], - "type": 35665 - }, - "accessor_10460": { - "bufferView": "bufferView_14917", - "byteOffset": 4918512, - "byteStride": 12, - "count": 222, - "max": [ - 0.980765, - 0.98107, - 1 - ], - "min": [ - -0.980765, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_10476": { - "bufferView": "bufferView_14916", - "byteOffset": 588408, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10478": { - "bufferView": "bufferView_14917", - "byteOffset": 4921176, - "byteStride": 12, - "count": 225, - "max": [ - 6.738, - 11.538, - 1.92 - ], - "min": [ - 2.898, - 7.698, - 0 - ], - "type": 35665 - }, - "accessor_10480": { - "bufferView": "bufferView_14917", - "byteOffset": 4923876, - "byteStride": 12, - "count": 225, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_10500": { - "bufferView": "bufferView_14916", - "byteOffset": 588984, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_10502": { - "bufferView": "bufferView_14917", - "byteOffset": 4926576, - "byteStride": 12, - "count": 112, - "max": [ - 9.612, - 38.4012, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_10504": { - "bufferView": "bufferView_14917", - "byteOffset": 4927920, - "byteStride": 12, - "count": 112, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_10520": { - "bufferView": "bufferView_14916", - "byteOffset": 589320, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10522": { - "bufferView": "bufferView_14917", - "byteOffset": 4929264, - "byteStride": 12, - "count": 186, - "max": [ - 7.6812, - 36.4812, - 5.76 - ], - "min": [ - 1.9212, - 30.7212, - 3.84 - ], - "type": 35665 - }, - "accessor_10524": { - "bufferView": "bufferView_14917", - "byteOffset": 4931496, - "byteStride": 12, - "count": 186, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10540": { - "bufferView": "bufferView_14916", - "byteOffset": 589896, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10542": { - "bufferView": "bufferView_14917", - "byteOffset": 4933728, - "byteStride": 12, - "count": 198, - "max": [ - 7.6848, - 26.8812, - 5.76 - ], - "min": [ - 1.9248, - 21.1212, - 3.84 - ], - "type": 35665 - }, - "accessor_10544": { - "bufferView": "bufferView_14917", - "byteOffset": 4936104, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10560": { - "bufferView": "bufferView_14916", - "byteOffset": 590472, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10562": { - "bufferView": "bufferView_14917", - "byteOffset": 4938480, - "byteStride": 12, - "count": 205, - "max": [ - 7.6908, - 7.6812, - 5.76 - ], - "min": [ - 1.9308, - 1.9212, - 3.84 - ], - "type": 35665 - }, - "accessor_10564": { - "bufferView": "bufferView_14917", - "byteOffset": 4940940, - "byteStride": 12, - "count": 205, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10580": { - "bufferView": "bufferView_14916", - "byteOffset": 591048, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10582": { - "bufferView": "bufferView_14917", - "byteOffset": 4943400, - "byteStride": 12, - "count": 178, - "max": [ - 7.6884, - 17.2812, - 5.76 - ], - "min": [ - 1.9284, - 11.5212, - 3.84 - ], - "type": 35665 - }, - "accessor_10584": { - "bufferView": "bufferView_14917", - "byteOffset": 4945536, - "byteStride": 12, - "count": 178, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10600": { - "bufferView": "bufferView_14916", - "byteOffset": 591624, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10602": { - "bufferView": "bufferView_14917", - "byteOffset": 4947672, - "byteStride": 12, - "count": 226, - "max": [ - 6.726, - 21.1212, - 1.92 - ], - "min": [ - 2.886, - 17.2812, - 0 - ], - "type": 35665 - }, - "accessor_10604": { - "bufferView": "bufferView_14917", - "byteOffset": 4950384, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1061": { - "bufferView": "bufferView_14916", - "byteOffset": 541740, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_10620": { - "bufferView": "bufferView_14916", - "byteOffset": 592200, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10622": { - "bufferView": "bufferView_14917", - "byteOffset": 4953096, - "byteStride": 12, - "count": 226, - "max": [ - 6.7284, - 11.5212, - 1.92 - ], - "min": [ - 2.8884, - 7.6812, - 0 - ], - "type": 35665 - }, - "accessor_10624": { - "bufferView": "bufferView_14917", - "byteOffset": 4955808, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1063": { - "bufferView": "bufferView_14917", - "byteOffset": 4471536, - "byteStride": 12, - "count": 320, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_10640": { - "bufferView": "bufferView_14916", - "byteOffset": 592776, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10642": { - "bufferView": "bufferView_14917", - "byteOffset": 4958520, - "byteStride": 12, - "count": 226, - "max": [ - 6.7224, - 30.7212, - 1.92 - ], - "min": [ - 2.8824, - 26.8812, - 0 - ], - "type": 35665 - }, - "accessor_10644": { - "bufferView": "bufferView_14917", - "byteOffset": 4961232, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1065": { - "bufferView": "bufferView_14917", - "byteOffset": 4475376, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_10662": { - "bufferView": "bufferView_14916", - "byteOffset": 593352, - "byteStride": 0, - "count": 180, - "type": 5123 - }, - "accessor_10664": { - "bufferView": "bufferView_14917", - "byteOffset": 4963944, - "byteStride": 12, - "count": 118, - "max": [ - 9.6204, - 57.6192, - 3.84 - ], - "min": [ - 0.0024, - 0.018, - 0 - ], - "type": 35665 - }, - "accessor_10666": { - "bufferView": "bufferView_14917", - "byteOffset": 4965360, - "byteStride": 12, - "count": 118, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_10682": { - "bufferView": "bufferView_14916", - "byteOffset": 593712, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10684": { - "bufferView": "bufferView_14917", - "byteOffset": 4966776, - "byteStride": 12, - "count": 201, - "max": [ - 7.6824, - 55.698, - 5.76 - ], - "min": [ - 1.9224, - 49.938, - 3.84 - ], - "type": 35665 - }, - "accessor_10686": { - "bufferView": "bufferView_14917", - "byteOffset": 4969188, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10702": { - "bufferView": "bufferView_14916", - "byteOffset": 594288, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10704": { - "bufferView": "bufferView_14917", - "byteOffset": 4971600, - "byteStride": 12, - "count": 197, - "max": [ - 7.6956, - 17.298, - 5.76 - ], - "min": [ - 1.9356, - 11.538, - 3.84 - ], - "type": 35665 - }, - "accessor_10706": { - "bufferView": "bufferView_14917", - "byteOffset": 4973964, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10722": { - "bufferView": "bufferView_14916", - "byteOffset": 594864, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10724": { - "bufferView": "bufferView_14917", - "byteOffset": 4976328, - "byteStride": 12, - "count": 202, - "max": [ - 7.686, - 46.098, - 5.76 - ], - "min": [ - 1.926, - 40.338, - 3.84 - ], - "type": 35665 - }, - "accessor_10726": { - "bufferView": "bufferView_14917", - "byteOffset": 4978752, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10742": { - "bufferView": "bufferView_14916", - "byteOffset": 595440, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10744": { - "bufferView": "bufferView_14917", - "byteOffset": 4981176, - "byteStride": 12, - "count": 206, - "max": [ - 7.6932, - 26.898, - 5.76 - ], - "min": [ - 1.9332, - 21.138, - 3.84 - ], - "type": 35665 - }, - "accessor_10746": { - "bufferView": "bufferView_14917", - "byteOffset": 4983648, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10762": { - "bufferView": "bufferView_14916", - "byteOffset": 596016, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10764": { - "bufferView": "bufferView_14917", - "byteOffset": 4986120, - "byteStride": 12, - "count": 198, - "max": [ - 7.6896, - 36.498, - 5.76 - ], - "min": [ - 1.9296, - 30.738, - 3.84 - ], - "type": 35665 - }, - "accessor_10766": { - "bufferView": "bufferView_14917", - "byteOffset": 4988496, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10782": { - "bufferView": "bufferView_14916", - "byteOffset": 596592, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10784": { - "bufferView": "bufferView_14917", - "byteOffset": 4990872, - "byteStride": 12, - "count": 206, - "max": [ - 7.6992, - 7.698, - 5.76 - ], - "min": [ - 1.9392, - 1.938, - 3.84 - ], - "type": 35665 - }, - "accessor_10786": { - "bufferView": "bufferView_14917", - "byteOffset": 4993344, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10802": { - "bufferView": "bufferView_14916", - "byteOffset": 597168, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10804": { - "bufferView": "bufferView_14917", - "byteOffset": 4995816, - "byteStride": 12, - "count": 225, - "max": [ - 6.7308, - 30.738, - 1.92 - ], - "min": [ - 2.8908, - 26.898, - 0 - ], - "type": 35665 - }, - "accessor_10806": { - "bufferView": "bufferView_14917", - "byteOffset": 4998516, - "byteStride": 12, - "count": 225, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1081": { - "bufferView": "bufferView_14916", - "byteOffset": 558744, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_10822": { - "bufferView": "bufferView_14916", - "byteOffset": 597744, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10824": { - "bufferView": "bufferView_14917", - "byteOffset": 5001216, - "byteStride": 12, - "count": 214, - "max": [ - 6.7272, - 40.338, - 1.92 - ], - "min": [ - 2.8872, - 36.498, - 0 - ], - "type": 35665 - }, - "accessor_10826": { - "bufferView": "bufferView_14917", - "byteOffset": 5003784, - "byteStride": 12, - "count": 214, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1083": { - "bufferView": "bufferView_14917", - "byteOffset": 4639344, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_10842": { - "bufferView": "bufferView_14916", - "byteOffset": 598320, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10844": { - "bufferView": "bufferView_14917", - "byteOffset": 5006352, - "byteStride": 12, - "count": 218, - "max": [ - 6.7236, - 49.938, - 1.92 - ], - "min": [ - 2.8836, - 46.098, - 0 - ], - "type": 35665 - }, - "accessor_10846": { - "bufferView": "bufferView_14917", - "byteOffset": 5008968, - "byteStride": 12, - "count": 218, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_1085": { - "bufferView": "bufferView_14917", - "byteOffset": 4641840, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_10862": { - "bufferView": "bufferView_14916", - "byteOffset": 598896, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10864": { - "bufferView": "bufferView_14917", - "byteOffset": 5011584, - "byteStride": 12, - "count": 222, - "max": [ - 6.7344, - 21.138, - 1.92 - ], - "min": [ - 2.8944, - 17.298, - 0 - ], - "type": 35665 - }, - "accessor_10866": { - "bufferView": "bufferView_14917", - "byteOffset": 5014248, - "byteStride": 12, - "count": 222, - "max": [ - 0.980765, - 0.98107, - 1 - ], - "min": [ - -0.980765, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_10882": { - "bufferView": "bufferView_14916", - "byteOffset": 599472, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10884": { - "bufferView": "bufferView_14917", - "byteOffset": 5016912, - "byteStride": 12, - "count": 225, - "max": [ - 6.738, - 11.538, - 1.92 - ], - "min": [ - 2.898, - 7.698, - 0 - ], - "type": 35665 - }, - "accessor_10886": { - "bufferView": "bufferView_14917", - "byteOffset": 5019612, - "byteStride": 12, - "count": 225, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_10906": { - "bufferView": "bufferView_14916", - "byteOffset": 600048, - "byteStride": 0, - "count": 180, - "type": 5123 - }, - "accessor_10908": { - "bufferView": "bufferView_14917", - "byteOffset": 5022312, - "byteStride": 12, - "count": 118, - "max": [ - 9.6204, - 57.6192, - 3.84 - ], - "min": [ - 0.0024, - 0.018, - 0 - ], - "type": 35665 - }, - "accessor_10910": { - "bufferView": "bufferView_14917", - "byteOffset": 5023728, - "byteStride": 12, - "count": 118, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_10926": { - "bufferView": "bufferView_14916", - "byteOffset": 600408, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10928": { - "bufferView": "bufferView_14917", - "byteOffset": 5025144, - "byteStride": 12, - "count": 201, - "max": [ - 7.6824, - 55.698, - 5.76 - ], - "min": [ - 1.9224, - 49.938, - 3.84 - ], - "type": 35665 - }, - "accessor_10930": { - "bufferView": "bufferView_14917", - "byteOffset": 5027556, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10946": { - "bufferView": "bufferView_14916", - "byteOffset": 600984, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10948": { - "bufferView": "bufferView_14917", - "byteOffset": 5029968, - "byteStride": 12, - "count": 197, - "max": [ - 7.6956, - 17.298, - 5.76 - ], - "min": [ - 1.9356, - 11.538, - 3.84 - ], - "type": 35665 - }, - "accessor_10950": { - "bufferView": "bufferView_14917", - "byteOffset": 5032332, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_10966": { - "bufferView": "bufferView_14916", - "byteOffset": 601560, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10968": { - "bufferView": "bufferView_14917", - "byteOffset": 5034696, - "byteStride": 12, - "count": 202, - "max": [ - 7.686, - 46.098, - 5.76 - ], - "min": [ - 1.926, - 40.338, - 3.84 - ], - "type": 35665 - }, - "accessor_10970": { - "bufferView": "bufferView_14917", - "byteOffset": 5037120, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_10986": { - "bufferView": "bufferView_14916", - "byteOffset": 602136, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_10988": { - "bufferView": "bufferView_14917", - "byteOffset": 5039544, - "byteStride": 12, - "count": 206, - "max": [ - 7.6932, - 26.898, - 5.76 - ], - "min": [ - 1.9332, - 21.138, - 3.84 - ], - "type": 35665 - }, - "accessor_10990": { - "bufferView": "bufferView_14917", - "byteOffset": 5042016, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_11006": { - "bufferView": "bufferView_14916", - "byteOffset": 602712, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11008": { - "bufferView": "bufferView_14917", - "byteOffset": 5044488, - "byteStride": 12, - "count": 198, - "max": [ - 7.6896, - 36.498, - 5.76 - ], - "min": [ - 1.9296, - 30.738, - 3.84 - ], - "type": 35665 - }, - "accessor_1101": { - "bufferView": "bufferView_14916", - "byteOffset": 562176, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_11010": { - "bufferView": "bufferView_14917", - "byteOffset": 5046864, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_11026": { - "bufferView": "bufferView_14916", - "byteOffset": 603288, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11028": { - "bufferView": "bufferView_14917", - "byteOffset": 5049240, - "byteStride": 12, - "count": 206, - "max": [ - 7.6992, - 7.698, - 5.76 - ], - "min": [ - 1.9392, - 1.938, - 3.84 - ], - "type": 35665 - }, - "accessor_1103": { - "bufferView": "bufferView_14917", - "byteOffset": 4672536, - "byteStride": 12, - "count": 320, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_11030": { - "bufferView": "bufferView_14917", - "byteOffset": 5051712, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_11046": { - "bufferView": "bufferView_14916", - "byteOffset": 603864, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11048": { - "bufferView": "bufferView_14917", - "byteOffset": 5054184, - "byteStride": 12, - "count": 225, - "max": [ - 6.7308, - 30.738, - 1.92 - ], - "min": [ - 2.8908, - 26.898, - 0 - ], - "type": 35665 - }, - "accessor_1105": { - "bufferView": "bufferView_14917", - "byteOffset": 4676376, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_11050": { - "bufferView": "bufferView_14917", - "byteOffset": 5056884, - "byteStride": 12, - "count": 225, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_11066": { - "bufferView": "bufferView_14916", - "byteOffset": 604440, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11068": { - "bufferView": "bufferView_14917", - "byteOffset": 5059584, - "byteStride": 12, - "count": 214, - "max": [ - 6.7272, - 40.338, - 1.92 - ], - "min": [ - 2.8872, - 36.498, - 0 - ], - "type": 35665 - }, - "accessor_11070": { - "bufferView": "bufferView_14917", - "byteOffset": 5062152, - "byteStride": 12, - "count": 214, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_11086": { - "bufferView": "bufferView_14916", - "byteOffset": 605016, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11088": { - "bufferView": "bufferView_14917", - "byteOffset": 5064720, - "byteStride": 12, - "count": 218, - "max": [ - 6.7236, - 49.938, - 1.92 - ], - "min": [ - 2.8836, - 46.098, - 0 - ], - "type": 35665 - }, - "accessor_11090": { - "bufferView": "bufferView_14917", - "byteOffset": 5067336, - "byteStride": 12, - "count": 218, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_11106": { - "bufferView": "bufferView_14916", - "byteOffset": 605592, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11108": { - "bufferView": "bufferView_14917", - "byteOffset": 5069952, - "byteStride": 12, - "count": 222, - "max": [ - 6.7344, - 21.138, - 1.92 - ], - "min": [ - 2.8944, - 17.298, - 0 - ], - "type": 35665 - }, - "accessor_11110": { - "bufferView": "bufferView_14917", - "byteOffset": 5072616, - "byteStride": 12, - "count": 222, - "max": [ - 0.980765, - 0.98107, - 1 - ], - "min": [ - -0.980765, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_11126": { - "bufferView": "bufferView_14916", - "byteOffset": 606168, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11128": { - "bufferView": "bufferView_14917", - "byteOffset": 5075280, - "byteStride": 12, - "count": 225, - "max": [ - 6.738, - 11.538, - 1.92 - ], - "min": [ - 2.898, - 7.698, - 0 - ], - "type": 35665 - }, - "accessor_11130": { - "bufferView": "bufferView_14917", - "byteOffset": 5077980, - "byteStride": 12, - "count": 225, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_11150": { - "bufferView": "bufferView_14916", - "byteOffset": 606744, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11152": { - "bufferView": "bufferView_14917", - "byteOffset": 5080680, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 7.68, - 5.76 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11154": { - "bufferView": "bufferView_14917", - "byteOffset": 5082624, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_11170": { - "bufferView": "bufferView_14916", - "byteOffset": 607320, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_11172": { - "bufferView": "bufferView_14917", - "byteOffset": 5084568, - "byteStride": 12, - "count": 96, - "max": [ - 28.8, - 9.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11174": { - "bufferView": "bufferView_14917", - "byteOffset": 5085720, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_11190": { - "bufferView": "bufferView_14916", - "byteOffset": 607656, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11192": { - "bufferView": "bufferView_14917", - "byteOffset": 5086872, - "byteStride": 12, - "count": 162, - "max": [ - 11.52, - 6.72, - 1.92 - ], - "min": [ - 7.68, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_11194": { - "bufferView": "bufferView_14917", - "byteOffset": 5088816, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_11210": { - "bufferView": "bufferView_14916", - "byteOffset": 608232, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11212": { - "bufferView": "bufferView_14917", - "byteOffset": 5090760, - "byteStride": 12, - "count": 162, - "max": [ - 26.88, - 7.68, - 5.76 - ], - "min": [ - 21.12, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11214": { - "bufferView": "bufferView_14917", - "byteOffset": 5092704, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_11230": { - "bufferView": "bufferView_14916", - "byteOffset": 608808, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11232": { - "bufferView": "bufferView_14917", - "byteOffset": 5094648, - "byteStride": 12, - "count": 162, - "max": [ - 17.28, - 7.68, - 5.76 - ], - "min": [ - 11.52, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11234": { - "bufferView": "bufferView_14917", - "byteOffset": 5096592, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_11250": { - "bufferView": "bufferView_14916", - "byteOffset": 609384, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11252": { - "bufferView": "bufferView_14917", - "byteOffset": 5098536, - "byteStride": 12, - "count": 162, - "max": [ - 21.12, - 6.72, - 1.92 - ], - "min": [ - 17.28, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_11254": { - "bufferView": "bufferView_14917", - "byteOffset": 5100480, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_11270": { - "bufferView": "bufferView_14916", - "byteOffset": 609960, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11272": { - "bufferView": "bufferView_14917", - "byteOffset": 5102424, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 7.68, - 5.76 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11274": { - "bufferView": "bufferView_14917", - "byteOffset": 5104368, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_11290": { - "bufferView": "bufferView_14916", - "byteOffset": 610536, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_11292": { - "bufferView": "bufferView_14917", - "byteOffset": 5106312, - "byteStride": 12, - "count": 96, - "max": [ - 28.8, - 9.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11294": { - "bufferView": "bufferView_14917", - "byteOffset": 5107464, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_11310": { - "bufferView": "bufferView_14916", - "byteOffset": 610872, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11312": { - "bufferView": "bufferView_14917", - "byteOffset": 5108616, - "byteStride": 12, - "count": 162, - "max": [ - 11.52, - 6.72, - 1.92 - ], - "min": [ - 7.68, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_11314": { - "bufferView": "bufferView_14917", - "byteOffset": 5110560, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1132": { - "bufferView": "bufferView_14916", - "byteOffset": 613848, - "byteStride": 0, - "count": 15336, - "type": 5123 - }, - "accessor_11330": { - "bufferView": "bufferView_14916", - "byteOffset": 611448, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11332": { - "bufferView": "bufferView_14917", - "byteOffset": 5112504, - "byteStride": 12, - "count": 162, - "max": [ - 26.88, - 7.68, - 5.76 - ], - "min": [ - 21.12, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11334": { - "bufferView": "bufferView_14917", - "byteOffset": 5114448, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_1134": { - "bufferView": "bufferView_14917", - "byteOffset": 5129640, - "byteStride": 12, - "count": 12441, - "max": [ - 115.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_11350": { - "bufferView": "bufferView_14916", - "byteOffset": 612024, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11352": { - "bufferView": "bufferView_14917", - "byteOffset": 5116392, - "byteStride": 12, - "count": 162, - "max": [ - 17.28, - 7.68, - 5.76 - ], - "min": [ - 11.52, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_11354": { - "bufferView": "bufferView_14917", - "byteOffset": 5118336, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_1136": { - "bufferView": "bufferView_14917", - "byteOffset": 5278932, - "byteStride": 12, - "count": 12441, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_11370": { - "bufferView": "bufferView_14916", - "byteOffset": 612600, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11372": { - "bufferView": "bufferView_14917", - "byteOffset": 5120280, - "byteStride": 12, - "count": 162, - "max": [ - 21.12, - 6.72, - 1.92 - ], - "min": [ - 17.28, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_11374": { - "bufferView": "bufferView_14917", - "byteOffset": 5122224, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_11390": { - "bufferView": "bufferView_14916", - "byteOffset": 613176, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_11392": { - "bufferView": "bufferView_14917", - "byteOffset": 5124168, - "byteStride": 12, - "count": 116, - "max": [ - 9.5988, - 19.1988, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11394": { - "bufferView": "bufferView_14917", - "byteOffset": 5125560, - "byteStride": 12, - "count": 116, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_11410": { - "bufferView": "bufferView_14916", - "byteOffset": 613512, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_11412": { - "bufferView": "bufferView_14917", - "byteOffset": 5126952, - "byteStride": 12, - "count": 112, - "max": [ - 9.612, - 38.4012, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11414": { - "bufferView": "bufferView_14917", - "byteOffset": 5128296, - "byteStride": 12, - "count": 112, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_11430": { - "bufferView": "bufferView_14916", - "byteOffset": 644520, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11432": { - "bufferView": "bufferView_14917", - "byteOffset": 5428224, - "byteStride": 12, - "count": 186, - "max": [ - 7.6812, - 36.4812, - 5.76 - ], - "min": [ - 1.9212, - 30.7212, - 3.84 - ], - "type": 35665 - }, - "accessor_11434": { - "bufferView": "bufferView_14917", - "byteOffset": 5430456, - "byteStride": 12, - "count": 186, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_11450": { - "bufferView": "bufferView_14916", - "byteOffset": 645096, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11452": { - "bufferView": "bufferView_14917", - "byteOffset": 5432688, - "byteStride": 12, - "count": 198, - "max": [ - 7.6848, - 26.8812, - 5.76 - ], - "min": [ - 1.9248, - 21.1212, - 3.84 - ], - "type": 35665 - }, - "accessor_11454": { - "bufferView": "bufferView_14917", - "byteOffset": 5435064, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_11470": { - "bufferView": "bufferView_14916", - "byteOffset": 645672, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11472": { - "bufferView": "bufferView_14917", - "byteOffset": 5437440, - "byteStride": 12, - "count": 205, - "max": [ - 7.6908, - 7.6812, - 5.76 - ], - "min": [ - 1.9308, - 1.9212, - 3.84 - ], - "type": 35665 - }, - "accessor_11474": { - "bufferView": "bufferView_14917", - "byteOffset": 5439900, - "byteStride": 12, - "count": 205, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_11490": { - "bufferView": "bufferView_14916", - "byteOffset": 646824, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11492": { - "bufferView": "bufferView_14917", - "byteOffset": 5447928, - "byteStride": 12, - "count": 178, - "max": [ - 7.6884, - 17.2812, - 5.76 - ], - "min": [ - 1.9284, - 11.5212, - 3.84 - ], - "type": 35665 - }, - "accessor_11494": { - "bufferView": "bufferView_14917", - "byteOffset": 5450064, - "byteStride": 12, - "count": 178, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_11510": { - "bufferView": "bufferView_14916", - "byteOffset": 647400, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11512": { - "bufferView": "bufferView_14917", - "byteOffset": 5452200, - "byteStride": 12, - "count": 226, - "max": [ - 6.726, - 21.1212, - 1.92 - ], - "min": [ - 2.886, - 17.2812, - 0 - ], - "type": 35665 - }, - "accessor_11514": { - "bufferView": "bufferView_14917", - "byteOffset": 5454912, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1152": { - "bufferView": "bufferView_14916", - "byteOffset": 649896, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11530": { - "bufferView": "bufferView_14916", - "byteOffset": 647976, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11532": { - "bufferView": "bufferView_14917", - "byteOffset": 5457624, - "byteStride": 12, - "count": 226, - "max": [ - 6.7284, - 11.5212, - 1.92 - ], - "min": [ - 2.8884, - 7.6812, - 0 - ], - "type": 35665 - }, - "accessor_11534": { - "bufferView": "bufferView_14917", - "byteOffset": 5460336, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1154": { - "bufferView": "bufferView_14917", - "byteOffset": 5477688, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_11550": { - "bufferView": "bufferView_14916", - "byteOffset": 648552, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11552": { - "bufferView": "bufferView_14917", - "byteOffset": 5463048, - "byteStride": 12, - "count": 226, - "max": [ - 6.7224, - 30.7212, - 1.92 - ], - "min": [ - 2.8824, - 26.8812, - 0 - ], - "type": 35665 - }, - "accessor_11554": { - "bufferView": "bufferView_14917", - "byteOffset": 5465760, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_1156": { - "bufferView": "bufferView_14917", - "byteOffset": 5480472, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_11572": { - "bufferView": "bufferView_14916", - "byteOffset": 649128, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_11574": { - "bufferView": "bufferView_14917", - "byteOffset": 5468472, - "byteStride": 12, - "count": 384, - "max": [ - 5.7288, - 57.606, - 5.6652 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11576": { - "bufferView": "bufferView_14917", - "byteOffset": 5473080, - "byteStride": 12, - "count": 384, - "max": [ - 0.999963, - 0.999999, - 0.999963 - ], - "min": [ - -0.999963, - -0.999999, - -0.999963 - ], - "type": 35665 - }, - "accessor_11592": { - "bufferView": "bufferView_14916", - "byteOffset": 650472, - "byteStride": 0, - "count": 2094, - "type": 5123 - }, - "accessor_11594": { - "bufferView": "bufferView_14917", - "byteOffset": 5483256, - "byteStride": 12, - "count": 1534, - "max": [ - 13.9476, - 9.6, - 39.2124 - ], - "min": [ - 4.098, - 0, - 28.9776 - ], - "type": 35665 - }, - "accessor_11596": { - "bufferView": "bufferView_14917", - "byteOffset": 5501664, - "byteStride": 12, - "count": 1534, - "max": [ - 0.999954, - 1, - 0.999954 - ], - "min": [ - -0.999954, - -1, - -0.999954 - ], - "type": 35665 - }, - "accessor_116": { - "bufferView": "bufferView_14916", - "byteOffset": 560352, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_11612": { - "bufferView": "bufferView_14916", - "byteOffset": 654660, - "byteStride": 0, - "count": 432, - "type": 5123 - }, - "accessor_11614": { - "bufferView": "bufferView_14917", - "byteOffset": 5520072, - "byteStride": 12, - "count": 312, - "max": [ - 10.728, - 7.68, - 27.9516 - ], - "min": [ - 0, - 1.92, - 0 - ], - "type": 35665 - }, - "accessor_11616": { - "bufferView": "bufferView_14917", - "byteOffset": 5523816, - "byteStride": 12, - "count": 312, - "max": [ - 0.982696, - 1, - 0.982881 - ], - "min": [ - -0.982696, - -1, - -0.982881 - ], - "type": 35665 - }, - "accessor_11632": { - "bufferView": "bufferView_14916", - "byteOffset": 655524, - "byteStride": 0, - "count": 192, - "type": 5123 - }, - "accessor_11634": { - "bufferView": "bufferView_14917", - "byteOffset": 5527560, - "byteStride": 12, - "count": 187, - "max": [ - 10.7004, - 7.1988, - 30.222 - ], - "min": [ - 5.8968, - 2.4012, - 28.8624 - ], - "type": 35665 - }, - "accessor_11636": { - "bufferView": "bufferView_14917", - "byteOffset": 5529804, - "byteStride": 12, - "count": 187, - "max": [ - 0.963982, - 0.980841, - 0.18388 - ], - "min": [ - -0.963982, - -0.980841, - -0.18388 - ], - "type": 35665 - }, - "accessor_11652": { - "bufferView": "bufferView_14916", - "byteOffset": 655908, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_11654": { - "bufferView": "bufferView_14917", - "byteOffset": 5532048, - "byteStride": 12, - "count": 512, - "max": [ - 11.556, - 8.16, - 29.9292 - ], - "min": [ - 4.5972, - 1.44, - 26.7972 - ], - "type": 35665 - }, - "accessor_11656": { - "bufferView": "bufferView_14917", - "byteOffset": 5538192, - "byteStride": 12, - "count": 512, - "max": [ - 0.963773, - 0.980638, - 0.982777 - ], - "min": [ - -0.963773, - -0.980638, - -0.982777 - ], - "type": 35665 - }, - "accessor_11672": { - "bufferView": "bufferView_14916", - "byteOffset": 657444, - "byteStride": 0, - "count": 5814, - "type": 5123 - }, - "accessor_11674": { - "bufferView": "bufferView_14917", - "byteOffset": 5544336, - "byteStride": 12, - "count": 5814, - "max": [ - 12.0276, - 8.6832, - 30.4008 - ], - "min": [ - 1.0572, - 0.96, - 9.3912 - ], - "type": 35665 - }, - "accessor_11676": { - "bufferView": "bufferView_14917", - "byteOffset": 5614104, - "byteStride": 12, - "count": 5814, - "max": [ - 0.855066, - 0.783506, - 0.848586 - ], - "min": [ - -0.855066, - -0.783506, - -0.848586 - ], - "type": 35665 - }, - "accessor_11693": { - "bufferView": "bufferView_14916", - "byteOffset": 669072, - "byteStride": 0, - "count": 2244, - "type": 5123 - }, - "accessor_11695": { - "bufferView": "bufferView_14917", - "byteOffset": 5683872, - "byteStride": 12, - "count": 1856, - "max": [ - 14.5884, - 9.6, - 32.9628 - ], - "min": [ - 0, - 0, - 3.828 - ], - "type": 35665 - }, - "accessor_11697": { - "bufferView": "bufferView_14917", - "byteOffset": 5706144, - "byteStride": 12, - "count": 1856, - "max": [ - 0.98273, - 1, - 0.98305 - ], - "min": [ - -0.98273, - -1, - -0.98305 - ], - "type": 35665 - }, - "accessor_11713": { - "bufferView": "bufferView_14916", - "byteOffset": 673560, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_11715": { - "bufferView": "bufferView_14917", - "byteOffset": 5728416, - "byteStride": 12, - "count": 12, - "max": [ - 12.5256, - 3.84, - 30.954 - ], - "min": [ - 10.6392, - 1.92, - 30.5988 - ], - "type": 35665 - }, - "accessor_11717": { - "bufferView": "bufferView_14917", - "byteOffset": 5728560, - "byteStride": 12, - "count": 12, - "max": [ - 0.185137, - 0.0001064, - 0.98273 - ], - "min": [ - -0.185137, - -0.0001064, - -0.98273 - ], - "type": 35665 - }, - "accessor_1172": { - "bufferView": "bufferView_14916", - "byteOffset": 675360, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11733": { - "bufferView": "bufferView_14916", - "byteOffset": 673584, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_11735": { - "bufferView": "bufferView_14917", - "byteOffset": 5728704, - "byteStride": 12, - "count": 12, - "max": [ - 8.7516, - 7.68, - 31.6656 - ], - "min": [ - 6.8652, - 5.76, - 31.3104 - ], - "type": 35665 - }, - "accessor_11737": { - "bufferView": "bufferView_14917", - "byteOffset": 5728848, - "byteStride": 12, - "count": 12, - "max": [ - 0.18528, - 0.000267, - 0.98273 - ], - "min": [ - -0.18528, - -0.000267, - -0.98273 - ], - "type": 35665 - }, - "accessor_1174": { - "bufferView": "bufferView_14917", - "byteOffset": 5750016, - "byteStride": 12, - "count": 232, - "max": [ - 97.9202, - 6.7198, - 2.8826 - ], - "min": [ - 94.0791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_11753": { - "bufferView": "bufferView_14916", - "byteOffset": 673608, - "byteStride": 0, - "count": 876, - "type": 5123 - }, - "accessor_11755": { - "bufferView": "bufferView_14917", - "byteOffset": 5728992, - "byteStride": 12, - "count": 876, - "max": [ - 13.5576, - 8.64, - 32.6976 - ], - "min": [ - 6.0108, - 0.96, - 30.51 - ], - "type": 35665 - }, - "accessor_11757": { - "bufferView": "bufferView_14917", - "byteOffset": 5739504, - "byteStride": 12, - "count": 876, - "max": [ - 0.854549, - 0.702259, - 0.830359 - ], - "min": [ - -0.854549, - -0.702259, - -0.830359 - ], - "type": 35665 - }, - "accessor_1176": { - "bufferView": "bufferView_14917", - "byteOffset": 5752800, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_11773": { - "bufferView": "bufferView_14916", - "byteOffset": 675936, - "byteStride": 0, - "count": 1536, - "type": 5123 - }, - "accessor_11775": { - "bufferView": "bufferView_14917", - "byteOffset": 5755584, - "byteStride": 12, - "count": 1099, - "max": [ - 9.432, - 9.6, - 9.4344 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11777": { - "bufferView": "bufferView_14917", - "byteOffset": 5768772, - "byteStride": 12, - "count": 1099, - "max": [ - 0.999954, - 1, - 0.999954 - ], - "min": [ - -0.999954, - -1, - -0.999954 - ], - "type": 35665 - }, - "accessor_118": { - "bufferView": "bufferView_14917", - "byteOffset": 4655472, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_11800": { - "bufferView": "bufferView_14916", - "byteOffset": 679008, - "byteStride": 0, - "count": 2244, - "type": 5123 - }, - "accessor_11802": { - "bufferView": "bufferView_14917", - "byteOffset": 5781960, - "byteStride": 12, - "count": 1856, - "max": [ - 14.5884, - 9.6, - 32.9628 - ], - "min": [ - 0, - 0, - 3.828 - ], - "type": 35665 - }, - "accessor_11804": { - "bufferView": "bufferView_14917", - "byteOffset": 5804232, - "byteStride": 12, - "count": 1856, - "max": [ - 0.98273, - 1, - 0.98305 - ], - "min": [ - -0.98273, - -1, - -0.98305 - ], - "type": 35665 - }, - "accessor_11820": { - "bufferView": "bufferView_14916", - "byteOffset": 683496, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_11822": { - "bufferView": "bufferView_14917", - "byteOffset": 5826504, - "byteStride": 12, - "count": 12, - "max": [ - 12.5256, - 3.84, - 30.954 - ], - "min": [ - 10.6392, - 1.92, - 30.5988 - ], - "type": 35665 - }, - "accessor_11824": { - "bufferView": "bufferView_14917", - "byteOffset": 5826648, - "byteStride": 12, - "count": 12, - "max": [ - 0.185137, - 0.0001064, - 0.98273 - ], - "min": [ - -0.185137, - -0.0001064, - -0.98273 - ], - "type": 35665 - }, - "accessor_11840": { - "bufferView": "bufferView_14916", - "byteOffset": 683520, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_11842": { - "bufferView": "bufferView_14917", - "byteOffset": 5826792, - "byteStride": 12, - "count": 12, - "max": [ - 8.7516, - 7.68, - 31.6656 - ], - "min": [ - 6.8652, - 5.76, - 31.3104 - ], - "type": 35665 - }, - "accessor_11844": { - "bufferView": "bufferView_14917", - "byteOffset": 5826936, - "byteStride": 12, - "count": 12, - "max": [ - 0.18528, - 0.000267, - 0.98273 - ], - "min": [ - -0.18528, - -0.000267, - -0.98273 - ], - "type": 35665 - }, - "accessor_11860": { - "bufferView": "bufferView_14916", - "byteOffset": 683544, - "byteStride": 0, - "count": 876, - "type": 5123 - }, - "accessor_11862": { - "bufferView": "bufferView_14917", - "byteOffset": 5827080, - "byteStride": 12, - "count": 876, - "max": [ - 13.5576, - 8.64, - 32.6976 - ], - "min": [ - 6.0108, - 0.96, - 30.51 - ], - "type": 35665 - }, - "accessor_11864": { - "bufferView": "bufferView_14917", - "byteOffset": 5837592, - "byteStride": 12, - "count": 876, - "max": [ - 0.854549, - 0.702259, - 0.830359 - ], - "min": [ - -0.854549, - -0.702259, - -0.830359 - ], - "type": 35665 - }, - "accessor_11880": { - "bufferView": "bufferView_14916", - "byteOffset": 685296, - "byteStride": 0, - "count": 1536, - "type": 5123 - }, - "accessor_11882": { - "bufferView": "bufferView_14917", - "byteOffset": 5848104, - "byteStride": 12, - "count": 1099, - "max": [ - 9.432, - 9.6, - 9.4344 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_11884": { - "bufferView": "bufferView_14917", - "byteOffset": 5861292, - "byteStride": 12, - "count": 1099, - "max": [ - 0.999954, - 1, - 0.999954 - ], - "min": [ - -0.999954, - -1, - -0.999954 - ], - "type": 35665 - }, - "accessor_11907": { - "bufferView": "bufferView_14916", - "byteOffset": 688944, - "byteStride": 0, - "count": 2094, - "type": 5123 - }, - "accessor_11909": { - "bufferView": "bufferView_14917", - "byteOffset": 5880048, - "byteStride": 12, - "count": 1534, - "max": [ - 13.9476, - 9.6, - 39.2124 - ], - "min": [ - 4.098, - 0, - 28.9776 - ], - "type": 35665 - }, - "accessor_11911": { - "bufferView": "bufferView_14917", - "byteOffset": 5898456, - "byteStride": 12, - "count": 1534, - "max": [ - 0.999954, - 1, - 0.999954 - ], - "min": [ - -0.999954, - -1, - -0.999954 - ], - "type": 35665 - }, - "accessor_1192": { - "bufferView": "bufferView_14916", - "byteOffset": 688368, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_11927": { - "bufferView": "bufferView_14916", - "byteOffset": 693132, - "byteStride": 0, - "count": 432, - "type": 5123 - }, - "accessor_11929": { - "bufferView": "bufferView_14917", - "byteOffset": 5916864, - "byteStride": 12, - "count": 312, - "max": [ - 10.728, - 7.68, - 27.9516 - ], - "min": [ - 0, - 1.92, - 0 - ], - "type": 35665 - }, - "accessor_11931": { - "bufferView": "bufferView_14917", - "byteOffset": 5920608, - "byteStride": 12, - "count": 312, - "max": [ - 0.982696, - 1, - 0.982881 - ], - "min": [ - -0.982696, - -1, - -0.982881 - ], - "type": 35665 - }, - "accessor_1194": { - "bufferView": "bufferView_14917", - "byteOffset": 5874480, - "byteStride": 12, - "count": 232, - "max": [ - 78.7203, - 6.7198, - 2.8826 - ], - "min": [ - 74.8791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_11947": { - "bufferView": "bufferView_14916", - "byteOffset": 693996, - "byteStride": 0, - "count": 192, - "type": 5123 - }, - "accessor_11949": { - "bufferView": "bufferView_14917", - "byteOffset": 5924352, - "byteStride": 12, - "count": 187, - "max": [ - 10.7004, - 7.1988, - 30.222 - ], - "min": [ - 5.8968, - 2.4012, - 28.8624 - ], - "type": 35665 - }, - "accessor_11951": { - "bufferView": "bufferView_14917", - "byteOffset": 5926596, - "byteStride": 12, - "count": 187, - "max": [ - 0.963982, - 0.980841, - 0.18388 - ], - "min": [ - -0.963982, - -0.980841, - -0.18388 - ], - "type": 35665 - }, - "accessor_1196": { - "bufferView": "bufferView_14917", - "byteOffset": 5877264, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_11967": { - "bufferView": "bufferView_14916", - "byteOffset": 694380, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_11969": { - "bufferView": "bufferView_14917", - "byteOffset": 5928840, - "byteStride": 12, - "count": 512, - "max": [ - 11.556, - 8.16, - 29.9292 - ], - "min": [ - 4.5972, - 1.44, - 26.7972 - ], - "type": 35665 - }, - "accessor_11971": { - "bufferView": "bufferView_14917", - "byteOffset": 5934984, - "byteStride": 12, - "count": 512, - "max": [ - 0.963773, - 0.980638, - 0.982777 - ], - "min": [ - -0.963773, - -0.980638, - -0.982777 - ], - "type": 35665 - }, - "accessor_11987": { - "bufferView": "bufferView_14916", - "byteOffset": 695916, - "byteStride": 0, - "count": 5814, - "type": 5123 - }, - "accessor_11989": { - "bufferView": "bufferView_14917", - "byteOffset": 5941128, - "byteStride": 12, - "count": 5814, - "max": [ - 12.0276, - 8.6832, - 30.4008 - ], - "min": [ - 1.0572, - 0.96, - 9.3912 - ], - "type": 35665 - }, - "accessor_11991": { - "bufferView": "bufferView_14917", - "byteOffset": 6010896, - "byteStride": 12, - "count": 5814, - "max": [ - 0.855066, - 0.783506, - 0.848586 - ], - "min": [ - -0.855066, - -0.783506, - -0.848586 - ], - "type": 35665 - }, - "accessor_120": { - "bufferView": "bufferView_14917", - "byteOffset": 4657968, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_12008": { - "bufferView": "bufferView_14916", - "byteOffset": 708000, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_12010": { - "bufferView": "bufferView_14917", - "byteOffset": 6085656, - "byteStride": 12, - "count": 324, - "max": [ - 5.7168, - 57.6, - 5.7132 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12012": { - "bufferView": "bufferView_14917", - "byteOffset": 6089544, - "byteStride": 12, - "count": 324, - "max": [ - 0.98387, - 1, - 0.984085 - ], - "min": [ - -0.98387, - -1, - -0.984085 - ], - "type": 35665 - }, - "accessor_12028": { - "bufferView": "bufferView_14916", - "byteOffset": 708768, - "byteStride": 0, - "count": 960, - "type": 5123 - }, - "accessor_12030": { - "bufferView": "bufferView_14917", - "byteOffset": 6093432, - "byteStride": 12, - "count": 780, - "max": [ - 13.158, - 9.12, - 18.8172 - ], - "min": [ - 5.4792, - 4.7976, - 11.1384 - ], - "type": 35665 - }, - "accessor_12032": { - "bufferView": "bufferView_14917", - "byteOffset": 6102792, - "byteStride": 12, - "count": 780, - "max": [ - 0.983955, - 1, - 0.983767 - ], - "min": [ - -0.983955, - -1, - -0.983767 - ], - "type": 35665 - }, - "accessor_12048": { - "bufferView": "bufferView_14916", - "byteOffset": 710688, - "byteStride": 0, - "count": 3870, - "type": 5123 - }, - "accessor_12050": { - "bufferView": "bufferView_14917", - "byteOffset": 6112152, - "byteStride": 12, - "count": 3622, - "max": [ - 13.638, - 9.12, - 19.2972 - ], - "min": [ - 0.3528, - 0, - 0.8916 - ], - "type": 35665 - }, - "accessor_12052": { - "bufferView": "bufferView_14917", - "byteOffset": 6155616, - "byteStride": 12, - "count": 3622, - "max": [ - 0.999888, - 1, - 0.999888 - ], - "min": [ - -0.999888, - -1, - -0.999888 - ], - "type": 35665 - }, - "accessor_12068": { - "bufferView": "bufferView_14916", - "byteOffset": 718428, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_12070": { - "bufferView": "bufferView_14917", - "byteOffset": 6199080, - "byteStride": 12, - "count": 1139, - "max": [ - 8.3868, - 8.6424, - 4.0728 - ], - "min": [ - 0, - 0.0012, - 0 - ], - "type": 35665 - }, - "accessor_12072": { - "bufferView": "bufferView_14917", - "byteOffset": 6212748, - "byteStride": 12, - "count": 1139, - "max": [ - 0.929851, - 1, - 0.930126 - ], - "min": [ - -0.929851, - -1, - -0.930126 - ], - "type": 35665 - }, - "accessor_12088": { - "bufferView": "bufferView_14916", - "byteOffset": 720732, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_12090": { - "bufferView": "bufferView_14917", - "byteOffset": 6226416, - "byteStride": 12, - "count": 384, - "max": [ - 15.9576, - 5.7996, - 28.896 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12092": { - "bufferView": "bufferView_14917", - "byteOffset": 6231024, - "byteStride": 12, - "count": 384, - "max": [ - 0.929772, - 0.999999, - 0.930152 - ], - "min": [ - -0.929772, - -0.999999, - -0.930152 - ], - "type": 35665 - }, - "accessor_12108": { - "bufferView": "bufferView_14916", - "byteOffset": 721500, - "byteStride": 0, - "count": 3876, - "type": 5123 - }, - "accessor_12110": { - "bufferView": "bufferView_14917", - "byteOffset": 6235632, - "byteStride": 12, - "count": 3756, - "max": [ - 16.62, - 9.6084, - 20.1276 - ], - "min": [ - 1.7832, - 0, - 0.702 - ], - "type": 35665 - }, - "accessor_12112": { - "bufferView": "bufferView_14917", - "byteOffset": 6280704, - "byteStride": 12, - "count": 3756, - "max": [ - 0.983955, - 1, - 0.996623 - ], - "min": [ - -0.983955, - -1, - -0.996623 - ], - "type": 35665 - }, - "accessor_1212": { - "bufferView": "bufferView_14916", - "byteOffset": 707544, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_12128": { - "bufferView": "bufferView_14916", - "byteOffset": 729252, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_12130": { - "bufferView": "bufferView_14917", - "byteOffset": 6325776, - "byteStride": 12, - "count": 288, - "max": [ - 3.9036, - 7.6884, - 10.2972 - ], - "min": [ - 0, - 1.9272, - 4.2336 - ], - "type": 35665 - }, - "accessor_12132": { - "bufferView": "bufferView_14917", - "byteOffset": 6329232, - "byteStride": 12, - "count": 288, - "max": [ - 0.930155, - 0.980911, - 0.912278 - ], - "min": [ - -0.930155, - -0.980911, - -0.912278 - ], - "type": 35665 - }, - "accessor_1214": { - "bufferView": "bufferView_14917", - "byteOffset": 6080664, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_12148": { - "bufferView": "bufferView_14916", - "byteOffset": 729828, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_12150": { - "bufferView": "bufferView_14917", - "byteOffset": 6332688, - "byteStride": 12, - "count": 288, - "max": [ - 14.6172, - 7.68, - 6.0624 - ], - "min": [ - 10.7136, - 1.9188, - 0 - ], - "type": 35665 - }, - "accessor_12152": { - "bufferView": "bufferView_14917", - "byteOffset": 6336144, - "byteStride": 12, - "count": 288, - "max": [ - 0.930155, - 0.980949, - 0.912278 - ], - "min": [ - -0.930155, - -0.980949, - -0.912278 - ], - "type": 35665 - }, - "accessor_1216": { - "bufferView": "bufferView_14917", - "byteOffset": 6083160, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_12168": { - "bufferView": "bufferView_14916", - "byteOffset": 731556, - "byteStride": 0, - "count": 960, - "type": 5123 - }, - "accessor_12170": { - "bufferView": "bufferView_14917", - "byteOffset": 6347280, - "byteStride": 12, - "count": 780, - "max": [ - 13.158, - 9.12, - 18.8172 - ], - "min": [ - 5.4792, - 4.7976, - 11.1384 - ], - "type": 35665 - }, - "accessor_12172": { - "bufferView": "bufferView_14917", - "byteOffset": 6356640, - "byteStride": 12, - "count": 780, - "max": [ - 0.983955, - 1, - 0.983767 - ], - "min": [ - -0.983955, - -1, - -0.983767 - ], - "type": 35665 - }, - "accessor_12188": { - "bufferView": "bufferView_14916", - "byteOffset": 733476, - "byteStride": 0, - "count": 3870, - "type": 5123 - }, - "accessor_12190": { - "bufferView": "bufferView_14917", - "byteOffset": 6366000, - "byteStride": 12, - "count": 3622, - "max": [ - 13.638, - 9.12, - 19.2972 - ], - "min": [ - 0.3528, - 0, - 0.8916 - ], - "type": 35665 - }, - "accessor_12192": { - "bufferView": "bufferView_14917", - "byteOffset": 6409464, - "byteStride": 12, - "count": 3622, - "max": [ - 0.999888, - 1, - 0.999888 - ], - "min": [ - -0.999888, - -1, - -0.999888 - ], - "type": 35665 - }, - "accessor_12208": { - "bufferView": "bufferView_14916", - "byteOffset": 741216, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_12210": { - "bufferView": "bufferView_14917", - "byteOffset": 6452928, - "byteStride": 12, - "count": 1139, - "max": [ - 8.3868, - 8.6424, - 4.0728 - ], - "min": [ - 0, - 0.0012, - 0 - ], - "type": 35665 - }, - "accessor_12212": { - "bufferView": "bufferView_14917", - "byteOffset": 6466596, - "byteStride": 12, - "count": 1139, - "max": [ - 0.929851, - 1, - 0.930126 - ], - "min": [ - -0.929851, - -1, - -0.930126 - ], - "type": 35665 - }, - "accessor_12228": { - "bufferView": "bufferView_14916", - "byteOffset": 743520, - "byteStride": 0, - "count": 3876, - "type": 5123 - }, - "accessor_12230": { - "bufferView": "bufferView_14917", - "byteOffset": 6480264, - "byteStride": 12, - "count": 3756, - "max": [ - 16.62, - 9.6084, - 20.1276 - ], - "min": [ - 1.7832, - 0, - 0.702 - ], - "type": 35665 - }, - "accessor_12232": { - "bufferView": "bufferView_14917", - "byteOffset": 6525336, - "byteStride": 12, - "count": 3756, - "max": [ - 0.983955, - 1, - 0.996623 - ], - "min": [ - -0.983955, - -1, - -0.996623 - ], - "type": 35665 - }, - "accessor_12248": { - "bufferView": "bufferView_14916", - "byteOffset": 751272, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_12250": { - "bufferView": "bufferView_14917", - "byteOffset": 6570408, - "byteStride": 12, - "count": 288, - "max": [ - 3.9036, - 7.6884, - 10.2972 - ], - "min": [ - 0, - 1.9272, - 4.2336 - ], - "type": 35665 - }, - "accessor_12252": { - "bufferView": "bufferView_14917", - "byteOffset": 6573864, - "byteStride": 12, - "count": 288, - "max": [ - 0.930155, - 0.980911, - 0.912278 - ], - "min": [ - -0.930155, - -0.980911, - -0.912278 - ], - "type": 35665 - }, - "accessor_12268": { - "bufferView": "bufferView_14916", - "byteOffset": 751848, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_12270": { - "bufferView": "bufferView_14917", - "byteOffset": 6577320, - "byteStride": 12, - "count": 288, - "max": [ - 14.6172, - 7.68, - 6.0624 - ], - "min": [ - 10.7136, - 1.9188, - 0 - ], - "type": 35665 - }, - "accessor_12272": { - "bufferView": "bufferView_14917", - "byteOffset": 6580776, - "byteStride": 12, - "count": 288, - "max": [ - 0.930155, - 0.980949, - 0.912278 - ], - "min": [ - -0.930155, - -0.980949, - -0.912278 - ], - "type": 35665 - }, - "accessor_12288": { - "bufferView": "bufferView_14916", - "byteOffset": 752424, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_12290": { - "bufferView": "bufferView_14917", - "byteOffset": 6584232, - "byteStride": 12, - "count": 384, - "max": [ - 15.9576, - 5.7996, - 28.896 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12292": { - "bufferView": "bufferView_14917", - "byteOffset": 6588840, - "byteStride": 12, - "count": 384, - "max": [ - 0.929772, - 0.999999, - 0.930152 - ], - "min": [ - -0.929772, - -0.999999, - -0.930152 - ], - "type": 35665 - }, - "accessor_1232": { - "bufferView": "bufferView_14916", - "byteOffset": 730404, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_12320": { - "bufferView": "bufferView_14916", - "byteOffset": 753192, - "byteStride": 0, - "count": 369, - "type": 5123 - }, - "accessor_12323": { - "bufferView": "bufferView_14916", - "byteOffset": 753930, - "byteStride": 0, - "count": 369, - "type": 5123 - }, - "accessor_12325": { - "bufferView": "bufferView_14917", - "byteOffset": 6593448, - "byteStride": 12, - "count": 642, - "max": [ - 3.858, - 19.2012, - 19.2024 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12327": { - "bufferView": "bufferView_14917", - "byteOffset": 6601152, - "byteStride": 12, - "count": 642, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1234": { - "bufferView": "bufferView_14917", - "byteOffset": 6339600, - "byteStride": 12, - "count": 320, - "max": [ - 113.28, - 7.686, - 13.4445 - ], - "min": [ - 107.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_12355": { - "bufferView": "bufferView_14916", - "byteOffset": 754668, - "byteStride": 0, - "count": 369, - "type": 5123 - }, - "accessor_12358": { - "bufferView": "bufferView_14916", - "byteOffset": 755406, - "byteStride": 0, - "count": 369, - "type": 5123 - }, - "accessor_1236": { - "bufferView": "bufferView_14917", - "byteOffset": 6343440, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_12360": { - "bufferView": "bufferView_14917", - "byteOffset": 6608856, - "byteStride": 12, - "count": 642, - "max": [ - 3.858, - 19.2012, - 19.2024 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12362": { - "bufferView": "bufferView_14917", - "byteOffset": 6616560, - "byteStride": 12, - "count": 642, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_12378": { - "bufferView": "bufferView_14916", - "byteOffset": 757296, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12380": { - "bufferView": "bufferView_14917", - "byteOffset": 6631944, - "byteStride": 12, - "count": 690, - "max": [ - 48.1038, - 31.68, - 22.0976 - ], - "min": [ - 33.0156, - 0, - 9.24662 - ], - "type": 35665 - }, - "accessor_12382": { - "bufferView": "bufferView_14917", - "byteOffset": 6640224, - "byteStride": 12, - "count": 690, - "max": [ - 0.94437, - 1, - 0.973205 - ], - "min": [ - -0.94437, - -1, - -0.973205 - ], - "type": 35665 - }, - "accessor_12398": { - "bufferView": "bufferView_14916", - "byteOffset": 758892, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_12400": { - "bufferView": "bufferView_14917", - "byteOffset": 6648504, - "byteStride": 12, - "count": 650, - "max": [ - 48.7298, - 31.68, - 29.849 - ], - "min": [ - 35.0746, - 0, - 19.0106 - ], - "type": 35665 - }, - "accessor_12402": { - "bufferView": "bufferView_14917", - "byteOffset": 6656304, - "byteStride": 12, - "count": 650, - "max": [ - 0.994915, - 1, - 1 - ], - "min": [ - -0.994915, - -1, - -1 - ], - "type": 35665 - }, - "accessor_12418": { - "bufferView": "bufferView_14916", - "byteOffset": 760344, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12420": { - "bufferView": "bufferView_14917", - "byteOffset": 6664104, - "byteStride": 12, - "count": 18, - "max": [ - 45.3421, - 31.68, - 29.2335 - ], - "min": [ - 42.5331, - 26.4, - 28.6205 - ], - "type": 35665 - }, - "accessor_12422": { - "bufferView": "bufferView_14917", - "byteOffset": 6664320, - "byteStride": 12, - "count": 18, - "max": [ - 0.211997, - 0.0117743, - 0.980193 - ], - "min": [ - -0.211997, - -0.0117743, - -0.980193 - ], - "type": 35665 - }, - "accessor_12438": { - "bufferView": "bufferView_14916", - "byteOffset": 760380, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12440": { - "bufferView": "bufferView_14917", - "byteOffset": 6664536, - "byteStride": 12, - "count": 690, - "max": [ - 43.3813, - 31.68, - 17.6936 - ], - "min": [ - 29.2055, - 0, - 2.50469 - ], - "type": 35665 - }, - "accessor_12442": { - "bufferView": "bufferView_14917", - "byteOffset": 6672816, - "byteStride": 12, - "count": 690, - "max": [ - 0.911927, - 1, - 0.847582 - ], - "min": [ - -0.911927, - -1, - -0.847582 - ], - "type": 35665 - }, - "accessor_12458": { - "bufferView": "bufferView_14916", - "byteOffset": 761976, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_12460": { - "bufferView": "bufferView_14917", - "byteOffset": 6681096, - "byteStride": 12, - "count": 668, - "max": [ - 34.8963, - 31.68, - 14.6365 - ], - "min": [ - 24.3324, - 0, - 0.12175 - ], - "type": 35665 - }, - "accessor_12462": { - "bufferView": "bufferView_14917", - "byteOffset": 6689112, - "byteStride": 12, - "count": 668, - "max": [ - 0.99999, - 1, - 0.993922 - ], - "min": [ - -0.99999, - -1, - -0.993922 - ], - "type": 35665 - }, - "accessor_12478": { - "bufferView": "bufferView_14916", - "byteOffset": 763512, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12480": { - "bufferView": "bufferView_14917", - "byteOffset": 6697128, - "byteStride": 12, - "count": 18, - "max": [ - 24.3831, - 5.28, - 5.85944 - ], - "min": [ - 24.3564, - 0, - 2.98844 - ], - "type": 35665 - }, - "accessor_12482": { - "bufferView": "bufferView_14917", - "byteOffset": 6697344, - "byteStride": 12, - "count": 18, - "max": [ - 0.999959, - 0.0007971, - 0.0110205 - ], - "min": [ - -0.999959, - -0.0007971, - -0.0110205 - ], - "type": 35665 - }, - "accessor_12498": { - "bufferView": "bufferView_14916", - "byteOffset": 763548, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12500": { - "bufferView": "bufferView_14917", - "byteOffset": 6697560, - "byteStride": 12, - "count": 690, - "max": [ - 15.8828, - 31.68, - 21.9916 - ], - "min": [ - 0.64638, - 0, - 9.34862 - ], - "type": 35665 - }, - "accessor_12502": { - "bufferView": "bufferView_14917", - "byteOffset": 6705840, - "byteStride": 12, - "count": 690, - "max": [ - 0.943994, - 1, - 0.980107 - ], - "min": [ - -0.943994, - -1, - -0.980107 - ], - "type": 35665 - }, - "accessor_12518": { - "bufferView": "bufferView_14916", - "byteOffset": 765144, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_1252": { - "bufferView": "bufferView_14916", - "byteOffset": 756144, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_12520": { - "bufferView": "bufferView_14917", - "byteOffset": 6714120, - "byteStride": 12, - "count": 650, - "max": [ - 24.4755, - 31.68, - 14.5712 - ], - "min": [ - 13.8152, - 0, - 0.163971 - ], - "type": 35665 - }, - "accessor_12522": { - "bufferView": "bufferView_14917", - "byteOffset": 6721920, - "byteStride": 12, - "count": 650, - "max": [ - 0.999982, - 1, - 0.994048 - ], - "min": [ - -0.999982, - -1, - -0.994048 - ], - "type": 35665 - }, - "accessor_12538": { - "bufferView": "bufferView_14916", - "byteOffset": 766596, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1254": { - "bufferView": "bufferView_14917", - "byteOffset": 6624264, - "byteStride": 12, - "count": 320, - "max": [ - 94.08, - 7.686, - 13.4445 - ], - "min": [ - 88.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_12540": { - "bufferView": "bufferView_14917", - "byteOffset": 6729720, - "byteStride": 12, - "count": 690, - "max": [ - 19.7137, - 31.68, - 17.5985 - ], - "min": [ - 5.34017, - 0, - 2.58681 - ], - "type": 35665 - }, - "accessor_12542": { - "bufferView": "bufferView_14917", - "byteOffset": 6738000, - "byteStride": 12, - "count": 690, - "max": [ - 0.898201, - 1, - 0.848187 - ], - "min": [ - -0.898201, - -1, - -0.848187 - ], - "type": 35665 - }, - "accessor_12558": { - "bufferView": "bufferView_14916", - "byteOffset": 768192, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1256": { - "bufferView": "bufferView_14917", - "byteOffset": 6628104, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_12560": { - "bufferView": "bufferView_14917", - "byteOffset": 6746280, - "byteStride": 12, - "count": 690, - "max": [ - 13.7425, - 31.68, - 29.9507 - ], - "min": [ - 0.0862085, - 0, - 19.1122 - ], - "type": 35665 - }, - "accessor_12562": { - "bufferView": "bufferView_14917", - "byteOffset": 6754560, - "byteStride": 12, - "count": 690, - "max": [ - 0.994959, - 1, - 1 - ], - "min": [ - -0.994959, - -1, - -1 - ], - "type": 35665 - }, - "accessor_12578": { - "bufferView": "bufferView_14916", - "byteOffset": 770364, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12580": { - "bufferView": "bufferView_14917", - "byteOffset": 6768408, - "byteStride": 12, - "count": 690, - "max": [ - 15.7974, - 31.68, - 39.7167 - ], - "min": [ - 0.709813, - 0, - 26.8693 - ], - "type": 35665 - }, - "accessor_12582": { - "bufferView": "bufferView_14917", - "byteOffset": 6776688, - "byteStride": 12, - "count": 690, - "max": [ - 0.944513, - 1, - 0.973305 - ], - "min": [ - -0.944513, - -1, - -0.973305 - ], - "type": 35665 - }, - "accessor_12598": { - "bufferView": "bufferView_14916", - "byteOffset": 771960, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12600": { - "bufferView": "bufferView_14917", - "byteOffset": 6784968, - "byteStride": 12, - "count": 18, - "max": [ - 24.4296, - 31.68, - 5.89506 - ], - "min": [ - 24.3684, - 26.4, - 3.02852 - ], - "type": 35665 - }, - "accessor_12602": { - "bufferView": "bufferView_14917", - "byteOffset": 6785184, - "byteStride": 12, - "count": 18, - "max": [ - 0.999886, - 0.0117743, - 0.0238999 - ], - "min": [ - -0.999886, - -0.0117743, - -0.0238999 - ], - "type": 35665 - }, - "accessor_12618": { - "bufferView": "bufferView_14916", - "byteOffset": 771996, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_12620": { - "bufferView": "bufferView_14917", - "byteOffset": 6785400, - "byteStride": 12, - "count": 668, - "max": [ - 35.0439, - 31.68, - 48.8074 - ], - "min": [ - 24.3621, - 0, - 34.3911 - ], - "type": 35665 - }, - "accessor_12622": { - "bufferView": "bufferView_14917", - "byteOffset": 6793416, - "byteStride": 12, - "count": 668, - "max": [ - 0.999968, - 1, - 0.993831 - ], - "min": [ - -0.999968, - -1, - -0.993831 - ], - "type": 35665 - }, - "accessor_12638": { - "bufferView": "bufferView_14916", - "byteOffset": 773532, - "byteStride": 0, - "count": 822, - "type": 5123 - }, - "accessor_12640": { - "bufferView": "bufferView_14917", - "byteOffset": 6801432, - "byteStride": 12, - "count": 702, - "max": [ - 48.7298, - 31.68, - 29.8696 - ], - "min": [ - 35.0724, - 0, - 19.0312 - ], - "type": 35665 - }, - "accessor_12642": { - "bufferView": "bufferView_14917", - "byteOffset": 6809856, - "byteStride": 12, - "count": 702, - "max": [ - 0.994983, - 1, - 1 - ], - "min": [ - -0.994983, - -1, - -1 - ], - "type": 35665 - }, - "accessor_12658": { - "bufferView": "bufferView_14916", - "byteOffset": 775176, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12660": { - "bufferView": "bufferView_14917", - "byteOffset": 6818280, - "byteStride": 12, - "count": 690, - "max": [ - 48.1673, - 31.68, - 39.6312 - ], - "min": [ - 32.9302, - 0, - 26.9846 - ], - "type": 35665 - }, - "accessor_12662": { - "bufferView": "bufferView_14917", - "byteOffset": 6826560, - "byteStride": 12, - "count": 690, - "max": [ - 0.943851, - 1, - 0.98002 - ], - "min": [ - -0.943851, - -1, - -0.98002 - ], - "type": 35665 - }, - "accessor_12678": { - "bufferView": "bufferView_14916", - "byteOffset": 776772, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12680": { - "bufferView": "bufferView_14917", - "byteOffset": 6834840, - "byteStride": 12, - "count": 690, - "max": [ - 24.4898, - 31.68, - 48.8498 - ], - "min": [ - 13.9102, - 0, - 34.3329 - ], - "type": 35665 - }, - "accessor_12682": { - "bufferView": "bufferView_14917", - "byteOffset": 6843120, - "byteStride": 12, - "count": 690, - "max": [ - 0.999992, - 1, - 0.993874 - ], - "min": [ - -0.999992, - -1, - -0.993874 - ], - "type": 35665 - }, - "accessor_12698": { - "bufferView": "bufferView_14916", - "byteOffset": 778368, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_12700": { - "bufferView": "bufferView_14917", - "byteOffset": 6851400, - "byteStride": 12, - "count": 680, - "max": [ - 48.1086, - 31.68, - 22.1069 - ], - "min": [ - 33.0215, - 0, - 9.26313 - ], - "type": 35665 - }, - "accessor_12702": { - "bufferView": "bufferView_14917", - "byteOffset": 6859560, - "byteStride": 12, - "count": 680, - "max": [ - 0.944656, - 1, - 0.973405 - ], - "min": [ - -0.944656, - -1, - -0.973405 - ], - "type": 35665 - }, - "accessor_12718": { - "bufferView": "bufferView_14916", - "byteOffset": 779952, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1272": { - "bufferView": "bufferView_14916", - "byteOffset": 769788, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_12720": { - "bufferView": "bufferView_14917", - "byteOffset": 6867720, - "byteStride": 12, - "count": 690, - "max": [ - 19.6062, - 31.68, - 46.4623 - ], - "min": [ - 5.42806, - 0, - 31.2742 - ], - "type": 35665 - }, - "accessor_12722": { - "bufferView": "bufferView_14917", - "byteOffset": 6876000, - "byteStride": 12, - "count": 690, - "max": [ - 0.911749, - 1, - 0.847351 - ], - "min": [ - -0.911749, - -1, - -0.847351 - ], - "type": 35665 - }, - "accessor_12738": { - "bufferView": "bufferView_14916", - "byteOffset": 781548, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_1274": { - "bufferView": "bufferView_14917", - "byteOffset": 6762840, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_12740": { - "bufferView": "bufferView_14917", - "byteOffset": 6884280, - "byteStride": 12, - "count": 650, - "max": [ - 43.4692, - 31.68, - 46.3893 - ], - "min": [ - 29.098, - 0, - 31.3767 - ], - "type": 35665 - }, - "accessor_12742": { - "bufferView": "bufferView_14917", - "byteOffset": 6892080, - "byteStride": 12, - "count": 650, - "max": [ - 0.898392, - 1, - 0.848417 - ], - "min": [ - -0.898392, - -1, - -0.848417 - ], - "type": 35665 - }, - "accessor_12758": { - "bufferView": "bufferView_14916", - "byteOffset": 783000, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_1276": { - "bufferView": "bufferView_14917", - "byteOffset": 6765624, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_12760": { - "bufferView": "bufferView_14917", - "byteOffset": 6899880, - "byteStride": 12, - "count": 18, - "max": [ - 33.7789, - 5.28, - 43.8332 - ], - "min": [ - 32.5096, - 0, - 41.2579 - ], - "type": 35665 - }, - "accessor_12762": { - "bufferView": "bufferView_14917", - "byteOffset": 6900096, - "byteStride": 12, - "count": 18, - "max": [ - 0.897081, - 0.0007971, - 0.443649 - ], - "min": [ - -0.897081, - -0.0007971, - -0.443649 - ], - "type": 35665 - }, - "accessor_12778": { - "bufferView": "bufferView_14916", - "byteOffset": 783492, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12780": { - "bufferView": "bufferView_14917", - "byteOffset": 6905304, - "byteStride": 12, - "count": 18, - "max": [ - 33.7506, - 31.68, - 43.8188 - ], - "min": [ - 32.4522, - 26.4, - 41.246 - ], - "type": 35665 - }, - "accessor_12782": { - "bufferView": "bufferView_14917", - "byteOffset": 6905520, - "byteStride": 12, - "count": 18, - "max": [ - 0.896817, - 0.0117743, - 0.455144 - ], - "min": [ - -0.896817, - -0.0117743, - -0.455144 - ], - "type": 35665 - }, - "accessor_12798": { - "bufferView": "bufferView_14916", - "byteOffset": 783528, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12800": { - "bufferView": "bufferView_14917", - "byteOffset": 6905736, - "byteStride": 12, - "count": 18, - "max": [ - 41.2023, - 5.28, - 12.8738 - ], - "min": [ - 38.9717, - 0, - 11.066 - ], - "type": 35665 - }, - "accessor_12802": { - "bufferView": "bufferView_14917", - "byteOffset": 6905952, - "byteStride": 12, - "count": 18, - "max": [ - 0.630959, - 0.0007971, - 0.77707 - ], - "min": [ - -0.630959, - -0.0007971, - -0.77707 - ], - "type": 35665 - }, - "accessor_12850": { - "bufferView": "bufferView_14916", - "byteOffset": 786324, - "byteStride": 0, - "count": 8400, - "type": 5123 - }, - "accessor_12852": { - "bufferView": "bufferView_14917", - "byteOffset": 6926520, - "byteStride": 12, - "count": 5996, - "max": [ - 36.5112, - 27.84, - 36.5112 - ], - "min": [ - -0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_12854": { - "bufferView": "bufferView_14917", - "byteOffset": 6998472, - "byteStride": 12, - "count": 5996, - "max": [ - 0.999277, - 1, - 0.999241 - ], - "min": [ - -0.999277, - -1, - -0.999241 - ], - "type": 35665 - }, - "accessor_12870": { - "bufferView": "bufferView_14916", - "byteOffset": 803124, - "byteStride": 0, - "count": 14988, - "type": 5123 - }, - "accessor_12872": { - "bufferView": "bufferView_14917", - "byteOffset": 7070424, - "byteStride": 12, - "count": 8051, - "max": [ - 28.3932, - 20.16, - 28.3428 - ], - "min": [ - 8.118, - 7.2, - 8.1684 - ], - "type": 35665 - }, - "accessor_12874": { - "bufferView": "bufferView_14917", - "byteOffset": 7167036, - "byteStride": 12, - "count": 8051, - "max": [ - 0.998081, - 1, - 1 - ], - "min": [ - -0.998081, - -1, - -1 - ], - "type": 35665 - }, - "accessor_12890": { - "bufferView": "bufferView_14916", - "byteOffset": 833100, - "byteStride": 0, - "count": 1392, - "type": 5123 - }, - "accessor_12892": { - "bufferView": "bufferView_14917", - "byteOffset": 7263648, - "byteStride": 12, - "count": 918, - "max": [ - 22.5791, - 24, - 22.5715 - ], - "min": [ - 13.944, - 14.4, - 13.9363 - ], - "type": 35665 - }, - "accessor_12894": { - "bufferView": "bufferView_14917", - "byteOffset": 7274664, - "byteStride": 12, - "count": 918, - "max": [ - 0.998666, - 1, - 0.998631 - ], - "min": [ - -0.998666, - -1, - -0.998631 - ], - "type": 35665 - }, - "accessor_12911": { - "bufferView": "bufferView_14916", - "byteOffset": 835884, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12913": { - "bufferView": "bufferView_14917", - "byteOffset": 7285680, - "byteStride": 12, - "count": 690, - "max": [ - 48.1038, - 31.68, - 22.0976 - ], - "min": [ - 33.0156, - 0, - 9.24662 - ], - "type": 35665 - }, - "accessor_12915": { - "bufferView": "bufferView_14917", - "byteOffset": 7293960, - "byteStride": 12, - "count": 690, - "max": [ - 0.94437, - 1, - 0.973205 - ], - "min": [ - -0.94437, - -1, - -0.973205 - ], - "type": 35665 - }, - "accessor_1292": { - "bufferView": "bufferView_14916", - "byteOffset": 783036, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_12931": { - "bufferView": "bufferView_14916", - "byteOffset": 837480, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_12933": { - "bufferView": "bufferView_14917", - "byteOffset": 7302240, - "byteStride": 12, - "count": 650, - "max": [ - 48.7298, - 31.68, - 29.849 - ], - "min": [ - 35.0746, - 0, - 19.0106 - ], - "type": 35665 - }, - "accessor_12935": { - "bufferView": "bufferView_14917", - "byteOffset": 7310040, - "byteStride": 12, - "count": 650, - "max": [ - 0.994915, - 1, - 1 - ], - "min": [ - -0.994915, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1294": { - "bufferView": "bufferView_14917", - "byteOffset": 6900312, - "byteStride": 12, - "count": 208, - "max": [ - 61.4413, - 7.68415, - 9.60325 - ], - "min": [ - 53.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_12951": { - "bufferView": "bufferView_14916", - "byteOffset": 838932, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_12953": { - "bufferView": "bufferView_14917", - "byteOffset": 7317840, - "byteStride": 12, - "count": 18, - "max": [ - 45.3421, - 31.68, - 29.2335 - ], - "min": [ - 42.5331, - 26.4, - 28.6205 - ], - "type": 35665 - }, - "accessor_12955": { - "bufferView": "bufferView_14917", - "byteOffset": 7318056, - "byteStride": 12, - "count": 18, - "max": [ - 0.211997, - 0.0117743, - 0.980193 - ], - "min": [ - -0.211997, - -0.0117743, - -0.980193 - ], - "type": 35665 - }, - "accessor_1296": { - "bufferView": "bufferView_14917", - "byteOffset": 6902808, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_12971": { - "bufferView": "bufferView_14916", - "byteOffset": 839544, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_12973": { - "bufferView": "bufferView_14917", - "byteOffset": 7323840, - "byteStride": 12, - "count": 690, - "max": [ - 43.3813, - 31.68, - 17.6936 - ], - "min": [ - 29.2055, - 0, - 2.50469 - ], - "type": 35665 - }, - "accessor_12975": { - "bufferView": "bufferView_14917", - "byteOffset": 7332120, - "byteStride": 12, - "count": 690, - "max": [ - 0.911927, - 1, - 0.847582 - ], - "min": [ - -0.911927, - -1, - -0.847582 - ], - "type": 35665 - }, - "accessor_12991": { - "bufferView": "bufferView_14916", - "byteOffset": 841140, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_12993": { - "bufferView": "bufferView_14917", - "byteOffset": 7340400, - "byteStride": 12, - "count": 668, - "max": [ - 34.8963, - 31.68, - 14.6365 - ], - "min": [ - 24.3324, - 0, - 0.12175 - ], - "type": 35665 - }, - "accessor_12995": { - "bufferView": "bufferView_14917", - "byteOffset": 7348416, - "byteStride": 12, - "count": 668, - "max": [ - 0.99999, - 1, - 0.993922 - ], - "min": [ - -0.99999, - -1, - -0.993922 - ], - "type": 35665 - }, - "accessor_13011": { - "bufferView": "bufferView_14916", - "byteOffset": 842676, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13013": { - "bufferView": "bufferView_14917", - "byteOffset": 7356432, - "byteStride": 12, - "count": 18, - "max": [ - 24.3831, - 5.28, - 5.85944 - ], - "min": [ - 24.3564, - 0, - 2.98844 - ], - "type": 35665 - }, - "accessor_13015": { - "bufferView": "bufferView_14917", - "byteOffset": 7356648, - "byteStride": 12, - "count": 18, - "max": [ - 0.999959, - 0.0007971, - 0.0110205 - ], - "min": [ - -0.999959, - -0.0007971, - -0.0110205 - ], - "type": 35665 - }, - "accessor_13031": { - "bufferView": "bufferView_14916", - "byteOffset": 842712, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13033": { - "bufferView": "bufferView_14917", - "byteOffset": 7356864, - "byteStride": 12, - "count": 690, - "max": [ - 15.8828, - 31.68, - 21.9916 - ], - "min": [ - 0.64638, - 0, - 9.34862 - ], - "type": 35665 - }, - "accessor_13035": { - "bufferView": "bufferView_14917", - "byteOffset": 7365144, - "byteStride": 12, - "count": 690, - "max": [ - 0.943994, - 1, - 0.980107 - ], - "min": [ - -0.943994, - -1, - -0.980107 - ], - "type": 35665 - }, - "accessor_13051": { - "bufferView": "bufferView_14916", - "byteOffset": 844308, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_13053": { - "bufferView": "bufferView_14917", - "byteOffset": 7373424, - "byteStride": 12, - "count": 650, - "max": [ - 24.4755, - 31.68, - 14.5712 - ], - "min": [ - 13.8152, - 0, - 0.163971 - ], - "type": 35665 - }, - "accessor_13055": { - "bufferView": "bufferView_14917", - "byteOffset": 7381224, - "byteStride": 12, - "count": 650, - "max": [ - 0.999982, - 1, - 0.994048 - ], - "min": [ - -0.999982, - -1, - -0.994048 - ], - "type": 35665 - }, - "accessor_13071": { - "bufferView": "bufferView_14916", - "byteOffset": 845760, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13073": { - "bufferView": "bufferView_14917", - "byteOffset": 7389024, - "byteStride": 12, - "count": 689, - "max": [ - 13.7425, - 31.68, - 29.9507 - ], - "min": [ - 0.0862085, - 0, - 19.1122 - ], - "type": 35665 - }, - "accessor_13075": { - "bufferView": "bufferView_14917", - "byteOffset": 7397292, - "byteStride": 12, - "count": 689, - "max": [ - 0.994959, - 1, - 1 - ], - "min": [ - -0.994959, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13091": { - "bufferView": "bufferView_14916", - "byteOffset": 847356, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13093": { - "bufferView": "bufferView_14917", - "byteOffset": 7405560, - "byteStride": 12, - "count": 690, - "max": [ - 19.7137, - 31.68, - 17.5985 - ], - "min": [ - 5.34017, - 0, - 2.58681 - ], - "type": 35665 - }, - "accessor_13095": { - "bufferView": "bufferView_14917", - "byteOffset": 7413840, - "byteStride": 12, - "count": 690, - "max": [ - 0.898201, - 1, - 0.848187 - ], - "min": [ - -0.898201, - -1, - -0.848187 - ], - "type": 35665 - }, - "accessor_13111": { - "bufferView": "bufferView_14916", - "byteOffset": 848952, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13113": { - "bufferView": "bufferView_14917", - "byteOffset": 7422120, - "byteStride": 12, - "count": 690, - "max": [ - 15.7974, - 31.68, - 39.7167 - ], - "min": [ - 0.709813, - 0, - 26.8693 - ], - "type": 35665 - }, - "accessor_13115": { - "bufferView": "bufferView_14917", - "byteOffset": 7430400, - "byteStride": 12, - "count": 690, - "max": [ - 0.944513, - 1, - 0.973305 - ], - "min": [ - -0.944513, - -1, - -0.973305 - ], - "type": 35665 - }, - "accessor_1312": { - "bufferView": "bufferView_14916", - "byteOffset": 783564, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_13131": { - "bufferView": "bufferView_14916", - "byteOffset": 850548, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13133": { - "bufferView": "bufferView_14917", - "byteOffset": 7438680, - "byteStride": 12, - "count": 18, - "max": [ - 24.4296, - 31.68, - 5.89506 - ], - "min": [ - 24.3684, - 26.4, - 3.02852 - ], - "type": 35665 - }, - "accessor_13135": { - "bufferView": "bufferView_14917", - "byteOffset": 7438896, - "byteStride": 12, - "count": 18, - "max": [ - 0.999886, - 0.0117743, - 0.0238999 - ], - "min": [ - -0.999886, - -0.0117743, - -0.0238999 - ], - "type": 35665 - }, - "accessor_1314": { - "bufferView": "bufferView_14917", - "byteOffset": 6906168, - "byteStride": 12, - "count": 320, - "max": [ - 65.28, - 7.686, - 13.4445 - ], - "min": [ - 59.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_13151": { - "bufferView": "bufferView_14916", - "byteOffset": 850584, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_13153": { - "bufferView": "bufferView_14917", - "byteOffset": 7439112, - "byteStride": 12, - "count": 668, - "max": [ - 35.0439, - 31.68, - 48.8074 - ], - "min": [ - 24.3621, - 0, - 34.3911 - ], - "type": 35665 - }, - "accessor_13155": { - "bufferView": "bufferView_14917", - "byteOffset": 7447128, - "byteStride": 12, - "count": 668, - "max": [ - 0.999968, - 1, - 0.993831 - ], - "min": [ - -0.999968, - -1, - -0.993831 - ], - "type": 35665 - }, - "accessor_1316": { - "bufferView": "bufferView_14917", - "byteOffset": 6910008, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_13171": { - "bufferView": "bufferView_14916", - "byteOffset": 852576, - "byteStride": 0, - "count": 822, - "type": 5123 - }, - "accessor_13173": { - "bufferView": "bufferView_14917", - "byteOffset": 7460136, - "byteStride": 12, - "count": 702, - "max": [ - 48.7298, - 31.68, - 29.8696 - ], - "min": [ - 35.0724, - 0, - 19.0312 - ], - "type": 35665 - }, - "accessor_13175": { - "bufferView": "bufferView_14917", - "byteOffset": 7468560, - "byteStride": 12, - "count": 702, - "max": [ - 0.994983, - 1, - 1 - ], - "min": [ - -0.994983, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13191": { - "bufferView": "bufferView_14916", - "byteOffset": 854220, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13193": { - "bufferView": "bufferView_14917", - "byteOffset": 7476984, - "byteStride": 12, - "count": 690, - "max": [ - 48.1673, - 31.68, - 39.6312 - ], - "min": [ - 32.9302, - 0, - 26.9846 - ], - "type": 35665 - }, - "accessor_13195": { - "bufferView": "bufferView_14917", - "byteOffset": 7485264, - "byteStride": 12, - "count": 690, - "max": [ - 0.943851, - 1, - 0.98002 - ], - "min": [ - -0.943851, - -1, - -0.98002 - ], - "type": 35665 - }, - "accessor_13211": { - "bufferView": "bufferView_14916", - "byteOffset": 855816, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13213": { - "bufferView": "bufferView_14917", - "byteOffset": 7493544, - "byteStride": 12, - "count": 690, - "max": [ - 24.4898, - 31.68, - 48.8498 - ], - "min": [ - 13.9102, - 0, - 34.3329 - ], - "type": 35665 - }, - "accessor_13215": { - "bufferView": "bufferView_14917", - "byteOffset": 7501824, - "byteStride": 12, - "count": 690, - "max": [ - 0.999992, - 1, - 0.993874 - ], - "min": [ - -0.999992, - -1, - -0.993874 - ], - "type": 35665 - }, - "accessor_13231": { - "bufferView": "bufferView_14916", - "byteOffset": 857412, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_13233": { - "bufferView": "bufferView_14917", - "byteOffset": 7510104, - "byteStride": 12, - "count": 680, - "max": [ - 48.1086, - 31.68, - 22.1069 - ], - "min": [ - 33.0215, - 0, - 9.26313 - ], - "type": 35665 - }, - "accessor_13235": { - "bufferView": "bufferView_14917", - "byteOffset": 7518264, - "byteStride": 12, - "count": 680, - "max": [ - 0.944656, - 1, - 0.973405 - ], - "min": [ - -0.944656, - -1, - -0.973405 - ], - "type": 35665 - }, - "accessor_13251": { - "bufferView": "bufferView_14916", - "byteOffset": 858996, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13253": { - "bufferView": "bufferView_14917", - "byteOffset": 7526424, - "byteStride": 12, - "count": 690, - "max": [ - 19.6062, - 31.68, - 46.4623 - ], - "min": [ - 5.42806, - 0, - 31.2742 - ], - "type": 35665 - }, - "accessor_13255": { - "bufferView": "bufferView_14917", - "byteOffset": 7534704, - "byteStride": 12, - "count": 690, - "max": [ - 0.911749, - 1, - 0.847351 - ], - "min": [ - -0.911749, - -1, - -0.847351 - ], - "type": 35665 - }, - "accessor_13271": { - "bufferView": "bufferView_14916", - "byteOffset": 860592, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_13273": { - "bufferView": "bufferView_14917", - "byteOffset": 7542984, - "byteStride": 12, - "count": 650, - "max": [ - 43.4692, - 31.68, - 46.3893 - ], - "min": [ - 29.098, - 0, - 31.3767 - ], - "type": 35665 - }, - "accessor_13275": { - "bufferView": "bufferView_14917", - "byteOffset": 7550784, - "byteStride": 12, - "count": 650, - "max": [ - 0.898392, - 1, - 0.848417 - ], - "min": [ - -0.898392, - -1, - -0.848417 - ], - "type": 35665 - }, - "accessor_13291": { - "bufferView": "bufferView_14916", - "byteOffset": 862044, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13293": { - "bufferView": "bufferView_14917", - "byteOffset": 7558584, - "byteStride": 12, - "count": 18, - "max": [ - 33.7789, - 5.28, - 43.8332 - ], - "min": [ - 32.5096, - 0, - 41.2579 - ], - "type": 35665 - }, - "accessor_13295": { - "bufferView": "bufferView_14917", - "byteOffset": 7558800, - "byteStride": 12, - "count": 18, - "max": [ - 0.897081, - 0.0007971, - 0.443649 - ], - "min": [ - -0.897081, - -0.0007971, - -0.443649 - ], - "type": 35665 - }, - "accessor_13311": { - "bufferView": "bufferView_14916", - "byteOffset": 862080, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13313": { - "bufferView": "bufferView_14917", - "byteOffset": 7559016, - "byteStride": 12, - "count": 18, - "max": [ - 33.7506, - 31.68, - 43.8188 - ], - "min": [ - 32.4522, - 26.4, - 41.246 - ], - "type": 35665 - }, - "accessor_13315": { - "bufferView": "bufferView_14917", - "byteOffset": 7559232, - "byteStride": 12, - "count": 18, - "max": [ - 0.896817, - 0.0117743, - 0.455144 - ], - "min": [ - -0.896817, - -0.0117743, - -0.455144 - ], - "type": 35665 - }, - "accessor_1332": { - "bufferView": "bufferView_14916", - "byteOffset": 784716, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_13331": { - "bufferView": "bufferView_14916", - "byteOffset": 862116, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13333": { - "bufferView": "bufferView_14917", - "byteOffset": 7559448, - "byteStride": 12, - "count": 18, - "max": [ - 41.2023, - 5.28, - 12.8738 - ], - "min": [ - 38.9717, - 0, - 11.066 - ], - "type": 35665 - }, - "accessor_13335": { - "bufferView": "bufferView_14917", - "byteOffset": 7559664, - "byteStride": 12, - "count": 18, - "max": [ - 0.630959, - 0.0007971, - 0.77707 - ], - "min": [ - -0.630959, - -0.0007971, - -0.77707 - ], - "type": 35665 - }, - "accessor_1334": { - "bufferView": "bufferView_14917", - "byteOffset": 6913848, - "byteStride": 12, - "count": 320, - "max": [ - 84.48, - 7.686, - 13.4445 - ], - "min": [ - 78.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1336": { - "bufferView": "bufferView_14917", - "byteOffset": 6917688, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_13383": { - "bufferView": "bufferView_14916", - "byteOffset": 863760, - "byteStride": 0, - "count": 8400, - "type": 5123 - }, - "accessor_13385": { - "bufferView": "bufferView_14917", - "byteOffset": 7576008, - "byteStride": 12, - "count": 5996, - "max": [ - 36.5112, - 27.84, - 36.5112 - ], - "min": [ - -0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_13387": { - "bufferView": "bufferView_14917", - "byteOffset": 7647960, - "byteStride": 12, - "count": 5996, - "max": [ - 0.999277, - 1, - 0.999241 - ], - "min": [ - -0.999277, - -1, - -0.999241 - ], - "type": 35665 - }, - "accessor_13403": { - "bufferView": "bufferView_14916", - "byteOffset": 880560, - "byteStride": 0, - "count": 14988, - "type": 5123 - }, - "accessor_13405": { - "bufferView": "bufferView_14917", - "byteOffset": 7719912, - "byteStride": 12, - "count": 8047, - "max": [ - 28.3932, - 20.16, - 28.3428 - ], - "min": [ - 8.118, - 7.2, - 8.1684 - ], - "type": 35665 - }, - "accessor_13407": { - "bufferView": "bufferView_14917", - "byteOffset": 7816476, - "byteStride": 12, - "count": 8047, - "max": [ - 0.998081, - 1, - 1 - ], - "min": [ - -0.998081, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13423": { - "bufferView": "bufferView_14916", - "byteOffset": 910536, - "byteStride": 0, - "count": 1392, - "type": 5123 - }, - "accessor_13425": { - "bufferView": "bufferView_14917", - "byteOffset": 7913040, - "byteStride": 12, - "count": 916, - "max": [ - 22.5791, - 24, - 22.5715 - ], - "min": [ - 13.944, - 14.4, - 13.9363 - ], - "type": 35665 - }, - "accessor_13427": { - "bufferView": "bufferView_14917", - "byteOffset": 7924032, - "byteStride": 12, - "count": 916, - "max": [ - 0.998666, - 1, - 0.998631 - ], - "min": [ - -0.998666, - -1, - -0.998631 - ], - "type": 35665 - }, - "accessor_13444": { - "bufferView": "bufferView_14916", - "byteOffset": 913320, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13446": { - "bufferView": "bufferView_14917", - "byteOffset": 7935024, - "byteStride": 12, - "count": 690, - "max": [ - 48.1038, - 31.68, - 22.0976 - ], - "min": [ - 33.0156, - 0, - 9.24662 - ], - "type": 35665 - }, - "accessor_13448": { - "bufferView": "bufferView_14917", - "byteOffset": 7943304, - "byteStride": 12, - "count": 690, - "max": [ - 0.94437, - 1, - 0.973205 - ], - "min": [ - -0.94437, - -1, - -0.973205 - ], - "type": 35665 - }, - "accessor_13464": { - "bufferView": "bufferView_14916", - "byteOffset": 914916, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_13466": { - "bufferView": "bufferView_14917", - "byteOffset": 7951584, - "byteStride": 12, - "count": 650, - "max": [ - 48.7298, - 31.68, - 29.849 - ], - "min": [ - 35.0746, - 0, - 19.0106 - ], - "type": 35665 - }, - "accessor_13468": { - "bufferView": "bufferView_14917", - "byteOffset": 7959384, - "byteStride": 12, - "count": 650, - "max": [ - 0.994915, - 1, - 1 - ], - "min": [ - -0.994915, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13484": { - "bufferView": "bufferView_14916", - "byteOffset": 916368, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13486": { - "bufferView": "bufferView_14917", - "byteOffset": 7967184, - "byteStride": 12, - "count": 18, - "max": [ - 45.3421, - 31.68, - 29.2335 - ], - "min": [ - 42.5331, - 26.4, - 28.6205 - ], - "type": 35665 - }, - "accessor_13488": { - "bufferView": "bufferView_14917", - "byteOffset": 7967400, - "byteStride": 12, - "count": 18, - "max": [ - 0.211997, - 0.0117743, - 0.980193 - ], - "min": [ - -0.211997, - -0.0117743, - -0.980193 - ], - "type": 35665 - }, - "accessor_13504": { - "bufferView": "bufferView_14916", - "byteOffset": 916404, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13506": { - "bufferView": "bufferView_14917", - "byteOffset": 7967616, - "byteStride": 12, - "count": 690, - "max": [ - 43.3813, - 31.68, - 17.6936 - ], - "min": [ - 29.2055, - 0, - 2.50469 - ], - "type": 35665 - }, - "accessor_13508": { - "bufferView": "bufferView_14917", - "byteOffset": 7975896, - "byteStride": 12, - "count": 690, - "max": [ - 0.911927, - 1, - 0.847582 - ], - "min": [ - -0.911927, - -1, - -0.847582 - ], - "type": 35665 - }, - "accessor_1352": { - "bufferView": "bufferView_14916", - "byteOffset": 838968, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_13524": { - "bufferView": "bufferView_14916", - "byteOffset": 918000, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_13526": { - "bufferView": "bufferView_14917", - "byteOffset": 7984176, - "byteStride": 12, - "count": 668, - "max": [ - 34.8963, - 31.68, - 14.6365 - ], - "min": [ - 24.3324, - 0, - 0.12175 - ], - "type": 35665 - }, - "accessor_13528": { - "bufferView": "bufferView_14917", - "byteOffset": 7992192, - "byteStride": 12, - "count": 668, - "max": [ - 0.99999, - 1, - 0.993922 - ], - "min": [ - -0.99999, - -1, - -0.993922 - ], - "type": 35665 - }, - "accessor_1354": { - "bufferView": "bufferView_14917", - "byteOffset": 7318272, - "byteStride": 12, - "count": 232, - "max": [ - 88.3203, - 6.7198, - 2.8826 - ], - "min": [ - 84.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_13544": { - "bufferView": "bufferView_14916", - "byteOffset": 920112, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13546": { - "bufferView": "bufferView_14917", - "byteOffset": 8005776, - "byteStride": 12, - "count": 18, - "max": [ - 24.3831, - 5.28, - 5.85944 - ], - "min": [ - 24.3564, - 0, - 2.98844 - ], - "type": 35665 - }, - "accessor_13548": { - "bufferView": "bufferView_14917", - "byteOffset": 8005992, - "byteStride": 12, - "count": 18, - "max": [ - 0.999959, - 0.0007971, - 0.0110205 - ], - "min": [ - -0.999959, - -0.0007971, - -0.0110205 - ], - "type": 35665 - }, - "accessor_1356": { - "bufferView": "bufferView_14917", - "byteOffset": 7321056, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_13564": { - "bufferView": "bufferView_14916", - "byteOffset": 920148, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13566": { - "bufferView": "bufferView_14917", - "byteOffset": 8006208, - "byteStride": 12, - "count": 690, - "max": [ - 15.8828, - 31.68, - 21.9916 - ], - "min": [ - 0.64638, - 0, - 9.34862 - ], - "type": 35665 - }, - "accessor_13568": { - "bufferView": "bufferView_14917", - "byteOffset": 8014488, - "byteStride": 12, - "count": 690, - "max": [ - 0.943994, - 1, - 0.980107 - ], - "min": [ - -0.943994, - -1, - -0.980107 - ], - "type": 35665 - }, - "accessor_13584": { - "bufferView": "bufferView_14916", - "byteOffset": 921744, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_13586": { - "bufferView": "bufferView_14917", - "byteOffset": 8022768, - "byteStride": 12, - "count": 650, - "max": [ - 24.4755, - 31.68, - 14.5712 - ], - "min": [ - 13.8152, - 0, - 0.163971 - ], - "type": 35665 - }, - "accessor_13588": { - "bufferView": "bufferView_14917", - "byteOffset": 8030568, - "byteStride": 12, - "count": 650, - "max": [ - 0.999982, - 1, - 0.994048 - ], - "min": [ - -0.999982, - -1, - -0.994048 - ], - "type": 35665 - }, - "accessor_136": { - "bufferView": "bufferView_14916", - "byteOffset": 646248, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_13604": { - "bufferView": "bufferView_14916", - "byteOffset": 923196, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13606": { - "bufferView": "bufferView_14917", - "byteOffset": 8038368, - "byteStride": 12, - "count": 690, - "max": [ - 19.7137, - 31.68, - 17.5985 - ], - "min": [ - 5.34017, - 0, - 2.58681 - ], - "type": 35665 - }, - "accessor_13608": { - "bufferView": "bufferView_14917", - "byteOffset": 8046648, - "byteStride": 12, - "count": 690, - "max": [ - 0.898201, - 1, - 0.848187 - ], - "min": [ - -0.898201, - -1, - -0.848187 - ], - "type": 35665 - }, - "accessor_13624": { - "bufferView": "bufferView_14916", - "byteOffset": 924792, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13626": { - "bufferView": "bufferView_14917", - "byteOffset": 8054928, - "byteStride": 12, - "count": 690, - "max": [ - 13.7425, - 31.68, - 29.9507 - ], - "min": [ - 0.0862085, - 0, - 19.1122 - ], - "type": 35665 - }, - "accessor_13628": { - "bufferView": "bufferView_14917", - "byteOffset": 8063208, - "byteStride": 12, - "count": 690, - "max": [ - 0.994959, - 1, - 1 - ], - "min": [ - -0.994959, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13644": { - "bufferView": "bufferView_14916", - "byteOffset": 926388, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13646": { - "bufferView": "bufferView_14917", - "byteOffset": 8071488, - "byteStride": 12, - "count": 690, - "max": [ - 15.7974, - 31.68, - 39.7167 - ], - "min": [ - 0.709813, - 0, - 26.8693 - ], - "type": 35665 - }, - "accessor_13648": { - "bufferView": "bufferView_14917", - "byteOffset": 8079768, - "byteStride": 12, - "count": 690, - "max": [ - 0.944513, - 1, - 0.973305 - ], - "min": [ - -0.944513, - -1, - -0.973305 - ], - "type": 35665 - }, - "accessor_13664": { - "bufferView": "bufferView_14916", - "byteOffset": 927984, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13666": { - "bufferView": "bufferView_14917", - "byteOffset": 8088048, - "byteStride": 12, - "count": 18, - "max": [ - 24.4296, - 31.68, - 5.89506 - ], - "min": [ - 24.3684, - 26.4, - 3.02852 - ], - "type": 35665 - }, - "accessor_13668": { - "bufferView": "bufferView_14917", - "byteOffset": 8088264, - "byteStride": 12, - "count": 18, - "max": [ - 0.999886, - 0.0117743, - 0.0238999 - ], - "min": [ - -0.999886, - -0.0117743, - -0.0238999 - ], - "type": 35665 - }, - "accessor_13684": { - "bufferView": "bufferView_14916", - "byteOffset": 928020, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_13686": { - "bufferView": "bufferView_14917", - "byteOffset": 8088480, - "byteStride": 12, - "count": 668, - "max": [ - 35.0439, - 31.68, - 48.8074 - ], - "min": [ - 24.3621, - 0, - 34.3911 - ], - "type": 35665 - }, - "accessor_13688": { - "bufferView": "bufferView_14917", - "byteOffset": 8096496, - "byteStride": 12, - "count": 668, - "max": [ - 0.999968, - 1, - 0.993831 - ], - "min": [ - -0.999968, - -1, - -0.993831 - ], - "type": 35665 - }, - "accessor_13704": { - "bufferView": "bufferView_14916", - "byteOffset": 929556, - "byteStride": 0, - "count": 822, - "type": 5123 - }, - "accessor_13706": { - "bufferView": "bufferView_14917", - "byteOffset": 8104512, - "byteStride": 12, - "count": 702, - "max": [ - 48.7298, - 31.68, - 29.8696 - ], - "min": [ - 35.0724, - 0, - 19.0312 - ], - "type": 35665 - }, - "accessor_13708": { - "bufferView": "bufferView_14917", - "byteOffset": 8112936, - "byteStride": 12, - "count": 702, - "max": [ - 0.994983, - 1, - 1 - ], - "min": [ - -0.994983, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1372": { - "bufferView": "bufferView_14916", - "byteOffset": 852120, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_13724": { - "bufferView": "bufferView_14916", - "byteOffset": 931200, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13726": { - "bufferView": "bufferView_14917", - "byteOffset": 8121360, - "byteStride": 12, - "count": 690, - "max": [ - 48.1673, - 31.68, - 39.6312 - ], - "min": [ - 32.9302, - 0, - 26.9846 - ], - "type": 35665 - }, - "accessor_13728": { - "bufferView": "bufferView_14917", - "byteOffset": 8129640, - "byteStride": 12, - "count": 690, - "max": [ - 0.943851, - 1, - 0.98002 - ], - "min": [ - -0.943851, - -1, - -0.98002 - ], - "type": 35665 - }, - "accessor_1374": { - "bufferView": "bufferView_14917", - "byteOffset": 7455144, - "byteStride": 12, - "count": 208, - "max": [ - 90.2413, - 7.68415, - 9.60325 - ], - "min": [ - 82.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_13744": { - "bufferView": "bufferView_14916", - "byteOffset": 933948, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13746": { - "bufferView": "bufferView_14917", - "byteOffset": 8145600, - "byteStride": 12, - "count": 690, - "max": [ - 24.4898, - 31.68, - 48.8498 - ], - "min": [ - 13.9102, - 0, - 34.3329 - ], - "type": 35665 - }, - "accessor_13748": { - "bufferView": "bufferView_14917", - "byteOffset": 8153880, - "byteStride": 12, - "count": 690, - "max": [ - 0.999992, - 1, - 0.993874 - ], - "min": [ - -0.999992, - -1, - -0.993874 - ], - "type": 35665 - }, - "accessor_1376": { - "bufferView": "bufferView_14917", - "byteOffset": 7457640, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_13764": { - "bufferView": "bufferView_14916", - "byteOffset": 935544, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_13766": { - "bufferView": "bufferView_14917", - "byteOffset": 8162160, - "byteStride": 12, - "count": 680, - "max": [ - 48.1086, - 31.68, - 22.1069 - ], - "min": [ - 33.0215, - 0, - 9.26313 - ], - "type": 35665 - }, - "accessor_13768": { - "bufferView": "bufferView_14917", - "byteOffset": 8170320, - "byteStride": 12, - "count": 680, - "max": [ - 0.944656, - 1, - 0.973405 - ], - "min": [ - -0.944656, - -1, - -0.973405 - ], - "type": 35665 - }, - "accessor_13784": { - "bufferView": "bufferView_14916", - "byteOffset": 937128, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_13786": { - "bufferView": "bufferView_14917", - "byteOffset": 8178480, - "byteStride": 12, - "count": 690, - "max": [ - 19.6062, - 31.68, - 46.4623 - ], - "min": [ - 5.42806, - 0, - 31.2742 - ], - "type": 35665 - }, - "accessor_13788": { - "bufferView": "bufferView_14917", - "byteOffset": 8186760, - "byteStride": 12, - "count": 690, - "max": [ - 0.911749, - 1, - 0.847351 - ], - "min": [ - -0.911749, - -1, - -0.847351 - ], - "type": 35665 - }, - "accessor_138": { - "bufferView": "bufferView_14917", - "byteOffset": 5442360, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_13804": { - "bufferView": "bufferView_14916", - "byteOffset": 938724, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_13806": { - "bufferView": "bufferView_14917", - "byteOffset": 8195040, - "byteStride": 12, - "count": 650, - "max": [ - 43.4692, - 31.68, - 46.3893 - ], - "min": [ - 29.098, - 0, - 31.3767 - ], - "type": 35665 - }, - "accessor_13808": { - "bufferView": "bufferView_14917", - "byteOffset": 8202840, - "byteStride": 12, - "count": 650, - "max": [ - 0.898392, - 1, - 0.848417 - ], - "min": [ - -0.898392, - -1, - -0.848417 - ], - "type": 35665 - }, - "accessor_13824": { - "bufferView": "bufferView_14916", - "byteOffset": 940176, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13826": { - "bufferView": "bufferView_14917", - "byteOffset": 8210640, - "byteStride": 12, - "count": 18, - "max": [ - 33.7789, - 5.28, - 43.8332 - ], - "min": [ - 32.5096, - 0, - 41.2579 - ], - "type": 35665 - }, - "accessor_13828": { - "bufferView": "bufferView_14917", - "byteOffset": 8210856, - "byteStride": 12, - "count": 18, - "max": [ - 0.897081, - 0.0007971, - 0.443649 - ], - "min": [ - -0.897081, - -0.0007971, - -0.443649 - ], - "type": 35665 - }, - "accessor_13844": { - "bufferView": "bufferView_14916", - "byteOffset": 940212, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13846": { - "bufferView": "bufferView_14917", - "byteOffset": 8211072, - "byteStride": 12, - "count": 18, - "max": [ - 33.7506, - 31.68, - 43.8188 - ], - "min": [ - 32.4522, - 26.4, - 41.246 - ], - "type": 35665 - }, - "accessor_13848": { - "bufferView": "bufferView_14917", - "byteOffset": 8211288, - "byteStride": 12, - "count": 18, - "max": [ - 0.896817, - 0.0117743, - 0.455144 - ], - "min": [ - -0.896817, - -0.0117743, - -0.455144 - ], - "type": 35665 - }, - "accessor_13864": { - "bufferView": "bufferView_14916", - "byteOffset": 940248, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_13866": { - "bufferView": "bufferView_14917", - "byteOffset": 8211504, - "byteStride": 12, - "count": 18, - "max": [ - 41.2023, - 5.28, - 12.8738 - ], - "min": [ - 38.9717, - 0, - 11.066 - ], - "type": 35665 - }, - "accessor_13868": { - "bufferView": "bufferView_14917", - "byteOffset": 8211720, - "byteStride": 12, - "count": 18, - "max": [ - 0.630959, - 0.0007971, - 0.77707 - ], - "min": [ - -0.630959, - -0.0007971, - -0.77707 - ], - "type": 35665 - }, - "accessor_13916": { - "bufferView": "bufferView_14916", - "byteOffset": 941892, - "byteStride": 0, - "count": 8400, - "type": 5123 - }, - "accessor_13918": { - "bufferView": "bufferView_14917", - "byteOffset": 8224608, - "byteStride": 12, - "count": 5996, - "max": [ - 36.5112, - 27.84, - 36.5112 - ], - "min": [ - -0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_1392": { - "bufferView": "bufferView_14916", - "byteOffset": 862152, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_13920": { - "bufferView": "bufferView_14917", - "byteOffset": 8296560, - "byteStride": 12, - "count": 5996, - "max": [ - 0.999277, - 1, - 0.999241 - ], - "min": [ - -0.999277, - -1, - -0.999241 - ], - "type": 35665 - }, - "accessor_13936": { - "bufferView": "bufferView_14916", - "byteOffset": 958692, - "byteStride": 0, - "count": 14988, - "type": 5123 - }, - "accessor_13938": { - "bufferView": "bufferView_14917", - "byteOffset": 8368512, - "byteStride": 12, - "count": 8046, - "max": [ - 28.3932, - 20.16, - 28.3428 - ], - "min": [ - 8.118, - 7.2, - 8.1684 - ], - "type": 35665 - }, - "accessor_1394": { - "bufferView": "bufferView_14917", - "byteOffset": 7559880, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_13940": { - "bufferView": "bufferView_14917", - "byteOffset": 8465064, - "byteStride": 12, - "count": 8046, - "max": [ - 0.998081, - 1, - 1 - ], - "min": [ - -0.998081, - -1, - -1 - ], - "type": 35665 - }, - "accessor_13956": { - "bufferView": "bufferView_14916", - "byteOffset": 989820, - "byteStride": 0, - "count": 1392, - "type": 5123 - }, - "accessor_13958": { - "bufferView": "bufferView_14917", - "byteOffset": 8569296, - "byteStride": 12, - "count": 915, - "max": [ - 22.5791, - 24, - 22.5715 - ], - "min": [ - 13.944, - 14.4, - 13.9363 - ], - "type": 35665 - }, - "accessor_1396": { - "bufferView": "bufferView_14917", - "byteOffset": 7562664, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_13960": { - "bufferView": "bufferView_14917", - "byteOffset": 8580276, - "byteStride": 12, - "count": 915, - "max": [ - 0.998666, - 1, - 0.998631 - ], - "min": [ - -0.998666, - -1, - -0.998631 - ], - "type": 35665 - }, - "accessor_13977": { - "bufferView": "bufferView_14916", - "byteOffset": 992604, - "byteStride": 0, - "count": 8400, - "type": 5123 - }, - "accessor_13979": { - "bufferView": "bufferView_14917", - "byteOffset": 8591256, - "byteStride": 12, - "count": 5996, - "max": [ - 36.5112, - 27.84, - 36.5112 - ], - "min": [ - -0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_13981": { - "bufferView": "bufferView_14917", - "byteOffset": 8663208, - "byteStride": 12, - "count": 5996, - "max": [ - 0.999277, - 1, - 0.999241 - ], - "min": [ - -0.999277, - -1, - -0.999241 - ], - "type": 35665 - }, - "accessor_13997": { - "bufferView": "bufferView_14916", - "byteOffset": 1009860, - "byteStride": 0, - "count": 14988, - "type": 5123 - }, - "accessor_13999": { - "bufferView": "bufferView_14917", - "byteOffset": 8740152, - "byteStride": 12, - "count": 8051, - "max": [ - 28.3932, - 20.16, - 28.3428 - ], - "min": [ - 8.118, - 7.2, - 8.1684 - ], - "type": 35665 - }, - "accessor_140": { - "bufferView": "bufferView_14917", - "byteOffset": 5445144, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_14001": { - "bufferView": "bufferView_14917", - "byteOffset": 8836764, - "byteStride": 12, - "count": 8051, - "max": [ - 0.998081, - 1, - 1 - ], - "min": [ - -0.998081, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14017": { - "bufferView": "bufferView_14916", - "byteOffset": 1039836, - "byteStride": 0, - "count": 1392, - "type": 5123 - }, - "accessor_14019": { - "bufferView": "bufferView_14917", - "byteOffset": 8933376, - "byteStride": 12, - "count": 917, - "max": [ - 22.5791, - 24, - 22.5715 - ], - "min": [ - 13.944, - 14.4, - 13.9363 - ], - "type": 35665 - }, - "accessor_14021": { - "bufferView": "bufferView_14917", - "byteOffset": 8944380, - "byteStride": 12, - "count": 917, - "max": [ - 0.998666, - 1, - 0.998631 - ], - "min": [ - -0.998666, - -1, - -0.998631 - ], - "type": 35665 - }, - "accessor_14038": { - "bufferView": "bufferView_14916", - "byteOffset": 1042620, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14040": { - "bufferView": "bufferView_14917", - "byteOffset": 8955384, - "byteStride": 12, - "count": 690, - "max": [ - 48.1038, - 31.68, - 22.0976 - ], - "min": [ - 33.0156, - 0, - 9.24662 - ], - "type": 35665 - }, - "accessor_14042": { - "bufferView": "bufferView_14917", - "byteOffset": 8963664, - "byteStride": 12, - "count": 690, - "max": [ - 0.94437, - 1, - 0.973205 - ], - "min": [ - -0.94437, - -1, - -0.973205 - ], - "type": 35665 - }, - "accessor_14058": { - "bufferView": "bufferView_14916", - "byteOffset": 1044216, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_14060": { - "bufferView": "bufferView_14917", - "byteOffset": 8971944, - "byteStride": 12, - "count": 650, - "max": [ - 48.7298, - 31.68, - 29.849 - ], - "min": [ - 35.0746, - 0, - 19.0106 - ], - "type": 35665 - }, - "accessor_14062": { - "bufferView": "bufferView_14917", - "byteOffset": 8979744, - "byteStride": 12, - "count": 650, - "max": [ - 0.994915, - 1, - 1 - ], - "min": [ - -0.994915, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14078": { - "bufferView": "bufferView_14916", - "byteOffset": 1045668, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_14080": { - "bufferView": "bufferView_14917", - "byteOffset": 8987544, - "byteStride": 12, - "count": 18, - "max": [ - 45.3421, - 31.68, - 29.2335 - ], - "min": [ - 42.5331, - 26.4, - 28.6205 - ], - "type": 35665 - }, - "accessor_14082": { - "bufferView": "bufferView_14917", - "byteOffset": 8987760, - "byteStride": 12, - "count": 18, - "max": [ - 0.211997, - 0.0117743, - 0.980193 - ], - "min": [ - -0.211997, - -0.0117743, - -0.980193 - ], - "type": 35665 - }, - "accessor_14098": { - "bufferView": "bufferView_14916", - "byteOffset": 1045704, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14100": { - "bufferView": "bufferView_14917", - "byteOffset": 8987976, - "byteStride": 12, - "count": 690, - "max": [ - 43.3813, - 31.68, - 17.6936 - ], - "min": [ - 29.2055, - 0, - 2.50469 - ], - "type": 35665 - }, - "accessor_14102": { - "bufferView": "bufferView_14917", - "byteOffset": 8996256, - "byteStride": 12, - "count": 690, - "max": [ - 0.911927, - 1, - 0.847582 - ], - "min": [ - -0.911927, - -1, - -0.847582 - ], - "type": 35665 - }, - "accessor_14118": { - "bufferView": "bufferView_14916", - "byteOffset": 1047756, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_1412": { - "bufferView": "bufferView_14916", - "byteOffset": 862728, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14120": { - "bufferView": "bufferView_14917", - "byteOffset": 9009528, - "byteStride": 12, - "count": 668, - "max": [ - 34.8963, - 31.68, - 14.6365 - ], - "min": [ - 24.3324, - 0, - 0.12175 - ], - "type": 35665 - }, - "accessor_14122": { - "bufferView": "bufferView_14917", - "byteOffset": 9017544, - "byteStride": 12, - "count": 668, - "max": [ - 0.99999, - 1, - 0.993922 - ], - "min": [ - -0.99999, - -1, - -0.993922 - ], - "type": 35665 - }, - "accessor_14138": { - "bufferView": "bufferView_14916", - "byteOffset": 1049292, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_1414": { - "bufferView": "bufferView_14917", - "byteOffset": 7565448, - "byteStride": 12, - "count": 232, - "max": [ - 107.52, - 6.7198, - 2.8826 - ], - "min": [ - 103.679, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_14140": { - "bufferView": "bufferView_14917", - "byteOffset": 9025560, - "byteStride": 12, - "count": 18, - "max": [ - 24.3831, - 5.28, - 5.85944 - ], - "min": [ - 24.3564, - 0, - 2.98844 - ], - "type": 35665 - }, - "accessor_14142": { - "bufferView": "bufferView_14917", - "byteOffset": 9025776, - "byteStride": 12, - "count": 18, - "max": [ - 0.999959, - 0.0007971, - 0.0110205 - ], - "min": [ - -0.999959, - -0.0007971, - -0.0110205 - ], - "type": 35665 - }, - "accessor_14158": { - "bufferView": "bufferView_14916", - "byteOffset": 1049328, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1416": { - "bufferView": "bufferView_14917", - "byteOffset": 7568232, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_14160": { - "bufferView": "bufferView_14917", - "byteOffset": 9025992, - "byteStride": 12, - "count": 690, - "max": [ - 15.8828, - 31.68, - 21.9916 - ], - "min": [ - 0.64638, - 0, - 9.34862 - ], - "type": 35665 - }, - "accessor_14162": { - "bufferView": "bufferView_14917", - "byteOffset": 9034272, - "byteStride": 12, - "count": 690, - "max": [ - 0.943994, - 1, - 0.980107 - ], - "min": [ - -0.943994, - -1, - -0.980107 - ], - "type": 35665 - }, - "accessor_14178": { - "bufferView": "bufferView_14916", - "byteOffset": 1050924, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_14180": { - "bufferView": "bufferView_14917", - "byteOffset": 9042552, - "byteStride": 12, - "count": 650, - "max": [ - 24.4755, - 31.68, - 14.5712 - ], - "min": [ - 13.8152, - 0, - 0.163971 - ], - "type": 35665 - }, - "accessor_14182": { - "bufferView": "bufferView_14917", - "byteOffset": 9050352, - "byteStride": 12, - "count": 650, - "max": [ - 0.999982, - 1, - 0.994048 - ], - "min": [ - -0.999982, - -1, - -0.994048 - ], - "type": 35665 - }, - "accessor_14198": { - "bufferView": "bufferView_14916", - "byteOffset": 1052376, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14200": { - "bufferView": "bufferView_14917", - "byteOffset": 9058152, - "byteStride": 12, - "count": 690, - "max": [ - 19.7137, - 31.68, - 17.5985 - ], - "min": [ - 5.34017, - 0, - 2.58681 - ], - "type": 35665 - }, - "accessor_14202": { - "bufferView": "bufferView_14917", - "byteOffset": 9066432, - "byteStride": 12, - "count": 690, - "max": [ - 0.898201, - 1, - 0.848187 - ], - "min": [ - -0.898201, - -1, - -0.848187 - ], - "type": 35665 - }, - "accessor_14218": { - "bufferView": "bufferView_14916", - "byteOffset": 1053972, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14220": { - "bufferView": "bufferView_14917", - "byteOffset": 9074712, - "byteStride": 12, - "count": 689, - "max": [ - 13.7425, - 31.68, - 29.9507 - ], - "min": [ - 0.0862085, - 0, - 19.1122 - ], - "type": 35665 - }, - "accessor_14222": { - "bufferView": "bufferView_14917", - "byteOffset": 9082980, - "byteStride": 12, - "count": 689, - "max": [ - 0.994959, - 1, - 1 - ], - "min": [ - -0.994959, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14238": { - "bufferView": "bufferView_14916", - "byteOffset": 1055568, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14240": { - "bufferView": "bufferView_14917", - "byteOffset": 9091248, - "byteStride": 12, - "count": 690, - "max": [ - 15.7974, - 31.68, - 39.7167 - ], - "min": [ - 0.709813, - 0, - 26.8693 - ], - "type": 35665 - }, - "accessor_14242": { - "bufferView": "bufferView_14917", - "byteOffset": 9099528, - "byteStride": 12, - "count": 690, - "max": [ - 0.944513, - 1, - 0.973305 - ], - "min": [ - -0.944513, - -1, - -0.973305 - ], - "type": 35665 - }, - "accessor_14258": { - "bufferView": "bufferView_14916", - "byteOffset": 1057164, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_14260": { - "bufferView": "bufferView_14917", - "byteOffset": 9107808, - "byteStride": 12, - "count": 18, - "max": [ - 24.4296, - 31.68, - 5.89506 - ], - "min": [ - 24.3684, - 26.4, - 3.02852 - ], - "type": 35665 - }, - "accessor_14262": { - "bufferView": "bufferView_14917", - "byteOffset": 9108024, - "byteStride": 12, - "count": 18, - "max": [ - 0.999886, - 0.0117743, - 0.0238999 - ], - "min": [ - -0.999886, - -0.0117743, - -0.0238999 - ], - "type": 35665 - }, - "accessor_14278": { - "bufferView": "bufferView_14916", - "byteOffset": 1057200, - "byteStride": 0, - "count": 768, - "type": 5123 - }, - "accessor_14280": { - "bufferView": "bufferView_14917", - "byteOffset": 9108240, - "byteStride": 12, - "count": 668, - "max": [ - 35.0439, - 31.68, - 48.8074 - ], - "min": [ - 24.3621, - 0, - 34.3911 - ], - "type": 35665 - }, - "accessor_14282": { - "bufferView": "bufferView_14917", - "byteOffset": 9116256, - "byteStride": 12, - "count": 668, - "max": [ - 0.999968, - 1, - 0.993831 - ], - "min": [ - -0.999968, - -1, - -0.993831 - ], - "type": 35665 - }, - "accessor_14298": { - "bufferView": "bufferView_14916", - "byteOffset": 1058736, - "byteStride": 0, - "count": 822, - "type": 5123 - }, - "accessor_14300": { - "bufferView": "bufferView_14917", - "byteOffset": 9124272, - "byteStride": 12, - "count": 702, - "max": [ - 48.7298, - 31.68, - 29.8696 - ], - "min": [ - 35.0724, - 0, - 19.0312 - ], - "type": 35665 - }, - "accessor_14302": { - "bufferView": "bufferView_14917", - "byteOffset": 9132696, - "byteStride": 12, - "count": 702, - "max": [ - 0.994983, - 1, - 1 - ], - "min": [ - -0.994983, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14318": { - "bufferView": "bufferView_14916", - "byteOffset": 1060956, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1432": { - "bufferView": "bufferView_14916", - "byteOffset": 863304, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_14320": { - "bufferView": "bufferView_14917", - "byteOffset": 9146688, - "byteStride": 12, - "count": 690, - "max": [ - 48.1673, - 31.68, - 39.6312 - ], - "min": [ - 32.9302, - 0, - 26.9846 - ], - "type": 35665 - }, - "accessor_14322": { - "bufferView": "bufferView_14917", - "byteOffset": 9154968, - "byteStride": 12, - "count": 690, - "max": [ - 0.943851, - 1, - 0.98002 - ], - "min": [ - -0.943851, - -1, - -0.98002 - ], - "type": 35665 - }, - "accessor_14338": { - "bufferView": "bufferView_14916", - "byteOffset": 1062552, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_1434": { - "bufferView": "bufferView_14917", - "byteOffset": 7571016, - "byteStride": 12, - "count": 208, - "max": [ - 109.441, - 7.68415, - 9.60325 - ], - "min": [ - 101.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_14340": { - "bufferView": "bufferView_14917", - "byteOffset": 9163248, - "byteStride": 12, - "count": 690, - "max": [ - 24.4898, - 31.68, - 48.8498 - ], - "min": [ - 13.9102, - 0, - 34.3329 - ], - "type": 35665 - }, - "accessor_14342": { - "bufferView": "bufferView_14917", - "byteOffset": 9171528, - "byteStride": 12, - "count": 690, - "max": [ - 0.999992, - 1, - 0.993874 - ], - "min": [ - -0.999992, - -1, - -0.993874 - ], - "type": 35665 - }, - "accessor_14358": { - "bufferView": "bufferView_14916", - "byteOffset": 1064148, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_1436": { - "bufferView": "bufferView_14917", - "byteOffset": 7573512, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_14360": { - "bufferView": "bufferView_14917", - "byteOffset": 9179808, - "byteStride": 12, - "count": 680, - "max": [ - 48.1086, - 31.68, - 22.1069 - ], - "min": [ - 33.0215, - 0, - 9.26313 - ], - "type": 35665 - }, - "accessor_14362": { - "bufferView": "bufferView_14917", - "byteOffset": 9187968, - "byteStride": 12, - "count": 680, - "max": [ - 0.944656, - 1, - 0.973405 - ], - "min": [ - -0.944656, - -1, - -0.973405 - ], - "type": 35665 - }, - "accessor_14378": { - "bufferView": "bufferView_14916", - "byteOffset": 1065732, - "byteStride": 0, - "count": 798, - "type": 5123 - }, - "accessor_14380": { - "bufferView": "bufferView_14917", - "byteOffset": 9196128, - "byteStride": 12, - "count": 690, - "max": [ - 19.6062, - 31.68, - 46.4623 - ], - "min": [ - 5.42806, - 0, - 31.2742 - ], - "type": 35665 - }, - "accessor_14382": { - "bufferView": "bufferView_14917", - "byteOffset": 9204408, - "byteStride": 12, - "count": 690, - "max": [ - 0.911749, - 1, - 0.847351 - ], - "min": [ - -0.911749, - -1, - -0.847351 - ], - "type": 35665 - }, - "accessor_14398": { - "bufferView": "bufferView_14916", - "byteOffset": 1067328, - "byteStride": 0, - "count": 726, - "type": 5123 - }, - "accessor_14400": { - "bufferView": "bufferView_14917", - "byteOffset": 9212688, - "byteStride": 12, - "count": 650, - "max": [ - 43.4692, - 31.68, - 46.3893 - ], - "min": [ - 29.098, - 0, - 31.3767 - ], - "type": 35665 - }, - "accessor_14402": { - "bufferView": "bufferView_14917", - "byteOffset": 9220488, - "byteStride": 12, - "count": 650, - "max": [ - 0.898392, - 1, - 0.848417 - ], - "min": [ - -0.898392, - -1, - -0.848417 - ], - "type": 35665 - }, - "accessor_14418": { - "bufferView": "bufferView_14916", - "byteOffset": 1068780, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_14420": { - "bufferView": "bufferView_14917", - "byteOffset": 9228288, - "byteStride": 12, - "count": 18, - "max": [ - 33.7789, - 5.28, - 43.8332 - ], - "min": [ - 32.5096, - 0, - 41.2579 - ], - "type": 35665 - }, - "accessor_14422": { - "bufferView": "bufferView_14917", - "byteOffset": 9228504, - "byteStride": 12, - "count": 18, - "max": [ - 0.897081, - 0.0007971, - 0.443649 - ], - "min": [ - -0.897081, - -0.0007971, - -0.443649 - ], - "type": 35665 - }, - "accessor_14438": { - "bufferView": "bufferView_14916", - "byteOffset": 1068816, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_14440": { - "bufferView": "bufferView_14917", - "byteOffset": 9228720, - "byteStride": 12, - "count": 18, - "max": [ - 33.7506, - 31.68, - 43.8188 - ], - "min": [ - 32.4522, - 26.4, - 41.246 - ], - "type": 35665 - }, - "accessor_14442": { - "bufferView": "bufferView_14917", - "byteOffset": 9228936, - "byteStride": 12, - "count": 18, - "max": [ - 0.896817, - 0.0117743, - 0.455144 - ], - "min": [ - -0.896817, - -0.0117743, - -0.455144 - ], - "type": 35665 - }, - "accessor_14458": { - "bufferView": "bufferView_14916", - "byteOffset": 1068852, - "byteStride": 0, - "count": 18, - "type": 5123 - }, - "accessor_14460": { - "bufferView": "bufferView_14917", - "byteOffset": 9229152, - "byteStride": 12, - "count": 18, - "max": [ - 41.2023, - 5.28, - 12.8738 - ], - "min": [ - 38.9717, - 0, - 11.066 - ], - "type": 35665 - }, - "accessor_14462": { - "bufferView": "bufferView_14917", - "byteOffset": 9229368, - "byteStride": 12, - "count": 18, - "max": [ - 0.630959, - 0.0007971, - 0.77707 - ], - "min": [ - -0.630959, - -0.0007971, - -0.77707 - ], - "type": 35665 - }, - "accessor_14510": { - "bufferView": "bufferView_14916", - "byteOffset": 1070952, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14512": { - "bufferView": "bufferView_14917", - "byteOffset": 9247248, - "byteStride": 12, - "count": 98, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_14514": { - "bufferView": "bufferView_14917", - "byteOffset": 9248424, - "byteStride": 12, - "count": 98, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1452": { - "bufferView": "bufferView_14916", - "byteOffset": 919536, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14530": { - "bufferView": "bufferView_14916", - "byteOffset": 1071528, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_14532": { - "bufferView": "bufferView_14917", - "byteOffset": 9249600, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14534": { - "bufferView": "bufferView_14917", - "byteOffset": 9251136, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1454": { - "bufferView": "bufferView_14917", - "byteOffset": 8000208, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_14550": { - "bufferView": "bufferView_14916", - "byteOffset": 1072080, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14552": { - "bufferView": "bufferView_14917", - "byteOffset": 9252672, - "byteStride": 12, - "count": 98, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_14554": { - "bufferView": "bufferView_14917", - "byteOffset": 9253848, - "byteStride": 12, - "count": 98, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1456": { - "bufferView": "bufferView_14917", - "byteOffset": 8002992, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_14570": { - "bufferView": "bufferView_14916", - "byteOffset": 1072656, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_14572": { - "bufferView": "bufferView_14917", - "byteOffset": 9255024, - "byteStride": 12, - "count": 130, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_14574": { - "bufferView": "bufferView_14917", - "byteOffset": 9256584, - "byteStride": 12, - "count": 130, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14590": { - "bufferView": "bufferView_14916", - "byteOffset": 1073400, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14592": { - "bufferView": "bufferView_14917", - "byteOffset": 9258144, - "byteStride": 12, - "count": 98, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_14594": { - "bufferView": "bufferView_14917", - "byteOffset": 9259320, - "byteStride": 12, - "count": 98, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14610": { - "bufferView": "bufferView_14916", - "byteOffset": 1073976, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_14612": { - "bufferView": "bufferView_14917", - "byteOffset": 9260496, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14614": { - "bufferView": "bufferView_14917", - "byteOffset": 9262032, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14630": { - "bufferView": "bufferView_14916", - "byteOffset": 1074528, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_14632": { - "bufferView": "bufferView_14917", - "byteOffset": 9263568, - "byteStride": 12, - "count": 98, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_14634": { - "bufferView": "bufferView_14917", - "byteOffset": 9264744, - "byteStride": 12, - "count": 98, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14650": { - "bufferView": "bufferView_14916", - "byteOffset": 1075104, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_14652": { - "bufferView": "bufferView_14917", - "byteOffset": 9265920, - "byteStride": 12, - "count": 130, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_14654": { - "bufferView": "bufferView_14917", - "byteOffset": 9267480, - "byteStride": 12, - "count": 130, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14670": { - "bufferView": "bufferView_14916", - "byteOffset": 1075848, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_14672": { - "bufferView": "bufferView_14917", - "byteOffset": 9269040, - "byteStride": 12, - "count": 640, - "max": [ - 7.68005, - 3.63034, - 7.68065 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14674": { - "bufferView": "bufferView_14917", - "byteOffset": 9276720, - "byteStride": 12, - "count": 640, - "max": [ - 0.980948, - 1, - 0.980886 - ], - "min": [ - -0.980948, - -1, - -0.980886 - ], - "type": 35665 - }, - "accessor_14690": { - "bufferView": "bufferView_14916", - "byteOffset": 1077432, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_14692": { - "bufferView": "bufferView_14917", - "byteOffset": 9284400, - "byteStride": 12, - "count": 644, - "max": [ - 17.2801, - 3.63034, - 7.68065 - ], - "min": [ - 9.6, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14694": { - "bufferView": "bufferView_14917", - "byteOffset": 9292128, - "byteStride": 12, - "count": 644, - "max": [ - 0.980948, - 1, - 0.980886 - ], - "min": [ - -0.980948, - -1, - -0.980886 - ], - "type": 35665 - }, - "accessor_14710": { - "bufferView": "bufferView_14916", - "byteOffset": 1079592, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_14712": { - "bufferView": "bufferView_14917", - "byteOffset": 9305424, - "byteStride": 12, - "count": 639, - "max": [ - 7.68005, - 3.63034, - 7.68065 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14714": { - "bufferView": "bufferView_14917", - "byteOffset": 9313092, - "byteStride": 12, - "count": 639, - "max": [ - 0.980948, - 1, - 0.980886 - ], - "min": [ - -0.980948, - -1, - -0.980886 - ], - "type": 35665 - }, - "accessor_1472": { - "bufferView": "bufferView_14916", - "byteOffset": 932796, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_14730": { - "bufferView": "bufferView_14916", - "byteOffset": 1081176, - "byteStride": 0, - "count": 792, - "type": 5123 - }, - "accessor_14732": { - "bufferView": "bufferView_14917", - "byteOffset": 9320760, - "byteStride": 12, - "count": 644, - "max": [ - 17.2801, - 3.63034, - 7.68065 - ], - "min": [ - 9.6, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14734": { - "bufferView": "bufferView_14917", - "byteOffset": 9328488, - "byteStride": 12, - "count": 644, - "max": [ - 0.980948, - 1, - 0.980886 - ], - "min": [ - -0.980948, - -1, - -0.980886 - ], - "type": 35665 - }, - "accessor_1474": { - "bufferView": "bufferView_14917", - "byteOffset": 8137920, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_14750": { - "bufferView": "bufferView_14916", - "byteOffset": 1082760, - "byteStride": 0, - "count": 2802, - "type": 5123 - }, - "accessor_14752": { - "bufferView": "bufferView_14917", - "byteOffset": 9336216, - "byteStride": 12, - "count": 1625, - "max": [ - 38.4, - 38.4, - 32.16 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14754": { - "bufferView": "bufferView_14917", - "byteOffset": 9355716, - "byteStride": 12, - "count": 1625, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1476": { - "bufferView": "bufferView_14917", - "byteOffset": 8141760, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_14770": { - "bufferView": "bufferView_14916", - "byteOffset": 1088364, - "byteStride": 0, - "count": 156, - "type": 5123 - }, - "accessor_14772": { - "bufferView": "bufferView_14917", - "byteOffset": 9375216, - "byteStride": 12, - "count": 88, - "max": [ - 30.72, - 20.16, - 28.56 - ], - "min": [ - 28.8, - 4.8, - 18.96 - ], - "type": 35665 - }, - "accessor_14774": { - "bufferView": "bufferView_14917", - "byteOffset": 9376272, - "byteStride": 12, - "count": 88, - "max": [ - 1, - 1, - 0.986394 - ], - "min": [ - -1, - -1, - -0.986394 - ], - "type": 35665 - }, - "accessor_14790": { - "bufferView": "bufferView_14916", - "byteOffset": 1088676, - "byteStride": 0, - "count": 1080, - "type": 5123 - }, - "accessor_14792": { - "bufferView": "bufferView_14917", - "byteOffset": 9377328, - "byteStride": 12, - "count": 632, - "max": [ - 23.04, - 28.8, - 28.8 - ], - "min": [ - 15.36, - 21.12, - 24.72 - ], - "type": 35665 - }, - "accessor_14794": { - "bufferView": "bufferView_14917", - "byteOffset": 9384912, - "byteStride": 12, - "count": 632, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_14810": { - "bufferView": "bufferView_14916", - "byteOffset": 1090836, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_14812": { - "bufferView": "bufferView_14917", - "byteOffset": 9392496, - "byteStride": 12, - "count": 320, - "max": [ - 23.04, - 38.4, - 23.04 - ], - "min": [ - 15.36, - 36.48, - 15.36 - ], - "type": 35665 - }, - "accessor_14814": { - "bufferView": "bufferView_14917", - "byteOffset": 9396336, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 1, - 0.986394 - ], - "min": [ - -0.986394, - -1, - -0.986394 - ], - "type": 35665 - }, - "accessor_14830": { - "bufferView": "bufferView_14916", - "byteOffset": 1091988, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_14832": { - "bufferView": "bufferView_14917", - "byteOffset": 9400176, - "byteStride": 12, - "count": 320, - "max": [ - 23.04, - 38.4, - 13.44 - ], - "min": [ - 15.36, - 36.48, - 5.76 - ], - "type": 35665 - }, - "accessor_14834": { - "bufferView": "bufferView_14917", - "byteOffset": 9404016, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 1, - 0.986394 - ], - "min": [ - -0.986394, - -1, - -0.986394 - ], - "type": 35665 - }, - "accessor_14850": { - "bufferView": "bufferView_14916", - "byteOffset": 1093140, - "byteStride": 0, - "count": 2496, - "type": 5123 - }, - "accessor_14852": { - "bufferView": "bufferView_14917", - "byteOffset": 9407856, - "byteStride": 12, - "count": 2016, - "max": [ - 8.64, - 8.64, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14854": { - "bufferView": "bufferView_14917", - "byteOffset": 9432048, - "byteStride": 12, - "count": 2016, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14870": { - "bufferView": "bufferView_14916", - "byteOffset": 1098132, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_14872": { - "bufferView": "bufferView_14917", - "byteOffset": 9456240, - "byteStride": 12, - "count": 768, - "max": [ - 8.64, - 8.64, - 4.8 - ], - "min": [ - 0, - 0, - 3.84 - ], - "type": 35665 - }, - "accessor_14874": { - "bufferView": "bufferView_14917", - "byteOffset": 9465456, - "byteStride": 12, - "count": 768, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14890": { - "bufferView": "bufferView_14916", - "byteOffset": 1101588, - "byteStride": 0, - "count": 2496, - "type": 5123 - }, - "accessor_14892": { - "bufferView": "bufferView_14917", - "byteOffset": 9482352, - "byteStride": 12, - "count": 2016, - "max": [ - 8.64, - 8.64, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_14894": { - "bufferView": "bufferView_14917", - "byteOffset": 9506544, - "byteStride": 12, - "count": 2016, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_14910": { - "bufferView": "bufferView_14916", - "byteOffset": 1106580, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_14912": { - "bufferView": "bufferView_14917", - "byteOffset": 9530736, - "byteStride": 12, - "count": 768, - "max": [ - 8.64, - 8.64, - 4.8 - ], - "min": [ - 0, - 0, - 3.84 - ], - "type": 35665 - }, - "accessor_14914": { - "bufferView": "bufferView_14917", - "byteOffset": 9539952, - "byteStride": 12, - "count": 768, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1492": { - "bufferView": "bufferView_14916", - "byteOffset": 940284, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1494": { - "bufferView": "bufferView_14917", - "byteOffset": 8211936, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1496": { - "bufferView": "bufferView_14917", - "byteOffset": 8214432, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1512": { - "bufferView": "bufferView_14916", - "byteOffset": 940740, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1514": { - "bufferView": "bufferView_14917", - "byteOffset": 8216928, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1516": { - "bufferView": "bufferView_14917", - "byteOffset": 8220768, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1532": { - "bufferView": "bufferView_14916", - "byteOffset": 988668, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1534": { - "bufferView": "bufferView_14917", - "byteOffset": 8561616, - "byteStride": 12, - "count": 320, - "max": [ - 103.68, - 7.686, - 13.4445 - ], - "min": [ - 97.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1536": { - "bufferView": "bufferView_14917", - "byteOffset": 8565456, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1552": { - "bufferView": "bufferView_14916", - "byteOffset": 1047300, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1554": { - "bufferView": "bufferView_14917", - "byteOffset": 9004536, - "byteStride": 12, - "count": 208, - "max": [ - 71.0413, - 7.68415, - 9.60325 - ], - "min": [ - 63.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1556": { - "bufferView": "bufferView_14917", - "byteOffset": 9007032, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_156": { - "bufferView": "bufferView_14916", - "byteOffset": 785868, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1572": { - "bufferView": "bufferView_14916", - "byteOffset": 1060380, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1574": { - "bufferView": "bufferView_14917", - "byteOffset": 9141120, - "byteStride": 12, - "count": 232, - "max": [ - 59.5202, - 6.7198, - 2.8826 - ], - "min": [ - 55.6791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1576": { - "bufferView": "bufferView_14917", - "byteOffset": 9143904, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_158": { - "bufferView": "bufferView_14917", - "byteOffset": 6921528, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1592": { - "bufferView": "bufferView_14916", - "byteOffset": 1068888, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1594": { - "bufferView": "bufferView_14917", - "byteOffset": 9229584, - "byteStride": 12, - "count": 208, - "max": [ - 80.6413, - 7.68415, - 9.60325 - ], - "min": [ - 72.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1596": { - "bufferView": "bufferView_14917", - "byteOffset": 9232080, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_16": { - "bufferView": "bufferView_14916", - "byteOffset": 420540, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_160": { - "bufferView": "bufferView_14917", - "byteOffset": 6924024, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1612": { - "bufferView": "bufferView_14916", - "byteOffset": 1069344, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1614": { - "bufferView": "bufferView_14917", - "byteOffset": 9234576, - "byteStride": 12, - "count": 320, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1616": { - "bufferView": "bufferView_14917", - "byteOffset": 9238416, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1632": { - "bufferView": "bufferView_14916", - "byteOffset": 1070496, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1634": { - "bufferView": "bufferView_14917", - "byteOffset": 9242256, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1636": { - "bufferView": "bufferView_14917", - "byteOffset": 9244752, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1652": { - "bufferView": "bufferView_14916", - "byteOffset": 1079016, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1654": { - "bufferView": "bufferView_14917", - "byteOffset": 9299856, - "byteStride": 12, - "count": 232, - "max": [ - 69.1202, - 6.7198, - 2.8826 - ], - "min": [ - 65.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1656": { - "bufferView": "bufferView_14917", - "byteOffset": 9302640, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_1672": { - "bufferView": "bufferView_14916", - "byteOffset": 1100436, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1674": { - "bufferView": "bufferView_14917", - "byteOffset": 9474672, - "byteStride": 12, - "count": 320, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1676": { - "bufferView": "bufferView_14917", - "byteOffset": 9478512, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1692": { - "bufferView": "bufferView_14916", - "byteOffset": 1108884, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1694": { - "bufferView": "bufferView_14917", - "byteOffset": 9549168, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1696": { - "bufferView": "bufferView_14917", - "byteOffset": 9551664, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1712": { - "bufferView": "bufferView_14916", - "byteOffset": 1109340, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1714": { - "bufferView": "bufferView_14917", - "byteOffset": 9554160, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1716": { - "bufferView": "bufferView_14917", - "byteOffset": 9556944, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_1732": { - "bufferView": "bufferView_14916", - "byteOffset": 1109916, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1734": { - "bufferView": "bufferView_14917", - "byteOffset": 9559728, - "byteStride": 12, - "count": 208, - "max": [ - 99.8413, - 7.68415, - 9.60325 - ], - "min": [ - 92.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1736": { - "bufferView": "bufferView_14917", - "byteOffset": 9562224, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1752": { - "bufferView": "bufferView_14916", - "byteOffset": 1111524, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1754": { - "bufferView": "bufferView_14917", - "byteOffset": 9572976, - "byteStride": 12, - "count": 320, - "max": [ - 74.88, - 7.686, - 13.4445 - ], - "min": [ - 69.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1756": { - "bufferView": "bufferView_14917", - "byteOffset": 9576816, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_176": { - "bufferView": "bufferView_14916", - "byteOffset": 1009404, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1772": { - "bufferView": "bufferView_14916", - "byteOffset": 1112676, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1774": { - "bufferView": "bufferView_14917", - "byteOffset": 9580656, - "byteStride": 12, - "count": 320, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1776": { - "bufferView": "bufferView_14917", - "byteOffset": 9584496, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_178": { - "bufferView": "bufferView_14917", - "byteOffset": 8735160, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1792": { - "bufferView": "bufferView_14916", - "byteOffset": 1113828, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1794": { - "bufferView": "bufferView_14917", - "byteOffset": 9588336, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1796": { - "bufferView": "bufferView_14917", - "byteOffset": 9590832, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_18": { - "bufferView": "bufferView_14917", - "byteOffset": 3403008, - "byteStride": 12, - "count": 5619, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_180": { - "bufferView": "bufferView_14917", - "byteOffset": 8737656, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_1812": { - "bufferView": "bufferView_14916", - "byteOffset": 1114284, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1814": { - "bufferView": "bufferView_14917", - "byteOffset": 9593328, - "byteStride": 12, - "count": 320, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1816": { - "bufferView": "bufferView_14917", - "byteOffset": 9597168, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1843": { - "bufferView": "bufferView_14916", - "byteOffset": 1115892, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_1845": { - "bufferView": "bufferView_14917", - "byteOffset": 9606000, - "byteStride": 12, - "count": 5619, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_1847": { - "bufferView": "bufferView_14917", - "byteOffset": 9673428, - "byteStride": 12, - "count": 5619, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_1863": { - "bufferView": "bufferView_14916", - "byteOffset": 1129908, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1865": { - "bufferView": "bufferView_14917", - "byteOffset": 9740856, - "byteStride": 12, - "count": 343, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1867": { - "bufferView": "bufferView_14917", - "byteOffset": 9744972, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_1883": { - "bufferView": "bufferView_14916", - "byteOffset": 1131060, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1885": { - "bufferView": "bufferView_14917", - "byteOffset": 9749088, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1887": { - "bufferView": "bufferView_14917", - "byteOffset": 9751872, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_1903": { - "bufferView": "bufferView_14916", - "byteOffset": 1131636, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1905": { - "bufferView": "bufferView_14917", - "byteOffset": 9754656, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1907": { - "bufferView": "bufferView_14917", - "byteOffset": 9757440, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_1923": { - "bufferView": "bufferView_14916", - "byteOffset": 1132212, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1925": { - "bufferView": "bufferView_14917", - "byteOffset": 9760224, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1927": { - "bufferView": "bufferView_14917", - "byteOffset": 9763008, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_1943": { - "bufferView": "bufferView_14916", - "byteOffset": 1132788, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1945": { - "bufferView": "bufferView_14917", - "byteOffset": 9765792, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1947": { - "bufferView": "bufferView_14917", - "byteOffset": 9768288, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_196": { - "bufferView": "bufferView_14916", - "byteOffset": 1110372, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_1963": { - "bufferView": "bufferView_14916", - "byteOffset": 1133244, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_1965": { - "bufferView": "bufferView_14917", - "byteOffset": 9770784, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_1967": { - "bufferView": "bufferView_14917", - "byteOffset": 9773568, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_198": { - "bufferView": "bufferView_14917", - "byteOffset": 9564720, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_1983": { - "bufferView": "bufferView_14916", - "byteOffset": 1133820, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_1985": { - "bufferView": "bufferView_14917", - "byteOffset": 9776352, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_1987": { - "bufferView": "bufferView_14917", - "byteOffset": 9778848, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_20": { - "bufferView": "bufferView_14917", - "byteOffset": 3470436, - "byteStride": 12, - "count": 5619, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_200": { - "bufferView": "bufferView_14917", - "byteOffset": 9568848, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2003": { - "bufferView": "bufferView_14916", - "byteOffset": 1134732, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2005": { - "bufferView": "bufferView_14917", - "byteOffset": 9786336, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2007": { - "bufferView": "bufferView_14917", - "byteOffset": 9788832, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2023": { - "bufferView": "bufferView_14916", - "byteOffset": 1135188, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2025": { - "bufferView": "bufferView_14917", - "byteOffset": 9791328, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2027": { - "bufferView": "bufferView_14917", - "byteOffset": 9795456, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2043": { - "bufferView": "bufferView_14916", - "byteOffset": 1136340, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2045": { - "bufferView": "bufferView_14917", - "byteOffset": 9799584, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2047": { - "bufferView": "bufferView_14917", - "byteOffset": 9802080, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2063": { - "bufferView": "bufferView_14916", - "byteOffset": 1136796, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2065": { - "bufferView": "bufferView_14917", - "byteOffset": 9804576, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2067": { - "bufferView": "bufferView_14917", - "byteOffset": 9807072, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2083": { - "bufferView": "bufferView_14916", - "byteOffset": 1137252, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2085": { - "bufferView": "bufferView_14917", - "byteOffset": 9809568, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2087": { - "bufferView": "bufferView_14917", - "byteOffset": 9813696, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2103": { - "bufferView": "bufferView_14916", - "byteOffset": 1138404, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2105": { - "bufferView": "bufferView_14917", - "byteOffset": 9817824, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2107": { - "bufferView": "bufferView_14917", - "byteOffset": 9821940, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2123": { - "bufferView": "bufferView_14916", - "byteOffset": 1139556, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2125": { - "bufferView": "bufferView_14917", - "byteOffset": 9826056, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2127": { - "bufferView": "bufferView_14917", - "byteOffset": 9830184, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2143": { - "bufferView": "bufferView_14916", - "byteOffset": 1140708, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2145": { - "bufferView": "bufferView_14917", - "byteOffset": 9834312, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2147": { - "bufferView": "bufferView_14917", - "byteOffset": 9837096, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_216": { - "bufferView": "bufferView_14916", - "byteOffset": 1115436, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2163": { - "bufferView": "bufferView_14916", - "byteOffset": 1141284, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2165": { - "bufferView": "bufferView_14917", - "byteOffset": 9839880, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2167": { - "bufferView": "bufferView_14917", - "byteOffset": 9844008, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_218": { - "bufferView": "bufferView_14917", - "byteOffset": 9601008, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2188": { - "bufferView": "bufferView_14916", - "byteOffset": 1143588, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_2190": { - "bufferView": "bufferView_14917", - "byteOffset": 9856392, - "byteStride": 12, - "count": 5619, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_2192": { - "bufferView": "bufferView_14917", - "byteOffset": 9923820, - "byteStride": 12, - "count": 5619, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_220": { - "bufferView": "bufferView_14917", - "byteOffset": 9603504, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2208": { - "bufferView": "bufferView_14916", - "byteOffset": 1157604, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2210": { - "bufferView": "bufferView_14917", - "byteOffset": 9991248, - "byteStride": 12, - "count": 343, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2212": { - "bufferView": "bufferView_14917", - "byteOffset": 9995364, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2228": { - "bufferView": "bufferView_14916", - "byteOffset": 1158756, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2230": { - "bufferView": "bufferView_14917", - "byteOffset": 9999480, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2232": { - "bufferView": "bufferView_14917", - "byteOffset": 10002264, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2248": { - "bufferView": "bufferView_14916", - "byteOffset": 1159332, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2250": { - "bufferView": "bufferView_14917", - "byteOffset": 10005048, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2252": { - "bufferView": "bufferView_14917", - "byteOffset": 10007832, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2268": { - "bufferView": "bufferView_14916", - "byteOffset": 1159908, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2270": { - "bufferView": "bufferView_14917", - "byteOffset": 10010616, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2272": { - "bufferView": "bufferView_14917", - "byteOffset": 10013400, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2288": { - "bufferView": "bufferView_14916", - "byteOffset": 1160484, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2290": { - "bufferView": "bufferView_14917", - "byteOffset": 10016184, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2292": { - "bufferView": "bufferView_14917", - "byteOffset": 10018680, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2308": { - "bufferView": "bufferView_14916", - "byteOffset": 1160940, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2310": { - "bufferView": "bufferView_14917", - "byteOffset": 10021176, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2312": { - "bufferView": "bufferView_14917", - "byteOffset": 10023960, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2328": { - "bufferView": "bufferView_14916", - "byteOffset": 1161516, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2330": { - "bufferView": "bufferView_14917", - "byteOffset": 10026744, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2332": { - "bufferView": "bufferView_14917", - "byteOffset": 10029240, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2348": { - "bufferView": "bufferView_14916", - "byteOffset": 1163124, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2350": { - "bufferView": "bufferView_14917", - "byteOffset": 10039968, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2352": { - "bufferView": "bufferView_14917", - "byteOffset": 10042464, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_236": { - "bufferView": "bufferView_14916", - "byteOffset": 1134276, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2368": { - "bufferView": "bufferView_14916", - "byteOffset": 1163580, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2370": { - "bufferView": "bufferView_14917", - "byteOffset": 10044960, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2372": { - "bufferView": "bufferView_14917", - "byteOffset": 10049088, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_238": { - "bufferView": "bufferView_14917", - "byteOffset": 9781344, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2388": { - "bufferView": "bufferView_14916", - "byteOffset": 1164732, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2390": { - "bufferView": "bufferView_14917", - "byteOffset": 10053216, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2392": { - "bufferView": "bufferView_14917", - "byteOffset": 10055712, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_240": { - "bufferView": "bufferView_14917", - "byteOffset": 9783840, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2408": { - "bufferView": "bufferView_14916", - "byteOffset": 1165188, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2410": { - "bufferView": "bufferView_14917", - "byteOffset": 10058208, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2412": { - "bufferView": "bufferView_14917", - "byteOffset": 10060704, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2428": { - "bufferView": "bufferView_14916", - "byteOffset": 1165644, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2430": { - "bufferView": "bufferView_14917", - "byteOffset": 10063200, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2432": { - "bufferView": "bufferView_14917", - "byteOffset": 10067328, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2448": { - "bufferView": "bufferView_14916", - "byteOffset": 1166796, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2450": { - "bufferView": "bufferView_14917", - "byteOffset": 10071456, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2452": { - "bufferView": "bufferView_14917", - "byteOffset": 10075572, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2468": { - "bufferView": "bufferView_14916", - "byteOffset": 1167948, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2470": { - "bufferView": "bufferView_14917", - "byteOffset": 10079688, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2472": { - "bufferView": "bufferView_14917", - "byteOffset": 10083816, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2488": { - "bufferView": "bufferView_14916", - "byteOffset": 1169100, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2490": { - "bufferView": "bufferView_14917", - "byteOffset": 10087944, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2492": { - "bufferView": "bufferView_14917", - "byteOffset": 10090728, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2508": { - "bufferView": "bufferView_14916", - "byteOffset": 1169676, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2510": { - "bufferView": "bufferView_14917", - "byteOffset": 10093512, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2512": { - "bufferView": "bufferView_14917", - "byteOffset": 10097640, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2533": { - "bufferView": "bufferView_14916", - "byteOffset": 1171980, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_2535": { - "bufferView": "bufferView_14917", - "byteOffset": 10110024, - "byteStride": 12, - "count": 5619, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_2537": { - "bufferView": "bufferView_14917", - "byteOffset": 10177452, - "byteStride": 12, - "count": 5619, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_2553": { - "bufferView": "bufferView_14916", - "byteOffset": 1185996, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2555": { - "bufferView": "bufferView_14917", - "byteOffset": 10244880, - "byteStride": 12, - "count": 343, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2557": { - "bufferView": "bufferView_14917", - "byteOffset": 10248996, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_256": { - "bufferView": "bufferView_14916", - "byteOffset": 1142436, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2573": { - "bufferView": "bufferView_14916", - "byteOffset": 1187148, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2575": { - "bufferView": "bufferView_14917", - "byteOffset": 10253112, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2577": { - "bufferView": "bufferView_14917", - "byteOffset": 10255896, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_258": { - "bufferView": "bufferView_14917", - "byteOffset": 9848136, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2593": { - "bufferView": "bufferView_14916", - "byteOffset": 1187724, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2595": { - "bufferView": "bufferView_14917", - "byteOffset": 10258680, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2597": { - "bufferView": "bufferView_14917", - "byteOffset": 10261464, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_260": { - "bufferView": "bufferView_14917", - "byteOffset": 9852264, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2613": { - "bufferView": "bufferView_14916", - "byteOffset": 1188300, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2615": { - "bufferView": "bufferView_14917", - "byteOffset": 10264248, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2617": { - "bufferView": "bufferView_14917", - "byteOffset": 10267032, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2633": { - "bufferView": "bufferView_14916", - "byteOffset": 1188876, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2635": { - "bufferView": "bufferView_14917", - "byteOffset": 10269816, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2637": { - "bufferView": "bufferView_14917", - "byteOffset": 10272312, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2653": { - "bufferView": "bufferView_14916", - "byteOffset": 1189332, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2655": { - "bufferView": "bufferView_14917", - "byteOffset": 10274808, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2657": { - "bufferView": "bufferView_14917", - "byteOffset": 10277592, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2673": { - "bufferView": "bufferView_14916", - "byteOffset": 1190484, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2675": { - "bufferView": "bufferView_14917", - "byteOffset": 10285944, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2677": { - "bufferView": "bufferView_14917", - "byteOffset": 10288440, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2693": { - "bufferView": "bufferView_14916", - "byteOffset": 1190940, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2695": { - "bufferView": "bufferView_14917", - "byteOffset": 10290936, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2697": { - "bufferView": "bufferView_14917", - "byteOffset": 10293432, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2713": { - "bufferView": "bufferView_14916", - "byteOffset": 1191396, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2715": { - "bufferView": "bufferView_14917", - "byteOffset": 10295928, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2717": { - "bufferView": "bufferView_14917", - "byteOffset": 10300056, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2733": { - "bufferView": "bufferView_14916", - "byteOffset": 1192548, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2735": { - "bufferView": "bufferView_14917", - "byteOffset": 10304184, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2737": { - "bufferView": "bufferView_14917", - "byteOffset": 10306680, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_2753": { - "bufferView": "bufferView_14916", - "byteOffset": 1193004, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_2755": { - "bufferView": "bufferView_14917", - "byteOffset": 10309176, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_2757": { - "bufferView": "bufferView_14917", - "byteOffset": 10311672, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_276": { - "bufferView": "bufferView_14916", - "byteOffset": 1161972, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2773": { - "bufferView": "bufferView_14916", - "byteOffset": 1193460, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2775": { - "bufferView": "bufferView_14917", - "byteOffset": 10314168, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2777": { - "bufferView": "bufferView_14917", - "byteOffset": 10318296, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_278": { - "bufferView": "bufferView_14917", - "byteOffset": 10031736, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2793": { - "bufferView": "bufferView_14916", - "byteOffset": 1194612, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2795": { - "bufferView": "bufferView_14917", - "byteOffset": 10322424, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2797": { - "bufferView": "bufferView_14917", - "byteOffset": 10326540, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_280": { - "bufferView": "bufferView_14917", - "byteOffset": 10035852, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2813": { - "bufferView": "bufferView_14916", - "byteOffset": 1195764, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2815": { - "bufferView": "bufferView_14917", - "byteOffset": 10330656, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2817": { - "bufferView": "bufferView_14917", - "byteOffset": 10334784, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2833": { - "bufferView": "bufferView_14916", - "byteOffset": 1196916, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_2835": { - "bufferView": "bufferView_14917", - "byteOffset": 10338912, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_2837": { - "bufferView": "bufferView_14917", - "byteOffset": 10341696, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_2853": { - "bufferView": "bufferView_14916", - "byteOffset": 0, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2855": { - "bufferView": "bufferView_14917", - "byteOffset": 0, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2857": { - "bufferView": "bufferView_14917", - "byteOffset": 4128, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_2878": { - "bufferView": "bufferView_14916", - "byteOffset": 2304, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_2880": { - "bufferView": "bufferView_14917", - "byteOffset": 16512, - "byteStride": 12, - "count": 116, - "max": [ - 19.2048, - 57.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_2882": { - "bufferView": "bufferView_14917", - "byteOffset": 17904, - "byteStride": 12, - "count": 116, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_2898": { - "bufferView": "bufferView_14916", - "byteOffset": 2640, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2900": { - "bufferView": "bufferView_14917", - "byteOffset": 19296, - "byteStride": 12, - "count": 404, - "max": [ - 13.4448, - 13.44, - 1.92 - ], - "min": [ - 5.7648, - 5.76, - 0 - ], - "type": 35665 - }, - "accessor_2902": { - "bufferView": "bufferView_14917", - "byteOffset": 24144, - "byteStride": 12, - "count": 404, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_2918": { - "bufferView": "bufferView_14916", - "byteOffset": 3792, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2920": { - "bufferView": "bufferView_14917", - "byteOffset": 28992, - "byteStride": 12, - "count": 384, - "max": [ - 13.44, - 51.84, - 1.92 - ], - "min": [ - 5.76, - 44.16, - 0 - ], - "type": 35665 - }, - "accessor_2922": { - "bufferView": "bufferView_14917", - "byteOffset": 33600, - "byteStride": 12, - "count": 384, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_2938": { - "bufferView": "bufferView_14916", - "byteOffset": 4944, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2940": { - "bufferView": "bufferView_14917", - "byteOffset": 38208, - "byteStride": 12, - "count": 372, - "max": [ - 13.4436, - 23.04, - 1.92 - ], - "min": [ - 5.7636, - 15.36, - 0 - ], - "type": 35665 - }, - "accessor_2942": { - "bufferView": "bufferView_14917", - "byteOffset": 42672, - "byteStride": 12, - "count": 372, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_2958": { - "bufferView": "bufferView_14916", - "byteOffset": 6096, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_296": { - "bufferView": "bufferView_14916", - "byteOffset": 1170828, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_2960": { - "bufferView": "bufferView_14917", - "byteOffset": 47136, - "byteStride": 12, - "count": 384, - "max": [ - 13.4424, - 32.64, - 1.92 - ], - "min": [ - 5.7624, - 24.96, - 0 - ], - "type": 35665 - }, - "accessor_2962": { - "bufferView": "bufferView_14917", - "byteOffset": 51744, - "byteStride": 12, - "count": 384, - "max": [ - 0.980857, - 0.980857, - 1 - ], - "min": [ - -0.980857, - -0.980857, - -1 - ], - "type": 35665 - }, - "accessor_2978": { - "bufferView": "bufferView_14916", - "byteOffset": 7248, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_298": { - "bufferView": "bufferView_14917", - "byteOffset": 10101768, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_2980": { - "bufferView": "bufferView_14917", - "byteOffset": 56352, - "byteStride": 12, - "count": 392, - "max": [ - 13.4412, - 42.24, - 1.92 - ], - "min": [ - 5.7612, - 34.56, - 0 - ], - "type": 35665 - }, - "accessor_2982": { - "bufferView": "bufferView_14917", - "byteOffset": 61056, - "byteStride": 12, - "count": 392, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_2998": { - "bufferView": "bufferView_14916", - "byteOffset": 8400, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_300": { - "bufferView": "bufferView_14917", - "byteOffset": 10105896, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_3000": { - "bufferView": "bufferView_14917", - "byteOffset": 65760, - "byteStride": 12, - "count": 205, - "max": [ - 17.2848, - 7.6788, - 5.76 - ], - "min": [ - 11.5248, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3002": { - "bufferView": "bufferView_14917", - "byteOffset": 68220, - "byteStride": 12, - "count": 205, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3018": { - "bufferView": "bufferView_14916", - "byteOffset": 8976, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3020": { - "bufferView": "bufferView_14917", - "byteOffset": 70680, - "byteStride": 12, - "count": 206, - "max": [ - 17.2788, - 26.8788, - 5.76 - ], - "min": [ - 11.5188, - 21.1188, - 3.84 - ], - "type": 35665 - }, - "accessor_3022": { - "bufferView": "bufferView_14917", - "byteOffset": 73152, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_3038": { - "bufferView": "bufferView_14916", - "byteOffset": 9552, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3040": { - "bufferView": "bufferView_14917", - "byteOffset": 75624, - "byteStride": 12, - "count": 202, - "max": [ - 17.268, - 55.6788, - 5.76 - ], - "min": [ - 11.508, - 49.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3042": { - "bufferView": "bufferView_14917", - "byteOffset": 78048, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3058": { - "bufferView": "bufferView_14916", - "byteOffset": 10128, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3060": { - "bufferView": "bufferView_14917", - "byteOffset": 80472, - "byteStride": 12, - "count": 198, - "max": [ - 17.2752, - 36.4788, - 5.76 - ], - "min": [ - 11.5152, - 30.7188, - 3.84 - ], - "type": 35665 - }, - "accessor_3062": { - "bufferView": "bufferView_14917", - "byteOffset": 82848, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3078": { - "bufferView": "bufferView_14916", - "byteOffset": 10704, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3080": { - "bufferView": "bufferView_14917", - "byteOffset": 85224, - "byteStride": 12, - "count": 202, - "max": [ - 17.2716, - 46.0788, - 5.76 - ], - "min": [ - 11.5116, - 40.3188, - 3.84 - ], - "type": 35665 - }, - "accessor_3082": { - "bufferView": "bufferView_14917", - "byteOffset": 87648, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3098": { - "bufferView": "bufferView_14916", - "byteOffset": 11280, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3100": { - "bufferView": "bufferView_14917", - "byteOffset": 90072, - "byteStride": 12, - "count": 198, - "max": [ - 17.2812, - 17.2788, - 5.76 - ], - "min": [ - 11.5212, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_3102": { - "bufferView": "bufferView_14917", - "byteOffset": 92448, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_3118": { - "bufferView": "bufferView_14916", - "byteOffset": 13008, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3120": { - "bufferView": "bufferView_14917", - "byteOffset": 103056, - "byteStride": 12, - "count": 202, - "max": [ - 7.6716, - 46.0788, - 5.76 - ], - "min": [ - 1.9116, - 40.3188, - 3.84 - ], - "type": 35665 - }, - "accessor_3122": { - "bufferView": "bufferView_14917", - "byteOffset": 105480, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3138": { - "bufferView": "bufferView_14916", - "byteOffset": 13584, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3140": { - "bufferView": "bufferView_14917", - "byteOffset": 107904, - "byteStride": 12, - "count": 198, - "max": [ - 7.6752, - 36.4788, - 5.76 - ], - "min": [ - 1.9152, - 30.7188, - 3.84 - ], - "type": 35665 - }, - "accessor_3142": { - "bufferView": "bufferView_14917", - "byteOffset": 110280, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3158": { - "bufferView": "bufferView_14916", - "byteOffset": 14160, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_316": { - "bufferView": "bufferView_14916", - "byteOffset": 1189908, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3160": { - "bufferView": "bufferView_14917", - "byteOffset": 112656, - "byteStride": 12, - "count": 201, - "max": [ - 7.668, - 55.6788, - 5.76 - ], - "min": [ - 1.908, - 49.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3162": { - "bufferView": "bufferView_14917", - "byteOffset": 115068, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3178": { - "bufferView": "bufferView_14916", - "byteOffset": 14736, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_318": { - "bufferView": "bufferView_14917", - "byteOffset": 10280376, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_3180": { - "bufferView": "bufferView_14917", - "byteOffset": 117480, - "byteStride": 12, - "count": 197, - "max": [ - 7.6812, - 17.2788, - 5.76 - ], - "min": [ - 1.9212, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_3182": { - "bufferView": "bufferView_14917", - "byteOffset": 119844, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_3198": { - "bufferView": "bufferView_14916", - "byteOffset": 15312, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_320": { - "bufferView": "bufferView_14917", - "byteOffset": 10283160, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_3200": { - "bufferView": "bufferView_14917", - "byteOffset": 122208, - "byteStride": 12, - "count": 206, - "max": [ - 7.6788, - 26.8788, - 5.76 - ], - "min": [ - 1.9188, - 21.1188, - 3.84 - ], - "type": 35665 - }, - "accessor_3202": { - "bufferView": "bufferView_14917", - "byteOffset": 124680, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_3218": { - "bufferView": "bufferView_14916", - "byteOffset": 15888, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3220": { - "bufferView": "bufferView_14917", - "byteOffset": 127152, - "byteStride": 12, - "count": 206, - "max": [ - 7.6848, - 7.6788, - 5.76 - ], - "min": [ - 1.9248, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3222": { - "bufferView": "bufferView_14917", - "byteOffset": 129624, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_3238": { - "bufferView": "bufferView_14916", - "byteOffset": 16464, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3240": { - "bufferView": "bufferView_14917", - "byteOffset": 132096, - "byteStride": 12, - "count": 364, - "max": [ - 7.6812, - 46.08, - 5.76 - ], - "min": [ - 1.9212, - 40.32, - 3.84 - ], - "type": 35665 - }, - "accessor_3242": { - "bufferView": "bufferView_14917", - "byteOffset": 136464, - "byteStride": 12, - "count": 364, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3258": { - "bufferView": "bufferView_14916", - "byteOffset": 17616, - "byteStride": 0, - "count": 1296, - "type": 5123 - }, - "accessor_3260": { - "bufferView": "bufferView_14917", - "byteOffset": 140832, - "byteStride": 12, - "count": 894, - "max": [ - 9.6036, - 57.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3262": { - "bufferView": "bufferView_14917", - "byteOffset": 151560, - "byteStride": 12, - "count": 894, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3278": { - "bufferView": "bufferView_14916", - "byteOffset": 20208, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_3280": { - "bufferView": "bufferView_14917", - "byteOffset": 162288, - "byteStride": 12, - "count": 888, - "max": [ - 9.6036, - 9.6, - 0.96 - ], - "min": [ - 0.0036, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3282": { - "bufferView": "bufferView_14917", - "byteOffset": 172944, - "byteStride": 12, - "count": 888, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3298": { - "bufferView": "bufferView_14916", - "byteOffset": 22512, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_3300": { - "bufferView": "bufferView_14917", - "byteOffset": 183600, - "byteStride": 12, - "count": 370, - "max": [ - 7.6836, - 17.28, - 5.76 - ], - "min": [ - 1.9236, - 11.52, - 3.84 - ], - "type": 35665 - }, - "accessor_3302": { - "bufferView": "bufferView_14917", - "byteOffset": 188040, - "byteStride": 12, - "count": 370, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3318": { - "bufferView": "bufferView_14916", - "byteOffset": 23700, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_3320": { - "bufferView": "bufferView_14917", - "byteOffset": 192480, - "byteStride": 12, - "count": 358, - "max": [ - 7.6824, - 26.88, - 5.76 - ], - "min": [ - 1.9224, - 21.12, - 3.84 - ], - "type": 35665 - }, - "accessor_3322": { - "bufferView": "bufferView_14917", - "byteOffset": 196776, - "byteStride": 12, - "count": 358, - "max": [ - 0.980744, - 0.980744, - 1 - ], - "min": [ - -0.980744, - -0.980744, - -1 - ], - "type": 35665 - }, - "accessor_3338": { - "bufferView": "bufferView_14916", - "byteOffset": 24888, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_3340": { - "bufferView": "bufferView_14917", - "byteOffset": 201072, - "byteStride": 12, - "count": 867, - "max": [ - 9.6, - 57.6, - 0.96 - ], - "min": [ - 0, - 48, - 0 - ], - "type": 35665 - }, - "accessor_3342": { - "bufferView": "bufferView_14917", - "byteOffset": 211476, - "byteStride": 12, - "count": 867, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3358": { - "bufferView": "bufferView_14916", - "byteOffset": 27192, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_336": { - "bufferView": "bufferView_14916", - "byteOffset": 1152, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3360": { - "bufferView": "bufferView_14917", - "byteOffset": 221880, - "byteStride": 12, - "count": 360, - "max": [ - 7.6812, - 36.48, - 5.76 - ], - "min": [ - 1.9212, - 30.72, - 3.84 - ], - "type": 35665 - }, - "accessor_3362": { - "bufferView": "bufferView_14917", - "byteOffset": 226200, - "byteStride": 12, - "count": 360, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3378": { - "bufferView": "bufferView_14916", - "byteOffset": 28344, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_338": { - "bufferView": "bufferView_14917", - "byteOffset": 8256, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_3380": { - "bufferView": "bufferView_14917", - "byteOffset": 230520, - "byteStride": 12, - "count": 209, - "max": [ - 6.7224, - 21.12, - 1.92 - ], - "min": [ - 2.8824, - 17.28, - 0 - ], - "type": 35665 - }, - "accessor_3382": { - "bufferView": "bufferView_14917", - "byteOffset": 233028, - "byteStride": 12, - "count": 209, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3398": { - "bufferView": "bufferView_14916", - "byteOffset": 28920, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_340": { - "bufferView": "bufferView_14917", - "byteOffset": 12384, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_3400": { - "bufferView": "bufferView_14917", - "byteOffset": 235536, - "byteStride": 12, - "count": 218, - "max": [ - 6.7224, - 30.72, - 1.92 - ], - "min": [ - 2.8824, - 26.88, - 0 - ], - "type": 35665 - }, - "accessor_3402": { - "bufferView": "bufferView_14917", - "byteOffset": 238152, - "byteStride": 12, - "count": 218, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3418": { - "bufferView": "bufferView_14916", - "byteOffset": 29496, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3420": { - "bufferView": "bufferView_14917", - "byteOffset": 240768, - "byteStride": 12, - "count": 225, - "max": [ - 6.7212, - 40.32, - 1.92 - ], - "min": [ - 2.8812, - 36.48, - 0 - ], - "type": 35665 - }, - "accessor_3422": { - "bufferView": "bufferView_14917", - "byteOffset": 243468, - "byteStride": 12, - "count": 225, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3442": { - "bufferView": "bufferView_14916", - "byteOffset": 30072, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3444": { - "bufferView": "bufferView_14917", - "byteOffset": 246168, - "byteStride": 12, - "count": 364, - "max": [ - 7.6812, - 46.08, - 5.76 - ], - "min": [ - 1.9212, - 40.32, - 3.84 - ], - "type": 35665 - }, - "accessor_3446": { - "bufferView": "bufferView_14917", - "byteOffset": 250536, - "byteStride": 12, - "count": 364, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3462": { - "bufferView": "bufferView_14916", - "byteOffset": 31224, - "byteStride": 0, - "count": 1296, - "type": 5123 - }, - "accessor_3464": { - "bufferView": "bufferView_14917", - "byteOffset": 254904, - "byteStride": 12, - "count": 894, - "max": [ - 9.6036, - 57.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3466": { - "bufferView": "bufferView_14917", - "byteOffset": 265632, - "byteStride": 12, - "count": 894, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3482": { - "bufferView": "bufferView_14916", - "byteOffset": 33816, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_3484": { - "bufferView": "bufferView_14917", - "byteOffset": 276360, - "byteStride": 12, - "count": 888, - "max": [ - 9.6036, - 9.6, - 0.96 - ], - "min": [ - 0.0036, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3486": { - "bufferView": "bufferView_14917", - "byteOffset": 287016, - "byteStride": 12, - "count": 888, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3502": { - "bufferView": "bufferView_14916", - "byteOffset": 36120, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_3504": { - "bufferView": "bufferView_14917", - "byteOffset": 297672, - "byteStride": 12, - "count": 370, - "max": [ - 7.6836, - 17.28, - 5.76 - ], - "min": [ - 1.9236, - 11.52, - 3.84 - ], - "type": 35665 - }, - "accessor_3506": { - "bufferView": "bufferView_14917", - "byteOffset": 302112, - "byteStride": 12, - "count": 370, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3522": { - "bufferView": "bufferView_14916", - "byteOffset": 37308, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_3524": { - "bufferView": "bufferView_14917", - "byteOffset": 306552, - "byteStride": 12, - "count": 358, - "max": [ - 7.6824, - 26.88, - 5.76 - ], - "min": [ - 1.9224, - 21.12, - 3.84 - ], - "type": 35665 - }, - "accessor_3526": { - "bufferView": "bufferView_14917", - "byteOffset": 310848, - "byteStride": 12, - "count": 358, - "max": [ - 0.980744, - 0.980744, - 1 - ], - "min": [ - -0.980744, - -0.980744, - -1 - ], - "type": 35665 - }, - "accessor_3542": { - "bufferView": "bufferView_14916", - "byteOffset": 38496, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_3544": { - "bufferView": "bufferView_14917", - "byteOffset": 315144, - "byteStride": 12, - "count": 867, - "max": [ - 9.6, - 57.6, - 0.96 - ], - "min": [ - 0, - 48, - 0 - ], - "type": 35665 - }, - "accessor_3546": { - "bufferView": "bufferView_14917", - "byteOffset": 325548, - "byteStride": 12, - "count": 867, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3562": { - "bufferView": "bufferView_14916", - "byteOffset": 40800, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3564": { - "bufferView": "bufferView_14917", - "byteOffset": 335952, - "byteStride": 12, - "count": 360, - "max": [ - 7.6812, - 36.48, - 5.76 - ], - "min": [ - 1.9212, - 30.72, - 3.84 - ], - "type": 35665 - }, - "accessor_3566": { - "bufferView": "bufferView_14917", - "byteOffset": 340272, - "byteStride": 12, - "count": 360, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_3582": { - "bufferView": "bufferView_14916", - "byteOffset": 41952, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3584": { - "bufferView": "bufferView_14917", - "byteOffset": 344592, - "byteStride": 12, - "count": 209, - "max": [ - 6.7224, - 21.12, - 1.92 - ], - "min": [ - 2.8824, - 17.28, - 0 - ], - "type": 35665 - }, - "accessor_3586": { - "bufferView": "bufferView_14917", - "byteOffset": 347100, - "byteStride": 12, - "count": 209, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_36": { - "bufferView": "bufferView_14916", - "byteOffset": 11856, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3602": { - "bufferView": "bufferView_14916", - "byteOffset": 42528, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3604": { - "bufferView": "bufferView_14917", - "byteOffset": 349608, - "byteStride": 12, - "count": 218, - "max": [ - 6.7224, - 30.72, - 1.92 - ], - "min": [ - 2.8824, - 26.88, - 0 - ], - "type": 35665 - }, - "accessor_3606": { - "bufferView": "bufferView_14917", - "byteOffset": 352224, - "byteStride": 12, - "count": 218, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_361": { - "bufferView": "bufferView_14916", - "byteOffset": 44256, - "byteStride": 0, - "count": 3756, - "type": 5123 - }, - "accessor_3622": { - "bufferView": "bufferView_14916", - "byteOffset": 43104, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3624": { - "bufferView": "bufferView_14917", - "byteOffset": 354840, - "byteStride": 12, - "count": 225, - "max": [ - 6.7212, - 40.32, - 1.92 - ], - "min": [ - 2.8812, - 36.48, - 0 - ], - "type": 35665 - }, - "accessor_3626": { - "bufferView": "bufferView_14917", - "byteOffset": 357540, - "byteStride": 12, - "count": 225, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_363": { - "bufferView": "bufferView_14917", - "byteOffset": 365184, - "byteStride": 12, - "count": 1806, - "max": [ - 9.6, - 28.8, - 16.32 - ], - "min": [ - 0, - 0, - 4.8 - ], - "type": 35665 - }, - "accessor_3646": { - "bufferView": "bufferView_14916", - "byteOffset": 43680, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3648": { - "bufferView": "bufferView_14917", - "byteOffset": 360240, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_365": { - "bufferView": "bufferView_14917", - "byteOffset": 386856, - "byteStride": 12, - "count": 1806, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3650": { - "bufferView": "bufferView_14917", - "byteOffset": 362712, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3666": { - "bufferView": "bufferView_14916", - "byteOffset": 51768, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3668": { - "bufferView": "bufferView_14917", - "byteOffset": 408528, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_3670": { - "bufferView": "bufferView_14917", - "byteOffset": 413280, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_3686": { - "bufferView": "bufferView_14916", - "byteOffset": 52920, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3688": { - "bufferView": "bufferView_14917", - "byteOffset": 418032, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_3690": { - "bufferView": "bufferView_14917", - "byteOffset": 420456, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3706": { - "bufferView": "bufferView_14916", - "byteOffset": 53496, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3708": { - "bufferView": "bufferView_14917", - "byteOffset": 422880, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3710": { - "bufferView": "bufferView_14917", - "byteOffset": 425352, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3726": { - "bufferView": "bufferView_14916", - "byteOffset": 54072, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3728": { - "bufferView": "bufferView_14917", - "byteOffset": 427824, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3730": { - "bufferView": "bufferView_14917", - "byteOffset": 430248, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3746": { - "bufferView": "bufferView_14916", - "byteOffset": 54648, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_3748": { - "bufferView": "bufferView_14917", - "byteOffset": 432672, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3750": { - "bufferView": "bufferView_14917", - "byteOffset": 433824, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3771": { - "bufferView": "bufferView_14916", - "byteOffset": 54984, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3773": { - "bufferView": "bufferView_14917", - "byteOffset": 434976, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_3775": { - "bufferView": "bufferView_14917", - "byteOffset": 437448, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3791": { - "bufferView": "bufferView_14916", - "byteOffset": 55560, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3793": { - "bufferView": "bufferView_14917", - "byteOffset": 439920, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_3795": { - "bufferView": "bufferView_14917", - "byteOffset": 444672, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_38": { - "bufferView": "bufferView_14917", - "byteOffset": 94824, - "byteStride": 12, - "count": 343, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_381": { - "bufferView": "bufferView_14916", - "byteOffset": 56712, - "byteStride": 0, - "count": 1056, - "type": 5123 - }, - "accessor_3811": { - "bufferView": "bufferView_14916", - "byteOffset": 58824, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3813": { - "bufferView": "bufferView_14917", - "byteOffset": 464880, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_3815": { - "bufferView": "bufferView_14917", - "byteOffset": 467304, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_383": { - "bufferView": "bufferView_14917", - "byteOffset": 449424, - "byteStride": 12, - "count": 644, - "max": [ - 7.68, - 7.68, - 4.8 - ], - "min": [ - 1.92, - 1.92, - 0 - ], - "type": 35665 - }, - "accessor_3831": { - "bufferView": "bufferView_14916", - "byteOffset": 59400, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3833": { - "bufferView": "bufferView_14917", - "byteOffset": 469728, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3835": { - "bufferView": "bufferView_14917", - "byteOffset": 472200, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_385": { - "bufferView": "bufferView_14917", - "byteOffset": 457152, - "byteStride": 12, - "count": 644, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3851": { - "bufferView": "bufferView_14916", - "byteOffset": 59976, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_3853": { - "bufferView": "bufferView_14917", - "byteOffset": 474672, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_3855": { - "bufferView": "bufferView_14917", - "byteOffset": 477096, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_3871": { - "bufferView": "bufferView_14916", - "byteOffset": 60552, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_3873": { - "bufferView": "bufferView_14917", - "byteOffset": 479520, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3875": { - "bufferView": "bufferView_14917", - "byteOffset": 480672, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3896": { - "bufferView": "bufferView_14916", - "byteOffset": 60888, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_3898": { - "bufferView": "bufferView_14917", - "byteOffset": 481824, - "byteStride": 12, - "count": 116, - "max": [ - 19.2048, - 57.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_3900": { - "bufferView": "bufferView_14917", - "byteOffset": 483216, - "byteStride": 12, - "count": 116, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_3916": { - "bufferView": "bufferView_14916", - "byteOffset": 61224, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3918": { - "bufferView": "bufferView_14917", - "byteOffset": 484608, - "byteStride": 12, - "count": 404, - "max": [ - 13.4448, - 13.44, - 1.92 - ], - "min": [ - 5.7648, - 5.76, - 0 - ], - "type": 35665 - }, - "accessor_3920": { - "bufferView": "bufferView_14917", - "byteOffset": 489456, - "byteStride": 12, - "count": 404, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_3936": { - "bufferView": "bufferView_14916", - "byteOffset": 64488, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3938": { - "bufferView": "bufferView_14917", - "byteOffset": 508320, - "byteStride": 12, - "count": 384, - "max": [ - 13.44, - 51.84, - 1.92 - ], - "min": [ - 5.76, - 44.16, - 0 - ], - "type": 35665 - }, - "accessor_3940": { - "bufferView": "bufferView_14917", - "byteOffset": 512928, - "byteStride": 12, - "count": 384, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_3956": { - "bufferView": "bufferView_14916", - "byteOffset": 65640, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3958": { - "bufferView": "bufferView_14917", - "byteOffset": 517536, - "byteStride": 12, - "count": 372, - "max": [ - 13.4436, - 23.04, - 1.92 - ], - "min": [ - 5.7636, - 15.36, - 0 - ], - "type": 35665 - }, - "accessor_3960": { - "bufferView": "bufferView_14917", - "byteOffset": 522000, - "byteStride": 12, - "count": 372, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_3976": { - "bufferView": "bufferView_14916", - "byteOffset": 66792, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3978": { - "bufferView": "bufferView_14917", - "byteOffset": 526464, - "byteStride": 12, - "count": 384, - "max": [ - 13.4424, - 32.64, - 1.92 - ], - "min": [ - 5.7624, - 24.96, - 0 - ], - "type": 35665 - }, - "accessor_3980": { - "bufferView": "bufferView_14917", - "byteOffset": 531072, - "byteStride": 12, - "count": 384, - "max": [ - 0.980857, - 0.980857, - 1 - ], - "min": [ - -0.980857, - -0.980857, - -1 - ], - "type": 35665 - }, - "accessor_3996": { - "bufferView": "bufferView_14916", - "byteOffset": 67944, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_3998": { - "bufferView": "bufferView_14917", - "byteOffset": 535680, - "byteStride": 12, - "count": 392, - "max": [ - 13.4412, - 42.24, - 1.92 - ], - "min": [ - 5.7612, - 34.56, - 0 - ], - "type": 35665 - }, - "accessor_40": { - "bufferView": "bufferView_14917", - "byteOffset": 98940, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_4000": { - "bufferView": "bufferView_14917", - "byteOffset": 540384, - "byteStride": 12, - "count": 392, - "max": [ - 0.980908, - 0.980887, - 1 - ], - "min": [ - -0.980908, - -0.980887, - -1 - ], - "type": 35665 - }, - "accessor_401": { - "bufferView": "bufferView_14916", - "byteOffset": 62376, - "byteStride": 0, - "count": 1056, - "type": 5123 - }, - "accessor_4016": { - "bufferView": "bufferView_14916", - "byteOffset": 69096, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4018": { - "bufferView": "bufferView_14917", - "byteOffset": 545088, - "byteStride": 12, - "count": 205, - "max": [ - 17.2848, - 7.6788, - 5.76 - ], - "min": [ - 11.5248, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_4020": { - "bufferView": "bufferView_14917", - "byteOffset": 547548, - "byteStride": 12, - "count": 205, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_403": { - "bufferView": "bufferView_14917", - "byteOffset": 494304, - "byteStride": 12, - "count": 584, - "max": [ - 7.68, - 7.68, - 21.12 - ], - "min": [ - 1.92, - 1.92, - 16.32 - ], - "type": 35665 - }, - "accessor_4036": { - "bufferView": "bufferView_14916", - "byteOffset": 69672, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4038": { - "bufferView": "bufferView_14917", - "byteOffset": 550008, - "byteStride": 12, - "count": 206, - "max": [ - 17.2788, - 26.8788, - 5.76 - ], - "min": [ - 11.5188, - 21.1188, - 3.84 - ], - "type": 35665 - }, - "accessor_4040": { - "bufferView": "bufferView_14917", - "byteOffset": 552480, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_405": { - "bufferView": "bufferView_14917", - "byteOffset": 501312, - "byteStride": 12, - "count": 584, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4056": { - "bufferView": "bufferView_14916", - "byteOffset": 70248, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4058": { - "bufferView": "bufferView_14917", - "byteOffset": 554952, - "byteStride": 12, - "count": 202, - "max": [ - 17.268, - 55.6788, - 5.76 - ], - "min": [ - 11.508, - 49.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_4060": { - "bufferView": "bufferView_14917", - "byteOffset": 557376, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4076": { - "bufferView": "bufferView_14916", - "byteOffset": 70824, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4078": { - "bufferView": "bufferView_14917", - "byteOffset": 559800, - "byteStride": 12, - "count": 198, - "max": [ - 17.2752, - 36.4788, - 5.76 - ], - "min": [ - 11.5152, - 30.7188, - 3.84 - ], - "type": 35665 - }, - "accessor_4080": { - "bufferView": "bufferView_14917", - "byteOffset": 562176, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4096": { - "bufferView": "bufferView_14916", - "byteOffset": 71400, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4098": { - "bufferView": "bufferView_14917", - "byteOffset": 564552, - "byteStride": 12, - "count": 202, - "max": [ - 17.2716, - 46.0788, - 5.76 - ], - "min": [ - 11.5116, - 40.3188, - 3.84 - ], - "type": 35665 - }, - "accessor_4100": { - "bufferView": "bufferView_14917", - "byteOffset": 566976, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4116": { - "bufferView": "bufferView_14916", - "byteOffset": 71976, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4118": { - "bufferView": "bufferView_14917", - "byteOffset": 569400, - "byteStride": 12, - "count": 198, - "max": [ - 17.2812, - 17.2788, - 5.76 - ], - "min": [ - 11.5212, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_4120": { - "bufferView": "bufferView_14917", - "byteOffset": 571776, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_4136": { - "bufferView": "bufferView_14916", - "byteOffset": 72552, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4138": { - "bufferView": "bufferView_14917", - "byteOffset": 574152, - "byteStride": 12, - "count": 202, - "max": [ - 7.6716, - 46.0788, - 5.76 - ], - "min": [ - 1.9116, - 40.3188, - 3.84 - ], - "type": 35665 - }, - "accessor_4140": { - "bufferView": "bufferView_14917", - "byteOffset": 576576, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4156": { - "bufferView": "bufferView_14916", - "byteOffset": 73128, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4158": { - "bufferView": "bufferView_14917", - "byteOffset": 579000, - "byteStride": 12, - "count": 198, - "max": [ - 7.6752, - 36.4788, - 5.76 - ], - "min": [ - 1.9152, - 30.7188, - 3.84 - ], - "type": 35665 - }, - "accessor_4160": { - "bufferView": "bufferView_14917", - "byteOffset": 581376, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4176": { - "bufferView": "bufferView_14916", - "byteOffset": 104376, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4178": { - "bufferView": "bufferView_14917", - "byteOffset": 882336, - "byteStride": 12, - "count": 201, - "max": [ - 7.668, - 55.6788, - 5.76 - ], - "min": [ - 1.908, - 49.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_4180": { - "bufferView": "bufferView_14917", - "byteOffset": 884748, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4196": { - "bufferView": "bufferView_14916", - "byteOffset": 104952, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4198": { - "bufferView": "bufferView_14917", - "byteOffset": 887160, - "byteStride": 12, - "count": 197, - "max": [ - 7.6812, - 17.2788, - 5.76 - ], - "min": [ - 1.9212, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_4200": { - "bufferView": "bufferView_14917", - "byteOffset": 889524, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_421": { - "bufferView": "bufferView_14916", - "byteOffset": 73704, - "byteStride": 0, - "count": 15336, - "type": 5123 - }, - "accessor_4216": { - "bufferView": "bufferView_14916", - "byteOffset": 105528, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4218": { - "bufferView": "bufferView_14917", - "byteOffset": 891888, - "byteStride": 12, - "count": 206, - "max": [ - 7.6788, - 26.8788, - 5.76 - ], - "min": [ - 1.9188, - 21.1188, - 3.84 - ], - "type": 35665 - }, - "accessor_4220": { - "bufferView": "bufferView_14917", - "byteOffset": 894360, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_423": { - "bufferView": "bufferView_14917", - "byteOffset": 583752, - "byteStride": 12, - "count": 12441, - "max": [ - 115.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_4236": { - "bufferView": "bufferView_14916", - "byteOffset": 106104, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4238": { - "bufferView": "bufferView_14917", - "byteOffset": 896832, - "byteStride": 12, - "count": 206, - "max": [ - 7.6848, - 7.6788, - 5.76 - ], - "min": [ - 1.9248, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_4240": { - "bufferView": "bufferView_14917", - "byteOffset": 899304, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_425": { - "bufferView": "bufferView_14917", - "byteOffset": 733044, - "byteStride": 12, - "count": 12441, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4256": { - "bufferView": "bufferView_14916", - "byteOffset": 106680, - "byteStride": 0, - "count": 180, - "type": 5123 - }, - "accessor_4258": { - "bufferView": "bufferView_14917", - "byteOffset": 901776, - "byteStride": 12, - "count": 118, - "max": [ - 9.6204, - 57.6192, - 3.84 - ], - "min": [ - 0.0024, - 0.018, - 0 - ], - "type": 35665 - }, - "accessor_4260": { - "bufferView": "bufferView_14917", - "byteOffset": 903192, - "byteStride": 12, - "count": 118, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4276": { - "bufferView": "bufferView_14916", - "byteOffset": 107040, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4278": { - "bufferView": "bufferView_14917", - "byteOffset": 904608, - "byteStride": 12, - "count": 201, - "max": [ - 7.6824, - 55.698, - 5.76 - ], - "min": [ - 1.9224, - 49.938, - 3.84 - ], - "type": 35665 - }, - "accessor_4280": { - "bufferView": "bufferView_14917", - "byteOffset": 907020, - "byteStride": 12, - "count": 201, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4296": { - "bufferView": "bufferView_14916", - "byteOffset": 107616, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4298": { - "bufferView": "bufferView_14917", - "byteOffset": 909432, - "byteStride": 12, - "count": 197, - "max": [ - 7.6956, - 17.298, - 5.76 - ], - "min": [ - 1.9356, - 11.538, - 3.84 - ], - "type": 35665 - }, - "accessor_4300": { - "bufferView": "bufferView_14917", - "byteOffset": 911796, - "byteStride": 12, - "count": 197, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_4316": { - "bufferView": "bufferView_14916", - "byteOffset": 108192, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4318": { - "bufferView": "bufferView_14917", - "byteOffset": 914160, - "byteStride": 12, - "count": 202, - "max": [ - 7.686, - 46.098, - 5.76 - ], - "min": [ - 1.926, - 40.338, - 3.84 - ], - "type": 35665 - }, - "accessor_4320": { - "bufferView": "bufferView_14917", - "byteOffset": 916584, - "byteStride": 12, - "count": 202, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4336": { - "bufferView": "bufferView_14916", - "byteOffset": 108768, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4338": { - "bufferView": "bufferView_14917", - "byteOffset": 919008, - "byteStride": 12, - "count": 206, - "max": [ - 7.6932, - 26.898, - 5.76 - ], - "min": [ - 1.9332, - 21.138, - 3.84 - ], - "type": 35665 - }, - "accessor_4340": { - "bufferView": "bufferView_14917", - "byteOffset": 921480, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_4356": { - "bufferView": "bufferView_14916", - "byteOffset": 109344, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4358": { - "bufferView": "bufferView_14917", - "byteOffset": 923952, - "byteStride": 12, - "count": 198, - "max": [ - 7.6896, - 36.498, - 5.76 - ], - "min": [ - 1.9296, - 30.738, - 3.84 - ], - "type": 35665 - }, - "accessor_4360": { - "bufferView": "bufferView_14917", - "byteOffset": 926328, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4376": { - "bufferView": "bufferView_14916", - "byteOffset": 109920, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4378": { - "bufferView": "bufferView_14917", - "byteOffset": 928704, - "byteStride": 12, - "count": 206, - "max": [ - 7.6992, - 7.698, - 5.76 - ], - "min": [ - 1.9392, - 1.938, - 3.84 - ], - "type": 35665 - }, - "accessor_4380": { - "bufferView": "bufferView_14917", - "byteOffset": 931176, - "byteStride": 12, - "count": 206, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_4396": { - "bufferView": "bufferView_14916", - "byteOffset": 110496, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4398": { - "bufferView": "bufferView_14917", - "byteOffset": 933648, - "byteStride": 12, - "count": 225, - "max": [ - 6.7308, - 30.738, - 1.92 - ], - "min": [ - 2.8908, - 26.898, - 0 - ], - "type": 35665 - }, - "accessor_4400": { - "bufferView": "bufferView_14917", - "byteOffset": 936348, - "byteStride": 12, - "count": 225, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_441": { - "bufferView": "bufferView_14916", - "byteOffset": 111648, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4416": { - "bufferView": "bufferView_14916", - "byteOffset": 111072, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4418": { - "bufferView": "bufferView_14917", - "byteOffset": 939048, - "byteStride": 12, - "count": 214, - "max": [ - 6.7272, - 40.338, - 1.92 - ], - "min": [ - 2.8872, - 36.498, - 0 - ], - "type": 35665 - }, - "accessor_4420": { - "bufferView": "bufferView_14917", - "byteOffset": 941616, - "byteStride": 12, - "count": 214, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_443": { - "bufferView": "bufferView_14917", - "byteOffset": 944184, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_4436": { - "bufferView": "bufferView_14916", - "byteOffset": 112224, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4438": { - "bufferView": "bufferView_14917", - "byteOffset": 949752, - "byteStride": 12, - "count": 218, - "max": [ - 6.7236, - 49.938, - 1.92 - ], - "min": [ - 2.8836, - 46.098, - 0 - ], - "type": 35665 - }, - "accessor_4440": { - "bufferView": "bufferView_14917", - "byteOffset": 952368, - "byteStride": 12, - "count": 218, - "max": [ - 0.98107, - 0.98101, - 1 - ], - "min": [ - -0.98107, - -0.98101, - -1 - ], - "type": 35665 - }, - "accessor_445": { - "bufferView": "bufferView_14917", - "byteOffset": 946968, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_4456": { - "bufferView": "bufferView_14916", - "byteOffset": 112800, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4458": { - "bufferView": "bufferView_14917", - "byteOffset": 954984, - "byteStride": 12, - "count": 222, - "max": [ - 6.7344, - 21.138, - 1.92 - ], - "min": [ - 2.8944, - 17.298, - 0 - ], - "type": 35665 - }, - "accessor_4460": { - "bufferView": "bufferView_14917", - "byteOffset": 957648, - "byteStride": 12, - "count": 222, - "max": [ - 0.980765, - 0.98107, - 1 - ], - "min": [ - -0.980765, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_4476": { - "bufferView": "bufferView_14916", - "byteOffset": 113376, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4478": { - "bufferView": "bufferView_14917", - "byteOffset": 960312, - "byteStride": 12, - "count": 225, - "max": [ - 6.738, - 11.538, - 1.92 - ], - "min": [ - 2.898, - 7.698, - 0 - ], - "type": 35665 - }, - "accessor_4480": { - "bufferView": "bufferView_14917", - "byteOffset": 963012, - "byteStride": 12, - "count": 225, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_4500": { - "bufferView": "bufferView_14916", - "byteOffset": 113952, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_4502": { - "bufferView": "bufferView_14917", - "byteOffset": 965712, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_4504": { - "bufferView": "bufferView_14917", - "byteOffset": 969552, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_4520": { - "bufferView": "bufferView_14916", - "byteOffset": 115104, - "byteStride": 0, - "count": 1578, - "type": 5123 - }, - "accessor_4522": { - "bufferView": "bufferView_14917", - "byteOffset": 973392, - "byteStride": 12, - "count": 1268, - "max": [ - 19.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_4524": { - "bufferView": "bufferView_14917", - "byteOffset": 988608, - "byteStride": 12, - "count": 1268, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4540": { - "bufferView": "bufferView_14916", - "byteOffset": 118260, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_4542": { - "bufferView": "bufferView_14917", - "byteOffset": 1003824, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_4544": { - "bufferView": "bufferView_14917", - "byteOffset": 1007664, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_4560": { - "bufferView": "bufferView_14916", - "byteOffset": 119412, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_4562": { - "bufferView": "bufferView_14917", - "byteOffset": 1011504, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_4564": { - "bufferView": "bufferView_14917", - "byteOffset": 1014000, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_4580": { - "bufferView": "bufferView_14916", - "byteOffset": 120444, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4582": { - "bufferView": "bufferView_14917", - "byteOffset": 1022064, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_4584": { - "bufferView": "bufferView_14917", - "byteOffset": 1024848, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_4601": { - "bufferView": "bufferView_14916", - "byteOffset": 121020, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_4603": { - "bufferView": "bufferView_14917", - "byteOffset": 1027632, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_4605": { - "bufferView": "bufferView_14917", - "byteOffset": 1031472, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_461": { - "bufferView": "bufferView_14916", - "byteOffset": 119868, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4621": { - "bufferView": "bufferView_14916", - "byteOffset": 122172, - "byteStride": 0, - "count": 1578, - "type": 5123 - }, - "accessor_4623": { - "bufferView": "bufferView_14917", - "byteOffset": 1035312, - "byteStride": 12, - "count": 1268, - "max": [ - 19.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_4625": { - "bufferView": "bufferView_14917", - "byteOffset": 1050528, - "byteStride": 12, - "count": 1268, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_463": { - "bufferView": "bufferView_14917", - "byteOffset": 1016496, - "byteStride": 12, - "count": 232, - "max": [ - 97.9202, - 6.7198, - 2.8826 - ], - "min": [ - 94.0791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_4641": { - "bufferView": "bufferView_14916", - "byteOffset": 125328, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_4643": { - "bufferView": "bufferView_14917", - "byteOffset": 1065744, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_4645": { - "bufferView": "bufferView_14917", - "byteOffset": 1069584, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_465": { - "bufferView": "bufferView_14917", - "byteOffset": 1019280, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_4661": { - "bufferView": "bufferView_14916", - "byteOffset": 126480, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_4663": { - "bufferView": "bufferView_14917", - "byteOffset": 1073424, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_4665": { - "bufferView": "bufferView_14917", - "byteOffset": 1075920, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_4681": { - "bufferView": "bufferView_14916", - "byteOffset": 126936, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4683": { - "bufferView": "bufferView_14917", - "byteOffset": 1078416, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_4685": { - "bufferView": "bufferView_14917", - "byteOffset": 1081200, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_4702": { - "bufferView": "bufferView_14916", - "byteOffset": 127512, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_4704": { - "bufferView": "bufferView_14917", - "byteOffset": 1083984, - "byteStride": 12, - "count": 232, - "max": [ - 5.7624, - 28.7988, - 5.76 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4706": { - "bufferView": "bufferView_14917", - "byteOffset": 1086768, - "byteStride": 12, - "count": 232, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4722": { - "bufferView": "bufferView_14916", - "byteOffset": 128856, - "byteStride": 0, - "count": 2352, - "type": 5123 - }, - "accessor_4724": { - "bufferView": "bufferView_14917", - "byteOffset": 1095120, - "byteStride": 12, - "count": 2040, - "max": [ - 8.64, - 9.6024, - 8.6412 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4726": { - "bufferView": "bufferView_14917", - "byteOffset": 1119600, - "byteStride": 12, - "count": 2040, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4742": { - "bufferView": "bufferView_14916", - "byteOffset": 133560, - "byteStride": 0, - "count": 3756, - "type": 5123 - }, - "accessor_4744": { - "bufferView": "bufferView_14917", - "byteOffset": 1144080, - "byteStride": 12, - "count": 1806, - "max": [ - 9.6, - 28.8, - 16.32 - ], - "min": [ - 0, - 0, - 4.8 - ], - "type": 35665 - }, - "accessor_4746": { - "bufferView": "bufferView_14917", - "byteOffset": 1165752, - "byteStride": 12, - "count": 1806, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4762": { - "bufferView": "bufferView_14916", - "byteOffset": 141648, - "byteStride": 0, - "count": 1056, - "type": 5123 - }, - "accessor_4764": { - "bufferView": "bufferView_14917", - "byteOffset": 1192992, - "byteStride": 12, - "count": 644, - "max": [ - 7.68, - 7.68, - 4.8 - ], - "min": [ - 1.92, - 1.92, - 0 - ], - "type": 35665 - }, - "accessor_4766": { - "bufferView": "bufferView_14917", - "byteOffset": 1200720, - "byteStride": 12, - "count": 644, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4782": { - "bufferView": "bufferView_14916", - "byteOffset": 143760, - "byteStride": 0, - "count": 1056, - "type": 5123 - }, - "accessor_4784": { - "bufferView": "bufferView_14917", - "byteOffset": 1208448, - "byteStride": 12, - "count": 584, - "max": [ - 7.68, - 7.68, - 21.12 - ], - "min": [ - 1.92, - 1.92, - 16.32 - ], - "type": 35665 - }, - "accessor_4786": { - "bufferView": "bufferView_14917", - "byteOffset": 1215456, - "byteStride": 12, - "count": 584, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4802": { - "bufferView": "bufferView_14916", - "byteOffset": 145872, - "byteStride": 0, - "count": 2352, - "type": 5123 - }, - "accessor_4804": { - "bufferView": "bufferView_14917", - "byteOffset": 1222464, - "byteStride": 12, - "count": 2040, - "max": [ - 8.64, - 9.6024, - 8.6412 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4806": { - "bufferView": "bufferView_14917", - "byteOffset": 1246944, - "byteStride": 12, - "count": 2040, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_481": { - "bufferView": "bufferView_14916", - "byteOffset": 128280, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_4822": { - "bufferView": "bufferView_14916", - "byteOffset": 150576, - "byteStride": 0, - "count": 384, - "type": 5123 - }, - "accessor_4824": { - "bufferView": "bufferView_14917", - "byteOffset": 1271424, - "byteStride": 12, - "count": 232, - "max": [ - 5.7624, - 28.7988, - 5.76 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4826": { - "bufferView": "bufferView_14917", - "byteOffset": 1274208, - "byteStride": 12, - "count": 232, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_483": { - "bufferView": "bufferView_14917", - "byteOffset": 1089552, - "byteStride": 12, - "count": 232, - "max": [ - 78.7203, - 6.7198, - 2.8826 - ], - "min": [ - 74.8791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_4842": { - "bufferView": "bufferView_14916", - "byteOffset": 151344, - "byteStride": 0, - "count": 264, - "type": 5123 - }, - "accessor_4844": { - "bufferView": "bufferView_14917", - "byteOffset": 1276992, - "byteStride": 12, - "count": 144, - "max": [ - 19.1976, - 19.1976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4846": { - "bufferView": "bufferView_14917", - "byteOffset": 1278720, - "byteStride": 12, - "count": 144, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_485": { - "bufferView": "bufferView_14917", - "byteOffset": 1092336, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_4862": { - "bufferView": "bufferView_14916", - "byteOffset": 151872, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_4864": { - "bufferView": "bufferView_14917", - "byteOffset": 1280448, - "byteStride": 12, - "count": 431, - "max": [ - 13.4388, - 13.4388, - 1.92 - ], - "min": [ - 5.7588, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_4866": { - "bufferView": "bufferView_14917", - "byteOffset": 1285620, - "byteStride": 12, - "count": 431, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_4882": { - "bufferView": "bufferView_14916", - "byteOffset": 153024, - "byteStride": 0, - "count": 3192, - "type": 5123 - }, - "accessor_4884": { - "bufferView": "bufferView_14917", - "byteOffset": 1290792, - "byteStride": 12, - "count": 2057, - "max": [ - 7.6812, - 19.2, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4886": { - "bufferView": "bufferView_14917", - "byteOffset": 1315476, - "byteStride": 12, - "count": 2057, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4902": { - "bufferView": "bufferView_14916", - "byteOffset": 159864, - "byteStride": 0, - "count": 3192, - "type": 5123 - }, - "accessor_4904": { - "bufferView": "bufferView_14917", - "byteOffset": 1345152, - "byteStride": 12, - "count": 2057, - "max": [ - 7.6812, - 19.2, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4906": { - "bufferView": "bufferView_14917", - "byteOffset": 1369836, - "byteStride": 12, - "count": 2057, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4922": { - "bufferView": "bufferView_14916", - "byteOffset": 166248, - "byteStride": 0, - "count": 2880, - "type": 5123 - }, - "accessor_4924": { - "bufferView": "bufferView_14917", - "byteOffset": 1394520, - "byteStride": 12, - "count": 1584, - "max": [ - 19.2, - 7.68, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4926": { - "bufferView": "bufferView_14917", - "byteOffset": 1413528, - "byteStride": 12, - "count": 1584, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4942": { - "bufferView": "bufferView_14916", - "byteOffset": 172008, - "byteStride": 0, - "count": 2880, - "type": 5123 - }, - "accessor_4944": { - "bufferView": "bufferView_14917", - "byteOffset": 1432536, - "byteStride": 12, - "count": 1584, - "max": [ - 19.2, - 7.68, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4946": { - "bufferView": "bufferView_14917", - "byteOffset": 1451544, - "byteStride": 12, - "count": 1584, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_4974": { - "bufferView": "bufferView_14916", - "byteOffset": 177768, - "byteStride": 0, - "count": 1587, - "type": 5123 - }, - "accessor_4977": { - "bufferView": "bufferView_14916", - "byteOffset": 180942, - "byteStride": 0, - "count": 1587, - "type": 5123 - }, - "accessor_4979": { - "bufferView": "bufferView_14917", - "byteOffset": 1470552, - "byteStride": 12, - "count": 2805, - "max": [ - 7.68, - 7.6812, - 19.2036 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_4981": { - "bufferView": "bufferView_14917", - "byteOffset": 1504212, - "byteStride": 12, - "count": 2805, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5009": { - "bufferView": "bufferView_14916", - "byteOffset": 184116, - "byteStride": 0, - "count": 1587, - "type": 5123 - }, - "accessor_501": { - "bufferView": "bufferView_14916", - "byteOffset": 159408, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_5012": { - "bufferView": "bufferView_14916", - "byteOffset": 187290, - "byteStride": 0, - "count": 1587, - "type": 5123 - }, - "accessor_5014": { - "bufferView": "bufferView_14917", - "byteOffset": 1537872, - "byteStride": 12, - "count": 2805, - "max": [ - 7.68, - 7.6812, - 19.2036 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5016": { - "bufferView": "bufferView_14917", - "byteOffset": 1571532, - "byteStride": 12, - "count": 2805, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_503": { - "bufferView": "bufferView_14917", - "byteOffset": 1340160, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_5032": { - "bufferView": "bufferView_14916", - "byteOffset": 190464, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5034": { - "bufferView": "bufferView_14917", - "byteOffset": 1605192, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5036": { - "bufferView": "bufferView_14917", - "byteOffset": 1607664, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_505": { - "bufferView": "bufferView_14917", - "byteOffset": 1342656, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_5052": { - "bufferView": "bufferView_14916", - "byteOffset": 191040, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5054": { - "bufferView": "bufferView_14917", - "byteOffset": 1610136, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_5056": { - "bufferView": "bufferView_14917", - "byteOffset": 1614888, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_5072": { - "bufferView": "bufferView_14916", - "byteOffset": 192192, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5074": { - "bufferView": "bufferView_14917", - "byteOffset": 1619640, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5076": { - "bufferView": "bufferView_14917", - "byteOffset": 1622064, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5092": { - "bufferView": "bufferView_14916", - "byteOffset": 192768, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5094": { - "bufferView": "bufferView_14917", - "byteOffset": 1624488, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5096": { - "bufferView": "bufferView_14917", - "byteOffset": 1626960, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5112": { - "bufferView": "bufferView_14916", - "byteOffset": 194496, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5114": { - "bufferView": "bufferView_14917", - "byteOffset": 1637112, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5116": { - "bufferView": "bufferView_14917", - "byteOffset": 1639536, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5132": { - "bufferView": "bufferView_14916", - "byteOffset": 195072, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_5134": { - "bufferView": "bufferView_14917", - "byteOffset": 1641960, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5136": { - "bufferView": "bufferView_14917", - "byteOffset": 1643112, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5157": { - "bufferView": "bufferView_14916", - "byteOffset": 195408, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5159": { - "bufferView": "bufferView_14917", - "byteOffset": 1644264, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5161": { - "bufferView": "bufferView_14917", - "byteOffset": 1646736, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5177": { - "bufferView": "bufferView_14916", - "byteOffset": 195984, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5179": { - "bufferView": "bufferView_14917", - "byteOffset": 1649208, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_5181": { - "bufferView": "bufferView_14917", - "byteOffset": 1653960, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_5197": { - "bufferView": "bufferView_14916", - "byteOffset": 197136, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5199": { - "bufferView": "bufferView_14917", - "byteOffset": 1658712, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5201": { - "bufferView": "bufferView_14917", - "byteOffset": 1661136, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_521": { - "bufferView": "bufferView_14916", - "byteOffset": 193344, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5217": { - "bufferView": "bufferView_14916", - "byteOffset": 197712, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5219": { - "bufferView": "bufferView_14917", - "byteOffset": 1663560, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5221": { - "bufferView": "bufferView_14917", - "byteOffset": 1666032, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_523": { - "bufferView": "bufferView_14917", - "byteOffset": 1629432, - "byteStride": 12, - "count": 320, - "max": [ - 113.28, - 7.686, - 13.4445 - ], - "min": [ - 107.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_5237": { - "bufferView": "bufferView_14916", - "byteOffset": 199440, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5239": { - "bufferView": "bufferView_14917", - "byteOffset": 1676184, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5241": { - "bufferView": "bufferView_14917", - "byteOffset": 1678608, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_525": { - "bufferView": "bufferView_14917", - "byteOffset": 1633272, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_5257": { - "bufferView": "bufferView_14916", - "byteOffset": 200016, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_5259": { - "bufferView": "bufferView_14917", - "byteOffset": 1681032, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5261": { - "bufferView": "bufferView_14917", - "byteOffset": 1682184, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5282": { - "bufferView": "bufferView_14916", - "byteOffset": 200352, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5284": { - "bufferView": "bufferView_14917", - "byteOffset": 1683336, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5286": { - "bufferView": "bufferView_14917", - "byteOffset": 1685808, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5302": { - "bufferView": "bufferView_14916", - "byteOffset": 200928, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5304": { - "bufferView": "bufferView_14917", - "byteOffset": 1688280, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_5306": { - "bufferView": "bufferView_14917", - "byteOffset": 1693032, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_5322": { - "bufferView": "bufferView_14916", - "byteOffset": 202080, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5324": { - "bufferView": "bufferView_14917", - "byteOffset": 1697784, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5326": { - "bufferView": "bufferView_14917", - "byteOffset": 1700208, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5342": { - "bufferView": "bufferView_14916", - "byteOffset": 202656, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5344": { - "bufferView": "bufferView_14917", - "byteOffset": 1702632, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5346": { - "bufferView": "bufferView_14917", - "byteOffset": 1705104, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5362": { - "bufferView": "bufferView_14916", - "byteOffset": 203232, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5364": { - "bufferView": "bufferView_14917", - "byteOffset": 1707576, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5366": { - "bufferView": "bufferView_14917", - "byteOffset": 1710000, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5382": { - "bufferView": "bufferView_14916", - "byteOffset": 204384, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_5384": { - "bufferView": "bufferView_14917", - "byteOffset": 1717992, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5386": { - "bufferView": "bufferView_14917", - "byteOffset": 1719144, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5407": { - "bufferView": "bufferView_14916", - "byteOffset": 204720, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5409": { - "bufferView": "bufferView_14917", - "byteOffset": 1720296, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_541": { - "bufferView": "bufferView_14916", - "byteOffset": 198288, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5411": { - "bufferView": "bufferView_14917", - "byteOffset": 1722768, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5427": { - "bufferView": "bufferView_14916", - "byteOffset": 205296, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5429": { - "bufferView": "bufferView_14917", - "byteOffset": 1725240, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_543": { - "bufferView": "bufferView_14917", - "byteOffset": 1668504, - "byteStride": 12, - "count": 320, - "max": [ - 94.08, - 7.686, - 13.4445 - ], - "min": [ - 88.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_5431": { - "bufferView": "bufferView_14917", - "byteOffset": 1729992, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_5447": { - "bufferView": "bufferView_14916", - "byteOffset": 206448, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5449": { - "bufferView": "bufferView_14917", - "byteOffset": 1734744, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_545": { - "bufferView": "bufferView_14917", - "byteOffset": 1672344, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_5451": { - "bufferView": "bufferView_14917", - "byteOffset": 1737168, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5467": { - "bufferView": "bufferView_14916", - "byteOffset": 207024, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5469": { - "bufferView": "bufferView_14917", - "byteOffset": 1739592, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5471": { - "bufferView": "bufferView_14917", - "byteOffset": 1742064, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5487": { - "bufferView": "bufferView_14916", - "byteOffset": 207600, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5489": { - "bufferView": "bufferView_14917", - "byteOffset": 1744536, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5491": { - "bufferView": "bufferView_14917", - "byteOffset": 1746960, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5507": { - "bufferView": "bufferView_14916", - "byteOffset": 208632, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_5509": { - "bufferView": "bufferView_14917", - "byteOffset": 1754376, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5511": { - "bufferView": "bufferView_14917", - "byteOffset": 1755528, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5532": { - "bufferView": "bufferView_14916", - "byteOffset": 208968, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5534": { - "bufferView": "bufferView_14917", - "byteOffset": 1756680, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5536": { - "bufferView": "bufferView_14917", - "byteOffset": 1759152, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5552": { - "bufferView": "bufferView_14916", - "byteOffset": 209544, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5554": { - "bufferView": "bufferView_14917", - "byteOffset": 1761624, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_5556": { - "bufferView": "bufferView_14917", - "byteOffset": 1766376, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_5572": { - "bufferView": "bufferView_14916", - "byteOffset": 210696, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5574": { - "bufferView": "bufferView_14917", - "byteOffset": 1771128, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_5576": { - "bufferView": "bufferView_14917", - "byteOffset": 1773552, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5592": { - "bufferView": "bufferView_14916", - "byteOffset": 211272, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5594": { - "bufferView": "bufferView_14917", - "byteOffset": 1775976, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5596": { - "bufferView": "bufferView_14917", - "byteOffset": 1778448, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_56": { - "bufferView": "bufferView_14916", - "byteOffset": 141072, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_561": { - "bufferView": "bufferView_14916", - "byteOffset": 203808, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5612": { - "bufferView": "bufferView_14916", - "byteOffset": 211848, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5614": { - "bufferView": "bufferView_14917", - "byteOffset": 1780920, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5616": { - "bufferView": "bufferView_14917", - "byteOffset": 1783344, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_563": { - "bufferView": "bufferView_14917", - "byteOffset": 1712424, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_5632": { - "bufferView": "bufferView_14916", - "byteOffset": 212424, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_5634": { - "bufferView": "bufferView_14917", - "byteOffset": 1785768, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5636": { - "bufferView": "bufferView_14917", - "byteOffset": 1786920, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_565": { - "bufferView": "bufferView_14917", - "byteOffset": 1715208, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_5657": { - "bufferView": "bufferView_14916", - "byteOffset": 213912, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5659": { - "bufferView": "bufferView_14917", - "byteOffset": 1795752, - "byteStride": 12, - "count": 456, - "max": [ - 7.68095, - 7.68645, - 13.4464 - ], - "min": [ - 1.92095, - 1.92515, - 11.5237 - ], - "type": 35665 - }, - "accessor_5661": { - "bufferView": "bufferView_14917", - "byteOffset": 1801224, - "byteStride": 12, - "count": 456, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_5677": { - "bufferView": "bufferView_14916", - "byteOffset": 215064, - "byteStride": 0, - "count": 3654, - "type": 5123 - }, - "accessor_5679": { - "bufferView": "bufferView_14917", - "byteOffset": 1806696, - "byteStride": 12, - "count": 3121, - "max": [ - 38.4007, - 9.613, - 11.5277 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5681": { - "bufferView": "bufferView_14917", - "byteOffset": 1844148, - "byteStride": 12, - "count": 3121, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5697": { - "bufferView": "bufferView_14916", - "byteOffset": 222372, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5699": { - "bufferView": "bufferView_14917", - "byteOffset": 1881600, - "byteStride": 12, - "count": 464, - "max": [ - 26.881, - 7.69145, - 13.4452 - ], - "min": [ - 21.1209, - 1.93015, - 11.5219 - ], - "type": 35665 - }, - "accessor_5701": { - "bufferView": "bufferView_14917", - "byteOffset": 1887168, - "byteStride": 12, - "count": 464, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_5717": { - "bufferView": "bufferView_14916", - "byteOffset": 223524, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5719": { - "bufferView": "bufferView_14917", - "byteOffset": 1892736, - "byteStride": 12, - "count": 232, - "max": [ - 30.721, - 6.72765, - 2.88455 - ], - "min": [ - 26.8798, - 2.8869, - 0.0019495 - ], - "type": 35665 - }, - "accessor_5721": { - "bufferView": "bufferView_14917", - "byteOffset": 1895520, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_5737": { - "bufferView": "bufferView_14916", - "byteOffset": 224100, - "byteStride": 0, - "count": 1176, - "type": 5123 - }, - "accessor_5739": { - "bufferView": "bufferView_14917", - "byteOffset": 1898304, - "byteStride": 12, - "count": 1032, - "max": [ - 23.0407, - 9.60835, - 10.5665 - ], - "min": [ - 15.3576, - 0.0047493, - 2.8824 - ], - "type": 35665 - }, - "accessor_5741": { - "bufferView": "bufferView_14917", - "byteOffset": 1910688, - "byteStride": 12, - "count": 1032, - "max": [ - 0.980948, - 1, - 0.980887 - ], - "min": [ - -0.980948, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_5757": { - "bufferView": "bufferView_14916", - "byteOffset": 226452, - "byteStride": 0, - "count": 216, - "type": 5123 - }, - "accessor_5759": { - "bufferView": "bufferView_14917", - "byteOffset": 1923072, - "byteStride": 12, - "count": 204, - "max": [ - 23.042, - 7.6889, - 9.6052 - ], - "min": [ - 15.3587, - 1.92355, - 2.8825 - ], - "type": 35665 - }, - "accessor_5761": { - "bufferView": "bufferView_14917", - "byteOffset": 1925520, - "byteStride": 12, - "count": 204, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_5777": { - "bufferView": "bufferView_14916", - "byteOffset": 228036, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5779": { - "bufferView": "bufferView_14917", - "byteOffset": 1935648, - "byteStride": 12, - "count": 459, - "max": [ - 36.4809, - 7.69335, - 13.444 - ], - "min": [ - 30.721, - 1.93325, - 11.5213 - ], - "type": 35665 - }, - "accessor_5781": { - "bufferView": "bufferView_14917", - "byteOffset": 1941156, - "byteStride": 12, - "count": 459, - "max": [ - 0.981, - 0.98106, - 1 - ], - "min": [ - -0.981, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_5797": { - "bufferView": "bufferView_14916", - "byteOffset": 229188, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_5799": { - "bufferView": "bufferView_14917", - "byteOffset": 1946664, - "byteStride": 12, - "count": 472, - "max": [ - 17.2809, - 7.68835, - 13.4458 - ], - "min": [ - 11.5209, - 1.92825, - 11.5225 - ], - "type": 35665 - }, - "accessor_58": { - "bufferView": "bufferView_14917", - "byteOffset": 1187424, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_5801": { - "bufferView": "bufferView_14917", - "byteOffset": 1952328, - "byteStride": 12, - "count": 472, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_581": { - "bufferView": "bufferView_14916", - "byteOffset": 208176, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_5817": { - "bufferView": "bufferView_14916", - "byteOffset": 230340, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5819": { - "bufferView": "bufferView_14917", - "byteOffset": 1957992, - "byteStride": 12, - "count": 232, - "max": [ - 11.5234, - 6.72265, - 2.88575 - ], - "min": [ - 7.68215, - 2.8819, - 0.003151 - ], - "type": 35665 - }, - "accessor_5821": { - "bufferView": "bufferView_14917", - "byteOffset": 1960776, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_583": { - "bufferView": "bufferView_14917", - "byteOffset": 1749384, - "byteStride": 12, - "count": 208, - "max": [ - 61.4413, - 7.68415, - 9.60325 - ], - "min": [ - 53.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_5837": { - "bufferView": "bufferView_14916", - "byteOffset": 230916, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5839": { - "bufferView": "bufferView_14917", - "byteOffset": 1963560, - "byteStride": 12, - "count": 232, - "max": [ - 21.121, - 6.72455, - 2.88455 - ], - "min": [ - 17.2798, - 2.8838, - 0.0019507 - ], - "type": 35665 - }, - "accessor_5841": { - "bufferView": "bufferView_14917", - "byteOffset": 1966344, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_585": { - "bufferView": "bufferView_14917", - "byteOffset": 1751880, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_5859": { - "bufferView": "bufferView_14916", - "byteOffset": 231492, - "byteStride": 0, - "count": 4560, - "type": 5123 - }, - "accessor_5861": { - "bufferView": "bufferView_14917", - "byteOffset": 1969128, - "byteStride": 12, - "count": 1454, - "max": [ - 19.2, - 19.2, - 13.44 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5863": { - "bufferView": "bufferView_14917", - "byteOffset": 1986576, - "byteStride": 12, - "count": 1454, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5879": { - "bufferView": "bufferView_14916", - "byteOffset": 240612, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5881": { - "bufferView": "bufferView_14917", - "byteOffset": 2004024, - "byteStride": 12, - "count": 106, - "max": [ - 7.68, - 17.28, - 13.44 - ], - "min": [ - 1.92, - 11.52, - 11.52 - ], - "type": 35665 - }, - "accessor_5883": { - "bufferView": "bufferView_14917", - "byteOffset": 2005296, - "byteStride": 12, - "count": 106, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5899": { - "bufferView": "bufferView_14916", - "byteOffset": 241188, - "byteStride": 0, - "count": 4560, - "type": 5123 - }, - "accessor_5901": { - "bufferView": "bufferView_14917", - "byteOffset": 2006568, - "byteStride": 12, - "count": 1454, - "max": [ - 19.2, - 19.2, - 13.44 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5903": { - "bufferView": "bufferView_14917", - "byteOffset": 2024016, - "byteStride": 12, - "count": 1454, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5919": { - "bufferView": "bufferView_14916", - "byteOffset": 250308, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5921": { - "bufferView": "bufferView_14917", - "byteOffset": 2041464, - "byteStride": 12, - "count": 106, - "max": [ - 7.68, - 17.28, - 13.44 - ], - "min": [ - 1.92, - 11.52, - 11.52 - ], - "type": 35665 - }, - "accessor_5923": { - "bufferView": "bufferView_14917", - "byteOffset": 2042736, - "byteStride": 12, - "count": 106, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5939": { - "bufferView": "bufferView_14916", - "byteOffset": 250884, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5941": { - "bufferView": "bufferView_14917", - "byteOffset": 2044008, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_5943": { - "bufferView": "bufferView_14917", - "byteOffset": 2046624, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5959": { - "bufferView": "bufferView_14916", - "byteOffset": 252036, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_5961": { - "bufferView": "bufferView_14917", - "byteOffset": 2054808, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_5963": { - "bufferView": "bufferView_14917", - "byteOffset": 2056344, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_5979": { - "bufferView": "bufferView_14916", - "byteOffset": 252588, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_5981": { - "bufferView": "bufferView_14917", - "byteOffset": 2057880, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_5983": { - "bufferView": "bufferView_14917", - "byteOffset": 2060160, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_5999": { - "bufferView": "bufferView_14916", - "byteOffset": 253164, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_60": { - "bufferView": "bufferView_14917", - "byteOffset": 1190208, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6001": { - "bufferView": "bufferView_14917", - "byteOffset": 2062440, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6003": { - "bufferView": "bufferView_14917", - "byteOffset": 2065200, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_601": { - "bufferView": "bufferView_14916", - "byteOffset": 212760, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6019": { - "bufferView": "bufferView_14916", - "byteOffset": 253908, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6021": { - "bufferView": "bufferView_14917", - "byteOffset": 2067960, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_6023": { - "bufferView": "bufferView_14917", - "byteOffset": 2070576, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_603": { - "bufferView": "bufferView_14917", - "byteOffset": 1788072, - "byteStride": 12, - "count": 320, - "max": [ - 65.28, - 7.686, - 13.4445 - ], - "min": [ - 59.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6039": { - "bufferView": "bufferView_14916", - "byteOffset": 254484, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_6041": { - "bufferView": "bufferView_14917", - "byteOffset": 2073192, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_6043": { - "bufferView": "bufferView_14917", - "byteOffset": 2074728, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_605": { - "bufferView": "bufferView_14917", - "byteOffset": 1791912, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6059": { - "bufferView": "bufferView_14916", - "byteOffset": 255036, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6061": { - "bufferView": "bufferView_14917", - "byteOffset": 2076264, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6063": { - "bufferView": "bufferView_14917", - "byteOffset": 2078544, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6079": { - "bufferView": "bufferView_14916", - "byteOffset": 255612, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_6081": { - "bufferView": "bufferView_14917", - "byteOffset": 2080824, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6083": { - "bufferView": "bufferView_14917", - "byteOffset": 2083584, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6099": { - "bufferView": "bufferView_14916", - "byteOffset": 256356, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6101": { - "bufferView": "bufferView_14917", - "byteOffset": 2086344, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_6103": { - "bufferView": "bufferView_14917", - "byteOffset": 2088960, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6119": { - "bufferView": "bufferView_14916", - "byteOffset": 256932, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_6121": { - "bufferView": "bufferView_14917", - "byteOffset": 2091576, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_6123": { - "bufferView": "bufferView_14917", - "byteOffset": 2093112, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_6139": { - "bufferView": "bufferView_14916", - "byteOffset": 257940, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6141": { - "bufferView": "bufferView_14917", - "byteOffset": 2099640, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6143": { - "bufferView": "bufferView_14917", - "byteOffset": 2101920, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6159": { - "bufferView": "bufferView_14916", - "byteOffset": 258516, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_6161": { - "bufferView": "bufferView_14917", - "byteOffset": 2104200, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6163": { - "bufferView": "bufferView_14917", - "byteOffset": 2106960, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6179": { - "bufferView": "bufferView_14916", - "byteOffset": 259260, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6181": { - "bufferView": "bufferView_14917", - "byteOffset": 2109720, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_6183": { - "bufferView": "bufferView_14917", - "byteOffset": 2112336, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_6199": { - "bufferView": "bufferView_14916", - "byteOffset": 259836, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_6201": { - "bufferView": "bufferView_14917", - "byteOffset": 2114952, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_6203": { - "bufferView": "bufferView_14917", - "byteOffset": 2116488, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_621": { - "bufferView": "bufferView_14916", - "byteOffset": 226884, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6219": { - "bufferView": "bufferView_14916", - "byteOffset": 260388, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6221": { - "bufferView": "bufferView_14917", - "byteOffset": 2118024, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6223": { - "bufferView": "bufferView_14917", - "byteOffset": 2120304, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_623": { - "bufferView": "bufferView_14917", - "byteOffset": 1927968, - "byteStride": 12, - "count": 320, - "max": [ - 84.48, - 7.686, - 13.4445 - ], - "min": [ - 78.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6239": { - "bufferView": "bufferView_14916", - "byteOffset": 260964, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_6241": { - "bufferView": "bufferView_14917", - "byteOffset": 2122584, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_6243": { - "bufferView": "bufferView_14917", - "byteOffset": 2125344, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_625": { - "bufferView": "bufferView_14917", - "byteOffset": 1931808, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6259": { - "bufferView": "bufferView_14916", - "byteOffset": 261708, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_6261": { - "bufferView": "bufferView_14917", - "byteOffset": 2128104, - "byteStride": 12, - "count": 5620, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_6263": { - "bufferView": "bufferView_14917", - "byteOffset": 2195544, - "byteStride": 12, - "count": 5620, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_6279": { - "bufferView": "bufferView_14916", - "byteOffset": 275724, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6281": { - "bufferView": "bufferView_14917", - "byteOffset": 2262984, - "byteStride": 12, - "count": 344, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6283": { - "bufferView": "bufferView_14917", - "byteOffset": 2267112, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6299": { - "bufferView": "bufferView_14916", - "byteOffset": 276876, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6301": { - "bufferView": "bufferView_14917", - "byteOffset": 2271240, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6303": { - "bufferView": "bufferView_14917", - "byteOffset": 2274024, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6319": { - "bufferView": "bufferView_14916", - "byteOffset": 277452, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6321": { - "bufferView": "bufferView_14917", - "byteOffset": 2276808, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6323": { - "bufferView": "bufferView_14917", - "byteOffset": 2279592, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6339": { - "bufferView": "bufferView_14916", - "byteOffset": 278604, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6341": { - "bufferView": "bufferView_14917", - "byteOffset": 2287944, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6343": { - "bufferView": "bufferView_14917", - "byteOffset": 2290728, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6359": { - "bufferView": "bufferView_14916", - "byteOffset": 279180, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6361": { - "bufferView": "bufferView_14917", - "byteOffset": 2293512, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6363": { - "bufferView": "bufferView_14917", - "byteOffset": 2296008, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6379": { - "bufferView": "bufferView_14916", - "byteOffset": 280212, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6381": { - "bufferView": "bufferView_14917", - "byteOffset": 2304072, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6383": { - "bufferView": "bufferView_14917", - "byteOffset": 2306856, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6399": { - "bufferView": "bufferView_14916", - "byteOffset": 280788, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6401": { - "bufferView": "bufferView_14917", - "byteOffset": 2309640, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6403": { - "bufferView": "bufferView_14917", - "byteOffset": 2312136, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_641": { - "bufferView": "bufferView_14916", - "byteOffset": 251460, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6419": { - "bufferView": "bufferView_14916", - "byteOffset": 281244, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6421": { - "bufferView": "bufferView_14917", - "byteOffset": 2314632, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6423": { - "bufferView": "bufferView_14917", - "byteOffset": 2317128, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_643": { - "bufferView": "bufferView_14917", - "byteOffset": 2049240, - "byteStride": 12, - "count": 232, - "max": [ - 88.3203, - 6.7198, - 2.8826 - ], - "min": [ - 84.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6439": { - "bufferView": "bufferView_14916", - "byteOffset": 281700, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6441": { - "bufferView": "bufferView_14917", - "byteOffset": 2319624, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6443": { - "bufferView": "bufferView_14917", - "byteOffset": 2323752, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_645": { - "bufferView": "bufferView_14917", - "byteOffset": 2052024, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6459": { - "bufferView": "bufferView_14916", - "byteOffset": 282852, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6461": { - "bufferView": "bufferView_14917", - "byteOffset": 2327880, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6463": { - "bufferView": "bufferView_14917", - "byteOffset": 2330376, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6479": { - "bufferView": "bufferView_14916", - "byteOffset": 283308, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6481": { - "bufferView": "bufferView_14917", - "byteOffset": 2332872, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6483": { - "bufferView": "bufferView_14917", - "byteOffset": 2335368, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6499": { - "bufferView": "bufferView_14916", - "byteOffset": 283764, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6501": { - "bufferView": "bufferView_14917", - "byteOffset": 2337864, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6503": { - "bufferView": "bufferView_14917", - "byteOffset": 2341992, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6519": { - "bufferView": "bufferView_14916", - "byteOffset": 284916, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6521": { - "bufferView": "bufferView_14917", - "byteOffset": 2346120, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6523": { - "bufferView": "bufferView_14917", - "byteOffset": 2350236, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6539": { - "bufferView": "bufferView_14916", - "byteOffset": 286644, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6541": { - "bufferView": "bufferView_14917", - "byteOffset": 2359920, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6543": { - "bufferView": "bufferView_14917", - "byteOffset": 2364048, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6559": { - "bufferView": "bufferView_14916", - "byteOffset": 287796, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6561": { - "bufferView": "bufferView_14917", - "byteOffset": 2368176, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6563": { - "bufferView": "bufferView_14917", - "byteOffset": 2370960, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6579": { - "bufferView": "bufferView_14916", - "byteOffset": 288372, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6581": { - "bufferView": "bufferView_14917", - "byteOffset": 2373744, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6583": { - "bufferView": "bufferView_14917", - "byteOffset": 2377872, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6604": { - "bufferView": "bufferView_14916", - "byteOffset": 289524, - "byteStride": 0, - "count": 7008, - "type": 5123 - }, - "accessor_6606": { - "bufferView": "bufferView_14917", - "byteOffset": 2382000, - "byteStride": 12, - "count": 5619, - "max": [ - 57.6, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_6608": { - "bufferView": "bufferView_14917", - "byteOffset": 2449428, - "byteStride": 12, - "count": 5619, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_661": { - "bufferView": "bufferView_14916", - "byteOffset": 257484, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6624": { - "bufferView": "bufferView_14916", - "byteOffset": 303540, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6626": { - "bufferView": "bufferView_14917", - "byteOffset": 2516856, - "byteStride": 12, - "count": 343, - "max": [ - 36.48, - 7.686, - 13.4445 - ], - "min": [ - 30.72, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6628": { - "bufferView": "bufferView_14917", - "byteOffset": 2520972, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_663": { - "bufferView": "bufferView_14917", - "byteOffset": 2094648, - "byteStride": 12, - "count": 208, - "max": [ - 90.2413, - 7.68415, - 9.60325 - ], - "min": [ - 82.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6644": { - "bufferView": "bufferView_14916", - "byteOffset": 304692, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6646": { - "bufferView": "bufferView_14917", - "byteOffset": 2525088, - "byteStride": 12, - "count": 232, - "max": [ - 30.7202, - 6.7198, - 2.8826 - ], - "min": [ - 26.879, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6648": { - "bufferView": "bufferView_14917", - "byteOffset": 2527872, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_665": { - "bufferView": "bufferView_14917", - "byteOffset": 2097144, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6664": { - "bufferView": "bufferView_14916", - "byteOffset": 305724, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6666": { - "bufferView": "bufferView_14917", - "byteOffset": 2535648, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6668": { - "bufferView": "bufferView_14917", - "byteOffset": 2538432, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6684": { - "bufferView": "bufferView_14916", - "byteOffset": 306300, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6686": { - "bufferView": "bufferView_14917", - "byteOffset": 2541216, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6688": { - "bufferView": "bufferView_14917", - "byteOffset": 2544000, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6704": { - "bufferView": "bufferView_14916", - "byteOffset": 306876, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6706": { - "bufferView": "bufferView_14917", - "byteOffset": 2546784, - "byteStride": 12, - "count": 208, - "max": [ - 42.2413, - 7.68415, - 9.60325 - ], - "min": [ - 34.558, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6708": { - "bufferView": "bufferView_14917", - "byteOffset": 2549280, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6724": { - "bufferView": "bufferView_14916", - "byteOffset": 307332, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6726": { - "bufferView": "bufferView_14917", - "byteOffset": 2551776, - "byteStride": 12, - "count": 232, - "max": [ - 21.1203, - 6.7198, - 2.8826 - ], - "min": [ - 17.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6728": { - "bufferView": "bufferView_14917", - "byteOffset": 2554560, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6744": { - "bufferView": "bufferView_14916", - "byteOffset": 307908, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6746": { - "bufferView": "bufferView_14917", - "byteOffset": 2557344, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6748": { - "bufferView": "bufferView_14917", - "byteOffset": 2559840, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6764": { - "bufferView": "bufferView_14916", - "byteOffset": 308364, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6766": { - "bufferView": "bufferView_14917", - "byteOffset": 2562336, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6768": { - "bufferView": "bufferView_14917", - "byteOffset": 2564832, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_6784": { - "bufferView": "bufferView_14916", - "byteOffset": 308820, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6786": { - "bufferView": "bufferView_14917", - "byteOffset": 2567328, - "byteStride": 12, - "count": 344, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6788": { - "bufferView": "bufferView_14917", - "byteOffset": 2571456, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6804": { - "bufferView": "bufferView_14916", - "byteOffset": 309972, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6806": { - "bufferView": "bufferView_14917", - "byteOffset": 2575584, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6808": { - "bufferView": "bufferView_14917", - "byteOffset": 2578080, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_681": { - "bufferView": "bufferView_14916", - "byteOffset": 278028, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6824": { - "bufferView": "bufferView_14916", - "byteOffset": 310428, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_6826": { - "bufferView": "bufferView_14917", - "byteOffset": 2580576, - "byteStride": 12, - "count": 208, - "max": [ - 23.0413, - 7.68415, - 9.60325 - ], - "min": [ - 15.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_6828": { - "bufferView": "bufferView_14917", - "byteOffset": 2583072, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_683": { - "bufferView": "bufferView_14917", - "byteOffset": 2282376, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6844": { - "bufferView": "bufferView_14916", - "byteOffset": 310884, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6846": { - "bufferView": "bufferView_14917", - "byteOffset": 2585568, - "byteStride": 12, - "count": 344, - "max": [ - 55.68, - 7.686, - 13.4445 - ], - "min": [ - 49.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6848": { - "bufferView": "bufferView_14917", - "byteOffset": 2589696, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_685": { - "bufferView": "bufferView_14917", - "byteOffset": 2285160, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6864": { - "bufferView": "bufferView_14916", - "byteOffset": 312612, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6866": { - "bufferView": "bufferView_14917", - "byteOffset": 2599392, - "byteStride": 12, - "count": 343, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6868": { - "bufferView": "bufferView_14917", - "byteOffset": 2603508, - "byteStride": 12, - "count": 343, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6884": { - "bufferView": "bufferView_14916", - "byteOffset": 313764, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6886": { - "bufferView": "bufferView_14917", - "byteOffset": 2607624, - "byteStride": 12, - "count": 344, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6888": { - "bufferView": "bufferView_14917", - "byteOffset": 2611752, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6904": { - "bufferView": "bufferView_14916", - "byteOffset": 314916, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_6906": { - "bufferView": "bufferView_14917", - "byteOffset": 2615880, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_6908": { - "bufferView": "bufferView_14917", - "byteOffset": 2618664, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_6924": { - "bufferView": "bufferView_14916", - "byteOffset": 315492, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6926": { - "bufferView": "bufferView_14917", - "byteOffset": 2621448, - "byteStride": 12, - "count": 344, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_6928": { - "bufferView": "bufferView_14917", - "byteOffset": 2625576, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_6949": { - "bufferView": "bufferView_14916", - "byteOffset": 316644, - "byteStride": 0, - "count": 4896, - "type": 5123 - }, - "accessor_6951": { - "bufferView": "bufferView_14917", - "byteOffset": 2629704, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_6953": { - "bufferView": "bufferView_14917", - "byteOffset": 2661264, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_6969": { - "bufferView": "bufferView_14916", - "byteOffset": 326436, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_6971": { - "bufferView": "bufferView_14917", - "byteOffset": 2692824, - "byteStride": 12, - "count": 364, - "max": [ - 7.6812, - 46.08, - 5.76 - ], - "min": [ - 1.9212, - 40.32, - 3.84 - ], - "type": 35665 - }, - "accessor_6973": { - "bufferView": "bufferView_14917", - "byteOffset": 2697192, - "byteStride": 12, - "count": 364, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_6989": { - "bufferView": "bufferView_14916", - "byteOffset": 327588, - "byteStride": 0, - "count": 1296, - "type": 5123 - }, - "accessor_6991": { - "bufferView": "bufferView_14917", - "byteOffset": 2701560, - "byteStride": 12, - "count": 894, - "max": [ - 9.6036, - 57.6, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_6993": { - "bufferView": "bufferView_14917", - "byteOffset": 2712288, - "byteStride": 12, - "count": 894, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7009": { - "bufferView": "bufferView_14916", - "byteOffset": 331332, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_701": { - "bufferView": "bufferView_14916", - "byteOffset": 286068, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7011": { - "bufferView": "bufferView_14917", - "byteOffset": 2730696, - "byteStride": 12, - "count": 888, - "max": [ - 9.6036, - 9.6, - 0.96 - ], - "min": [ - 0.0036, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7013": { - "bufferView": "bufferView_14917", - "byteOffset": 2741352, - "byteStride": 12, - "count": 888, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7029": { - "bufferView": "bufferView_14916", - "byteOffset": 333636, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_703": { - "bufferView": "bufferView_14917", - "byteOffset": 2354352, - "byteStride": 12, - "count": 232, - "max": [ - 107.52, - 6.7198, - 2.8826 - ], - "min": [ - 103.679, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_7031": { - "bufferView": "bufferView_14917", - "byteOffset": 2752008, - "byteStride": 12, - "count": 370, - "max": [ - 7.6836, - 17.28, - 5.76 - ], - "min": [ - 1.9236, - 11.52, - 3.84 - ], - "type": 35665 - }, - "accessor_7033": { - "bufferView": "bufferView_14917", - "byteOffset": 2756448, - "byteStride": 12, - "count": 370, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_7049": { - "bufferView": "bufferView_14916", - "byteOffset": 334824, - "byteStride": 0, - "count": 594, - "type": 5123 - }, - "accessor_705": { - "bufferView": "bufferView_14917", - "byteOffset": 2357136, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_7051": { - "bufferView": "bufferView_14917", - "byteOffset": 2760888, - "byteStride": 12, - "count": 358, - "max": [ - 7.6824, - 26.88, - 5.76 - ], - "min": [ - 1.9224, - 21.12, - 3.84 - ], - "type": 35665 - }, - "accessor_7053": { - "bufferView": "bufferView_14917", - "byteOffset": 2765184, - "byteStride": 12, - "count": 358, - "max": [ - 0.980744, - 0.980744, - 1 - ], - "min": [ - -0.980744, - -0.980744, - -1 - ], - "type": 35665 - }, - "accessor_7069": { - "bufferView": "bufferView_14916", - "byteOffset": 336012, - "byteStride": 0, - "count": 1152, - "type": 5123 - }, - "accessor_7071": { - "bufferView": "bufferView_14917", - "byteOffset": 2769480, - "byteStride": 12, - "count": 867, - "max": [ - 9.6, - 57.6, - 0.96 - ], - "min": [ - 0, - 48, - 0 - ], - "type": 35665 - }, - "accessor_7073": { - "bufferView": "bufferView_14917", - "byteOffset": 2779884, - "byteStride": 12, - "count": 867, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7089": { - "bufferView": "bufferView_14916", - "byteOffset": 338316, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_7091": { - "bufferView": "bufferView_14917", - "byteOffset": 2790288, - "byteStride": 12, - "count": 360, - "max": [ - 7.6812, - 36.48, - 5.76 - ], - "min": [ - 1.9212, - 30.72, - 3.84 - ], - "type": 35665 - }, - "accessor_7093": { - "bufferView": "bufferView_14917", - "byteOffset": 2794608, - "byteStride": 12, - "count": 360, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_7109": { - "bufferView": "bufferView_14916", - "byteOffset": 339468, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7111": { - "bufferView": "bufferView_14917", - "byteOffset": 2798928, - "byteStride": 12, - "count": 209, - "max": [ - 6.7224, - 21.12, - 1.92 - ], - "min": [ - 2.8824, - 17.28, - 0 - ], - "type": 35665 - }, - "accessor_7113": { - "bufferView": "bufferView_14917", - "byteOffset": 2801436, - "byteStride": 12, - "count": 209, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_7129": { - "bufferView": "bufferView_14916", - "byteOffset": 340044, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7131": { - "bufferView": "bufferView_14917", - "byteOffset": 2803944, - "byteStride": 12, - "count": 218, - "max": [ - 6.7224, - 30.72, - 1.92 - ], - "min": [ - 2.8824, - 26.88, - 0 - ], - "type": 35665 - }, - "accessor_7133": { - "bufferView": "bufferView_14917", - "byteOffset": 2806560, - "byteStride": 12, - "count": 218, - "max": [ - 0.98101, - 0.980765, - 1 - ], - "min": [ - -0.98101, - -0.980765, - -1 - ], - "type": 35665 - }, - "accessor_7149": { - "bufferView": "bufferView_14916", - "byteOffset": 340620, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7151": { - "bufferView": "bufferView_14917", - "byteOffset": 2809176, - "byteStride": 12, - "count": 225, - "max": [ - 6.7212, - 40.32, - 1.92 - ], - "min": [ - 2.8812, - 36.48, - 0 - ], - "type": 35665 - }, - "accessor_7153": { - "bufferView": "bufferView_14917", - "byteOffset": 2811876, - "byteStride": 12, - "count": 225, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_7173": { - "bufferView": "bufferView_14916", - "byteOffset": 341652, - "byteStride": 0, - "count": 4896, - "type": 5123 - }, - "accessor_7175": { - "bufferView": "bufferView_14917", - "byteOffset": 2819568, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7177": { - "bufferView": "bufferView_14917", - "byteOffset": 2851128, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7193": { - "bufferView": "bufferView_14916", - "byteOffset": 351444, - "byteStride": 0, - "count": 4896, - "type": 5123 - }, - "accessor_7195": { - "bufferView": "bufferView_14917", - "byteOffset": 2882688, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7197": { - "bufferView": "bufferView_14917", - "byteOffset": 2914248, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_721": { - "bufferView": "bufferView_14916", - "byteOffset": 305268, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_7213": { - "bufferView": "bufferView_14916", - "byteOffset": 361236, - "byteStride": 0, - "count": 4896, - "type": 5123 - }, - "accessor_7215": { - "bufferView": "bufferView_14917", - "byteOffset": 2945808, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7217": { - "bufferView": "bufferView_14917", - "byteOffset": 2977368, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_723": { - "bufferView": "bufferView_14917", - "byteOffset": 2530656, - "byteStride": 12, - "count": 208, - "max": [ - 109.441, - 7.68415, - 9.60325 - ], - "min": [ - 101.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_7233": { - "bufferView": "bufferView_14916", - "byteOffset": 371028, - "byteStride": 0, - "count": 312, - "type": 5123 - }, - "accessor_7235": { - "bufferView": "bufferView_14917", - "byteOffset": 3008928, - "byteStride": 12, - "count": 164, - "max": [ - 9.6, - 19.2, - 11.52 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7237": { - "bufferView": "bufferView_14917", - "byteOffset": 3010896, - "byteStride": 12, - "count": 164, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_725": { - "bufferView": "bufferView_14917", - "byteOffset": 2533152, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_7253": { - "bufferView": "bufferView_14916", - "byteOffset": 371652, - "byteStride": 0, - "count": 1320, - "type": 5123 - }, - "accessor_7255": { - "bufferView": "bufferView_14917", - "byteOffset": 3012864, - "byteStride": 12, - "count": 508, - "max": [ - 7.68, - 7.68, - 13.44 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7257": { - "bufferView": "bufferView_14917", - "byteOffset": 3018960, - "byteStride": 12, - "count": 508, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7273": { - "bufferView": "bufferView_14916", - "byteOffset": 374292, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7275": { - "bufferView": "bufferView_14917", - "byteOffset": 3025056, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 17.28, - 13.44 - ], - "min": [ - 1.92, - 11.52, - 11.52 - ], - "type": 35665 - }, - "accessor_7277": { - "bufferView": "bufferView_14917", - "byteOffset": 3027000, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7293": { - "bufferView": "bufferView_14916", - "byteOffset": 374868, - "byteStride": 0, - "count": 312, - "type": 5123 - }, - "accessor_7295": { - "bufferView": "bufferView_14917", - "byteOffset": 3028944, - "byteStride": 12, - "count": 164, - "max": [ - 9.6, - 19.2, - 11.52 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7297": { - "bufferView": "bufferView_14917", - "byteOffset": 3030912, - "byteStride": 12, - "count": 164, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7313": { - "bufferView": "bufferView_14916", - "byteOffset": 375492, - "byteStride": 0, - "count": 1320, - "type": 5123 - }, - "accessor_7315": { - "bufferView": "bufferView_14917", - "byteOffset": 3032880, - "byteStride": 12, - "count": 508, - "max": [ - 7.68, - 7.68, - 13.44 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7317": { - "bufferView": "bufferView_14917", - "byteOffset": 3038976, - "byteStride": 12, - "count": 508, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7333": { - "bufferView": "bufferView_14916", - "byteOffset": 379284, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7335": { - "bufferView": "bufferView_14917", - "byteOffset": 3052752, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 17.28, - 13.44 - ], - "min": [ - 1.92, - 11.52, - 11.52 - ], - "type": 35665 - }, - "accessor_7337": { - "bufferView": "bufferView_14917", - "byteOffset": 3054696, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7353": { - "bufferView": "bufferView_14916", - "byteOffset": 379860, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7355": { - "bufferView": "bufferView_14917", - "byteOffset": 3056640, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_7357": { - "bufferView": "bufferView_14917", - "byteOffset": 3059256, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_7373": { - "bufferView": "bufferView_14916", - "byteOffset": 380436, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_7375": { - "bufferView": "bufferView_14917", - "byteOffset": 3061872, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7377": { - "bufferView": "bufferView_14917", - "byteOffset": 3063408, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7393": { - "bufferView": "bufferView_14916", - "byteOffset": 380988, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7395": { - "bufferView": "bufferView_14917", - "byteOffset": 3064944, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_7397": { - "bufferView": "bufferView_14917", - "byteOffset": 3067224, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_741": { - "bufferView": "bufferView_14916", - "byteOffset": 312036, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7413": { - "bufferView": "bufferView_14916", - "byteOffset": 381564, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_7415": { - "bufferView": "bufferView_14917", - "byteOffset": 3069504, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_7417": { - "bufferView": "bufferView_14917", - "byteOffset": 3072264, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_743": { - "bufferView": "bufferView_14917", - "byteOffset": 2593824, - "byteStride": 12, - "count": 232, - "max": [ - 49.9202, - 6.7198, - 2.8826 - ], - "min": [ - 46.079, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_7433": { - "bufferView": "bufferView_14916", - "byteOffset": 382308, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7435": { - "bufferView": "bufferView_14917", - "byteOffset": 3075024, - "byteStride": 12, - "count": 218, - "max": [ - 11.5188, - 6.7188, - 1.92 - ], - "min": [ - 7.6788, - 2.8788, - 0 - ], - "type": 35665 - }, - "accessor_7437": { - "bufferView": "bufferView_14917", - "byteOffset": 3077640, - "byteStride": 12, - "count": 218, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_745": { - "bufferView": "bufferView_14917", - "byteOffset": 2596608, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_7453": { - "bufferView": "bufferView_14916", - "byteOffset": 382884, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_7455": { - "bufferView": "bufferView_14917", - "byteOffset": 3080256, - "byteStride": 12, - "count": 128, - "max": [ - 19.1976, - 9.5976, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7457": { - "bufferView": "bufferView_14917", - "byteOffset": 3081792, - "byteStride": 12, - "count": 128, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7473": { - "bufferView": "bufferView_14916", - "byteOffset": 383436, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7475": { - "bufferView": "bufferView_14917", - "byteOffset": 3083328, - "byteStride": 12, - "count": 190, - "max": [ - 17.2788, - 7.6788, - 5.76 - ], - "min": [ - 11.5188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_7477": { - "bufferView": "bufferView_14917", - "byteOffset": 3085608, - "byteStride": 12, - "count": 190, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_7493": { - "bufferView": "bufferView_14916", - "byteOffset": 384012, - "byteStride": 0, - "count": 372, - "type": 5123 - }, - "accessor_7495": { - "bufferView": "bufferView_14917", - "byteOffset": 3087888, - "byteStride": 12, - "count": 230, - "max": [ - 7.6788, - 7.6788, - 5.76 - ], - "min": [ - 1.9188, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_7497": { - "bufferView": "bufferView_14917", - "byteOffset": 3090648, - "byteStride": 12, - "count": 230, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_7513": { - "bufferView": "bufferView_14916", - "byteOffset": 384756, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_7515": { - "bufferView": "bufferView_14917", - "byteOffset": 3093408, - "byteStride": 12, - "count": 146, - "max": [ - 19.2, - 19.2, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7517": { - "bufferView": "bufferView_14917", - "byteOffset": 3095160, - "byteStride": 12, - "count": 146, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_7533": { - "bufferView": "bufferView_14916", - "byteOffset": 386460, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7535": { - "bufferView": "bufferView_14917", - "byteOffset": 3104592, - "byteStride": 12, - "count": 162, - "max": [ - 6.72, - 11.52, - 1.92 - ], - "min": [ - 2.88, - 7.68, - 0 - ], - "type": 35665 - }, - "accessor_7537": { - "bufferView": "bufferView_14917", - "byteOffset": 3106536, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_7553": { - "bufferView": "bufferView_14916", - "byteOffset": 387036, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7555": { - "bufferView": "bufferView_14917", - "byteOffset": 3108480, - "byteStride": 12, - "count": 162, - "max": [ - 17.28, - 7.68, - 5.76 - ], - "min": [ - 11.52, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7557": { - "bufferView": "bufferView_14917", - "byteOffset": 3110424, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7573": { - "bufferView": "bufferView_14916", - "byteOffset": 387612, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7575": { - "bufferView": "bufferView_14917", - "byteOffset": 3112368, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 17.28, - 5.76 - ], - "min": [ - 1.92, - 11.52, - 3.84 - ], - "type": 35665 - }, - "accessor_7577": { - "bufferView": "bufferView_14917", - "byteOffset": 3114312, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7593": { - "bufferView": "bufferView_14916", - "byteOffset": 388188, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7595": { - "bufferView": "bufferView_14917", - "byteOffset": 3116256, - "byteStride": 12, - "count": 162, - "max": [ - 11.52, - 6.72, - 1.92 - ], - "min": [ - 7.68, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_7597": { - "bufferView": "bufferView_14917", - "byteOffset": 3118200, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_76": { - "bufferView": "bufferView_14916", - "byteOffset": 279636, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_761": { - "bufferView": "bufferView_14916", - "byteOffset": 330180, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_7613": { - "bufferView": "bufferView_14916", - "byteOffset": 388764, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7615": { - "bufferView": "bufferView_14917", - "byteOffset": 3120144, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 7.68, - 5.76 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7617": { - "bufferView": "bufferView_14917", - "byteOffset": 3122088, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_763": { - "bufferView": "bufferView_14917", - "byteOffset": 2723016, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_7633": { - "bufferView": "bufferView_14916", - "byteOffset": 389340, - "byteStride": 0, - "count": 276, - "type": 5123 - }, - "accessor_7635": { - "bufferView": "bufferView_14917", - "byteOffset": 3124032, - "byteStride": 12, - "count": 146, - "max": [ - 19.2, - 19.2, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7637": { - "bufferView": "bufferView_14917", - "byteOffset": 3125784, - "byteStride": 12, - "count": 146, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_765": { - "bufferView": "bufferView_14917", - "byteOffset": 2726856, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_7653": { - "bufferView": "bufferView_14916", - "byteOffset": 389892, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7655": { - "bufferView": "bufferView_14917", - "byteOffset": 3127536, - "byteStride": 12, - "count": 162, - "max": [ - 6.72, - 11.52, - 1.92 - ], - "min": [ - 2.88, - 7.68, - 0 - ], - "type": 35665 - }, - "accessor_7657": { - "bufferView": "bufferView_14917", - "byteOffset": 3129480, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_7673": { - "bufferView": "bufferView_14916", - "byteOffset": 390468, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7675": { - "bufferView": "bufferView_14917", - "byteOffset": 3131424, - "byteStride": 12, - "count": 162, - "max": [ - 17.28, - 7.68, - 5.76 - ], - "min": [ - 11.52, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7677": { - "bufferView": "bufferView_14917", - "byteOffset": 3133368, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7693": { - "bufferView": "bufferView_14916", - "byteOffset": 391044, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7695": { - "bufferView": "bufferView_14917", - "byteOffset": 3135312, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 17.28, - 5.76 - ], - "min": [ - 1.92, - 11.52, - 3.84 - ], - "type": 35665 - }, - "accessor_7697": { - "bufferView": "bufferView_14917", - "byteOffset": 3137256, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7713": { - "bufferView": "bufferView_14916", - "byteOffset": 391620, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7715": { - "bufferView": "bufferView_14917", - "byteOffset": 3139200, - "byteStride": 12, - "count": 162, - "max": [ - 11.52, - 6.72, - 1.92 - ], - "min": [ - 7.68, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_7717": { - "bufferView": "bufferView_14917", - "byteOffset": 3141144, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_7733": { - "bufferView": "bufferView_14916", - "byteOffset": 392652, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7735": { - "bufferView": "bufferView_14917", - "byteOffset": 3148080, - "byteStride": 12, - "count": 162, - "max": [ - 7.68, - 7.68, - 5.76 - ], - "min": [ - 1.92, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_7737": { - "bufferView": "bufferView_14917", - "byteOffset": 3150024, - "byteStride": 12, - "count": 162, - "max": [ - 0.976187, - 0.976187, - 1 - ], - "min": [ - -0.976187, - -0.976187, - -1 - ], - "type": 35665 - }, - "accessor_7753": { - "bufferView": "bufferView_14916", - "byteOffset": 393228, - "byteStride": 0, - "count": 192, - "type": 5123 - }, - "accessor_7755": { - "bufferView": "bufferView_14917", - "byteOffset": 3151968, - "byteStride": 12, - "count": 188, - "max": [ - 22.3872, - 9.6048, - 14.7792 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7757": { - "bufferView": "bufferView_14917", - "byteOffset": 3154224, - "byteStride": 12, - "count": 188, - "max": [ - 0.866082, - 1, - 0.965935 - ], - "min": [ - -0.866082, - -1, - -0.965935 - ], - "type": 35665 - }, - "accessor_7773": { - "bufferView": "bufferView_14916", - "byteOffset": 393612, - "byteStride": 0, - "count": 1092, - "type": 5123 - }, - "accessor_7775": { - "bufferView": "bufferView_14917", - "byteOffset": 3156480, - "byteStride": 12, - "count": 984, - "max": [ - 23.6508, - 9.612, - 15.57 - ], - "min": [ - 0, - 0.0024, - 0.0036 - ], - "type": 35665 - }, - "accessor_7777": { - "bufferView": "bufferView_14917", - "byteOffset": 3168288, - "byteStride": 12, - "count": 984, - "max": [ - 0.997841, - 1, - 0.997841 - ], - "min": [ - -0.997841, - -1, - -0.997841 - ], - "type": 35665 - }, - "accessor_7793": { - "bufferView": "bufferView_14916", - "byteOffset": 395796, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_7795": { - "bufferView": "bufferView_14917", - "byteOffset": 3180096, - "byteStride": 12, - "count": 568, - "max": [ - 14.6328, - 7.686, - 13.632 - ], - "min": [ - 8.6844, - 1.926, - 9.0888 - ], - "type": 35665 - }, - "accessor_7797": { - "bufferView": "bufferView_14917", - "byteOffset": 3186912, - "byteStride": 12, - "count": 568, - "max": [ - 0.84964, - 0.981062, - 0.866805 - ], - "min": [ - -0.84964, - -0.981062, - -0.866805 - ], - "type": 35665 - }, - "accessor_78": { - "bufferView": "bufferView_14917", - "byteOffset": 2298504, - "byteStride": 12, - "count": 232, - "max": [ - 40.3203, - 6.7198, - 2.8826 - ], - "min": [ - 36.479, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_781": { - "bufferView": "bufferView_14916", - "byteOffset": 341196, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_7816": { - "bufferView": "bufferView_14916", - "byteOffset": 396948, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7818": { - "bufferView": "bufferView_14917", - "byteOffset": 3193728, - "byteStride": 12, - "count": 288, - "max": [ - 9.5328, - 55.6824, - 8.8272 - ], - "min": [ - 3.5844, - 49.9224, - 4.284 - ], - "type": 35665 - }, - "accessor_7820": { - "bufferView": "bufferView_14917", - "byteOffset": 3197184, - "byteStride": 12, - "count": 288, - "max": [ - 0.849584, - 0.980963, - 0.866274 - ], - "min": [ - -0.849584, - -0.980963, - -0.866274 - ], - "type": 35665 - }, - "accessor_783": { - "bufferView": "bufferView_14917", - "byteOffset": 2814576, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_7836": { - "bufferView": "bufferView_14916", - "byteOffset": 397524, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7838": { - "bufferView": "bufferView_14917", - "byteOffset": 3200640, - "byteStride": 12, - "count": 280, - "max": [ - 9.5376, - 46.0824, - 8.8272 - ], - "min": [ - 3.5892, - 40.3224, - 4.284 - ], - "type": 35665 - }, - "accessor_7840": { - "bufferView": "bufferView_14917", - "byteOffset": 3204000, - "byteStride": 12, - "count": 280, - "max": [ - 0.849613, - 0.980928, - 0.866315 - ], - "min": [ - -0.849613, - -0.980928, - -0.866315 - ], - "type": 35665 - }, - "accessor_785": { - "bufferView": "bufferView_14917", - "byteOffset": 2817072, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_7856": { - "bufferView": "bufferView_14916", - "byteOffset": 398100, - "byteStride": 0, - "count": 204, - "type": 5123 - }, - "accessor_7858": { - "bufferView": "bufferView_14917", - "byteOffset": 3207360, - "byteStride": 12, - "count": 156, - "max": [ - 10.2624, - 57.6036, - 8.124 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7860": { - "bufferView": "bufferView_14917", - "byteOffset": 3209232, - "byteStride": 12, - "count": 156, - "max": [ - 0.866081, - 1, - 0.86617 - ], - "min": [ - -0.866081, - -1, - -0.86617 - ], - "type": 35665 - }, - "accessor_7876": { - "bufferView": "bufferView_14916", - "byteOffset": 399084, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7878": { - "bufferView": "bufferView_14917", - "byteOffset": 3216672, - "byteStride": 12, - "count": 284, - "max": [ - 9.558, - 7.6824, - 8.8272 - ], - "min": [ - 3.6096, - 1.9224, - 4.284 - ], - "type": 35665 - }, - "accessor_7880": { - "bufferView": "bufferView_14917", - "byteOffset": 3220080, - "byteStride": 12, - "count": 284, - "max": [ - 0.849613, - 0.980928, - 0.866315 - ], - "min": [ - -0.849613, - -0.980928, - -0.866315 - ], - "type": 35665 - }, - "accessor_7896": { - "bufferView": "bufferView_14916", - "byteOffset": 399660, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7898": { - "bufferView": "bufferView_14917", - "byteOffset": 3223488, - "byteStride": 12, - "count": 284, - "max": [ - 9.5484, - 26.8824, - 8.8272 - ], - "min": [ - 3.6, - 21.1224, - 4.284 - ], - "type": 35665 - }, - "accessor_7900": { - "bufferView": "bufferView_14917", - "byteOffset": 3226896, - "byteStride": 12, - "count": 284, - "max": [ - 0.849584, - 0.980963, - 0.866274 - ], - "min": [ - -0.849584, - -0.980963, - -0.866274 - ], - "type": 35665 - }, - "accessor_7916": { - "bufferView": "bufferView_14916", - "byteOffset": 400236, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7918": { - "bufferView": "bufferView_14917", - "byteOffset": 3230304, - "byteStride": 12, - "count": 288, - "max": [ - 9.5532, - 17.2824, - 8.8272 - ], - "min": [ - 3.6048, - 11.5224, - 4.284 - ], - "type": 35665 - }, - "accessor_7920": { - "bufferView": "bufferView_14917", - "byteOffset": 3233760, - "byteStride": 12, - "count": 288, - "max": [ - 0.849584, - 0.980963, - 0.866274 - ], - "min": [ - -0.849584, - -0.980963, - -0.866274 - ], - "type": 35665 - }, - "accessor_7936": { - "bufferView": "bufferView_14916", - "byteOffset": 400812, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_7938": { - "bufferView": "bufferView_14917", - "byteOffset": 3237216, - "byteStride": 12, - "count": 284, - "max": [ - 9.5436, - 36.4824, - 8.8272 - ], - "min": [ - 3.5952, - 30.7224, - 4.284 - ], - "type": 35665 - }, - "accessor_7940": { - "bufferView": "bufferView_14917", - "byteOffset": 3240624, - "byteStride": 12, - "count": 284, - "max": [ - 0.849736, - 0.980928, - 0.866315 - ], - "min": [ - -0.849736, - -0.980928, - -0.866315 - ], - "type": 35665 - }, - "accessor_7956": { - "bufferView": "bufferView_14916", - "byteOffset": 401388, - "byteStride": 0, - "count": 192, - "type": 5123 - }, - "accessor_7958": { - "bufferView": "bufferView_14917", - "byteOffset": 3244032, - "byteStride": 12, - "count": 188, - "max": [ - 22.3872, - 9.6048, - 14.7792 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_7960": { - "bufferView": "bufferView_14917", - "byteOffset": 3246288, - "byteStride": 12, - "count": 188, - "max": [ - 0.866082, - 1, - 0.965935 - ], - "min": [ - -0.866082, - -1, - -0.965935 - ], - "type": 35665 - }, - "accessor_7976": { - "bufferView": "bufferView_14916", - "byteOffset": 401772, - "byteStride": 0, - "count": 1092, - "type": 5123 - }, - "accessor_7978": { - "bufferView": "bufferView_14917", - "byteOffset": 3248544, - "byteStride": 12, - "count": 984, - "max": [ - 23.6508, - 9.612, - 15.57 - ], - "min": [ - 0, - 0.0024, - 0.0036 - ], - "type": 35665 - }, - "accessor_7980": { - "bufferView": "bufferView_14917", - "byteOffset": 3260352, - "byteStride": 12, - "count": 984, - "max": [ - 0.997841, - 1, - 0.997841 - ], - "min": [ - -0.997841, - -1, - -0.997841 - ], - "type": 35665 - }, - "accessor_7996": { - "bufferView": "bufferView_14916", - "byteOffset": 403956, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_7998": { - "bufferView": "bufferView_14917", - "byteOffset": 3272160, - "byteStride": 12, - "count": 568, - "max": [ - 14.6328, - 7.686, - 13.632 - ], - "min": [ - 8.6844, - 1.926, - 9.0888 - ], - "type": 35665 - }, - "accessor_80": { - "bufferView": "bufferView_14917", - "byteOffset": 2301288, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_8000": { - "bufferView": "bufferView_14917", - "byteOffset": 3278976, - "byteStride": 12, - "count": 568, - "max": [ - 0.84964, - 0.981062, - 0.866805 - ], - "min": [ - -0.84964, - -0.981062, - -0.866805 - ], - "type": 35665 - }, - "accessor_801": { - "bufferView": "bufferView_14916", - "byteOffset": 378132, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8019": { - "bufferView": "bufferView_14916", - "byteOffset": 405108, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8021": { - "bufferView": "bufferView_14917", - "byteOffset": 3285792, - "byteStride": 12, - "count": 344, - "max": [ - 17.2812, - 7.68, - 5.76 - ], - "min": [ - 11.5212, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_8023": { - "bufferView": "bufferView_14917", - "byteOffset": 3289920, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_803": { - "bufferView": "bufferView_14917", - "byteOffset": 3045072, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8039": { - "bufferView": "bufferView_14916", - "byteOffset": 406716, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8041": { - "bufferView": "bufferView_14917", - "byteOffset": 3299040, - "byteStride": 12, - "count": 344, - "max": [ - 7.6812, - 7.68, - 5.76 - ], - "min": [ - 1.9212, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_8043": { - "bufferView": "bufferView_14917", - "byteOffset": 3303168, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_805": { - "bufferView": "bufferView_14917", - "byteOffset": 3048912, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8059": { - "bufferView": "bufferView_14916", - "byteOffset": 408444, - "byteStride": 0, - "count": 1200, - "type": 5123 - }, - "accessor_8061": { - "bufferView": "bufferView_14917", - "byteOffset": 3312864, - "byteStride": 12, - "count": 708, - "max": [ - 25.9212, - 9.5976, - 3.84 - ], - "min": [ - 0.0036, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8063": { - "bufferView": "bufferView_14917", - "byteOffset": 3321360, - "byteStride": 12, - "count": 708, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8079": { - "bufferView": "bufferView_14916", - "byteOffset": 410844, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_8081": { - "bufferView": "bufferView_14917", - "byteOffset": 3329856, - "byteStride": 12, - "count": 12, - "max": [ - 0.0024, - 9.6012, - 3.84 - ], - "min": [ - 0, - 0.0036, - 0 - ], - "type": 35665 - }, - "accessor_8083": { - "bufferView": "bufferView_14917", - "byteOffset": 3330000, - "byteStride": 12, - "count": 12, - "max": [ - 1, - 0.0002501, - 0 - ], - "min": [ - -1, - -0.0002501, - 0 - ], - "type": 35665 - }, - "accessor_8100": { - "bufferView": "bufferView_14916", - "byteOffset": 410868, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8102": { - "bufferView": "bufferView_14917", - "byteOffset": 3330144, - "byteStride": 12, - "count": 344, - "max": [ - 17.2812, - 7.68, - 5.76 - ], - "min": [ - 11.5212, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_8104": { - "bufferView": "bufferView_14917", - "byteOffset": 3334272, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8120": { - "bufferView": "bufferView_14916", - "byteOffset": 412020, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8122": { - "bufferView": "bufferView_14917", - "byteOffset": 3338400, - "byteStride": 12, - "count": 344, - "max": [ - 7.6812, - 7.68, - 5.76 - ], - "min": [ - 1.9212, - 1.92, - 3.84 - ], - "type": 35665 - }, - "accessor_8124": { - "bufferView": "bufferView_14917", - "byteOffset": 3342528, - "byteStride": 12, - "count": 344, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8140": { - "bufferView": "bufferView_14916", - "byteOffset": 413172, - "byteStride": 0, - "count": 1200, - "type": 5123 - }, - "accessor_8142": { - "bufferView": "bufferView_14917", - "byteOffset": 3346656, - "byteStride": 12, - "count": 708, - "max": [ - 25.9212, - 9.5976, - 3.84 - ], - "min": [ - 0.0036, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8144": { - "bufferView": "bufferView_14917", - "byteOffset": 3355152, - "byteStride": 12, - "count": 708, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8160": { - "bufferView": "bufferView_14916", - "byteOffset": 415572, - "byteStride": 0, - "count": 12, - "type": 5123 - }, - "accessor_8162": { - "bufferView": "bufferView_14917", - "byteOffset": 3363648, - "byteStride": 12, - "count": 12, - "max": [ - 0.0024, - 9.6012, - 3.84 - ], - "min": [ - 0, - 0.0036, - 0 - ], - "type": 35665 - }, - "accessor_8164": { - "bufferView": "bufferView_14917", - "byteOffset": 3363792, - "byteStride": 12, - "count": 12, - "max": [ - 1, - 0.0002501, - 0 - ], - "min": [ - -1, - -0.0002501, - 0 - ], - "type": 35665 - }, - "accessor_8193": { - "bufferView": "bufferView_14916", - "byteOffset": 415596, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8196": { - "bufferView": "bufferView_14916", - "byteOffset": 415884, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8198": { - "bufferView": "bufferView_14917", - "byteOffset": 3363936, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_8200": { - "bufferView": "bufferView_14917", - "byteOffset": 3366408, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_821": { - "bufferView": "bufferView_14916", - "byteOffset": 385308, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8228": { - "bufferView": "bufferView_14916", - "byteOffset": 417324, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_823": { - "bufferView": "bufferView_14917", - "byteOffset": 3096912, - "byteStride": 12, - "count": 320, - "max": [ - 103.68, - 7.686, - 13.4445 - ], - "min": [ - 97.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8231": { - "bufferView": "bufferView_14916", - "byteOffset": 417900, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8233": { - "bufferView": "bufferView_14917", - "byteOffset": 3376560, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_8235": { - "bufferView": "bufferView_14917", - "byteOffset": 3381312, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_825": { - "bufferView": "bufferView_14917", - "byteOffset": 3100752, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8263": { - "bufferView": "bufferView_14916", - "byteOffset": 418476, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8266": { - "bufferView": "bufferView_14916", - "byteOffset": 418764, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8268": { - "bufferView": "bufferView_14917", - "byteOffset": 3386064, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_8270": { - "bufferView": "bufferView_14917", - "byteOffset": 3388488, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_8298": { - "bufferView": "bufferView_14916", - "byteOffset": 419052, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8301": { - "bufferView": "bufferView_14916", - "byteOffset": 419340, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8303": { - "bufferView": "bufferView_14917", - "byteOffset": 3390912, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_8305": { - "bufferView": "bufferView_14917", - "byteOffset": 3393384, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_8333": { - "bufferView": "bufferView_14916", - "byteOffset": 419628, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8336": { - "bufferView": "bufferView_14916", - "byteOffset": 419916, - "byteStride": 0, - "count": 144, - "type": 5123 - }, - "accessor_8338": { - "bufferView": "bufferView_14917", - "byteOffset": 3395856, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_8340": { - "bufferView": "bufferView_14917", - "byteOffset": 3398280, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_8368": { - "bufferView": "bufferView_14916", - "byteOffset": 420204, - "byteStride": 0, - "count": 84, - "type": 5123 - }, - "accessor_8371": { - "bufferView": "bufferView_14916", - "byteOffset": 420372, - "byteStride": 0, - "count": 84, - "type": 5123 - }, - "accessor_8373": { - "bufferView": "bufferView_14917", - "byteOffset": 3400704, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8375": { - "bufferView": "bufferView_14917", - "byteOffset": 3401856, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8396": { - "bufferView": "bufferView_14916", - "byteOffset": 434556, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_8398": { - "bufferView": "bufferView_14917", - "byteOffset": 3537864, - "byteStride": 12, - "count": 112, - "max": [ - 9.612, - 38.4012, - 3.84 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8400": { - "bufferView": "bufferView_14917", - "byteOffset": 3539208, - "byteStride": 12, - "count": 112, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_841": { - "bufferView": "bufferView_14916", - "byteOffset": 392196, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_8416": { - "bufferView": "bufferView_14916", - "byteOffset": 435348, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8418": { - "bufferView": "bufferView_14917", - "byteOffset": 3545544, - "byteStride": 12, - "count": 186, - "max": [ - 7.6812, - 36.4812, - 5.76 - ], - "min": [ - 1.9212, - 30.7212, - 3.84 - ], - "type": 35665 - }, - "accessor_8420": { - "bufferView": "bufferView_14917", - "byteOffset": 3547776, - "byteStride": 12, - "count": 186, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_843": { - "bufferView": "bufferView_14917", - "byteOffset": 3143088, - "byteStride": 12, - "count": 208, - "max": [ - 71.0413, - 7.68415, - 9.60325 - ], - "min": [ - 63.358, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_8436": { - "bufferView": "bufferView_14916", - "byteOffset": 435924, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8438": { - "bufferView": "bufferView_14917", - "byteOffset": 3550008, - "byteStride": 12, - "count": 198, - "max": [ - 7.6848, - 26.8812, - 5.76 - ], - "min": [ - 1.9248, - 21.1212, - 3.84 - ], - "type": 35665 - }, - "accessor_8440": { - "bufferView": "bufferView_14917", - "byteOffset": 3552384, - "byteStride": 12, - "count": 198, - "max": [ - 0.980948, - 0.980948, - 1 - ], - "min": [ - -0.980948, - -0.980948, - -1 - ], - "type": 35665 - }, - "accessor_845": { - "bufferView": "bufferView_14917", - "byteOffset": 3145584, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_8456": { - "bufferView": "bufferView_14916", - "byteOffset": 436500, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8458": { - "bufferView": "bufferView_14917", - "byteOffset": 3554760, - "byteStride": 12, - "count": 205, - "max": [ - 7.6908, - 7.6812, - 5.76 - ], - "min": [ - 1.9308, - 1.9212, - 3.84 - ], - "type": 35665 - }, - "accessor_8460": { - "bufferView": "bufferView_14917", - "byteOffset": 3557220, - "byteStride": 12, - "count": 205, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_8476": { - "bufferView": "bufferView_14916", - "byteOffset": 437076, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8478": { - "bufferView": "bufferView_14917", - "byteOffset": 3559680, - "byteStride": 12, - "count": 178, - "max": [ - 7.6884, - 17.2812, - 5.76 - ], - "min": [ - 1.9284, - 11.5212, - 3.84 - ], - "type": 35665 - }, - "accessor_8480": { - "bufferView": "bufferView_14917", - "byteOffset": 3561816, - "byteStride": 12, - "count": 178, - "max": [ - 0.980948, - 0.980908, - 1 - ], - "min": [ - -0.980948, - -0.980908, - -1 - ], - "type": 35665 - }, - "accessor_8496": { - "bufferView": "bufferView_14916", - "byteOffset": 437652, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8498": { - "bufferView": "bufferView_14917", - "byteOffset": 3563952, - "byteStride": 12, - "count": 226, - "max": [ - 6.726, - 21.1212, - 1.92 - ], - "min": [ - 2.886, - 17.2812, - 0 - ], - "type": 35665 - }, - "accessor_8500": { - "bufferView": "bufferView_14917", - "byteOffset": 3566664, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_8516": { - "bufferView": "bufferView_14916", - "byteOffset": 438228, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8518": { - "bufferView": "bufferView_14917", - "byteOffset": 3569376, - "byteStride": 12, - "count": 226, - "max": [ - 6.7284, - 11.5212, - 1.92 - ], - "min": [ - 2.8884, - 7.6812, - 0 - ], - "type": 35665 - }, - "accessor_8520": { - "bufferView": "bufferView_14917", - "byteOffset": 3572088, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_8536": { - "bufferView": "bufferView_14916", - "byteOffset": 438804, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8538": { - "bufferView": "bufferView_14917", - "byteOffset": 3574800, - "byteStride": 12, - "count": 226, - "max": [ - 6.7224, - 30.7212, - 1.92 - ], - "min": [ - 2.8824, - 26.8812, - 0 - ], - "type": 35665 - }, - "accessor_8540": { - "bufferView": "bufferView_14917", - "byteOffset": 3577512, - "byteStride": 12, - "count": 226, - "max": [ - 0.98101, - 0.98107, - 1 - ], - "min": [ - -0.98101, - -0.98107, - -1 - ], - "type": 35665 - }, - "accessor_8558": { - "bufferView": "bufferView_14916", - "byteOffset": 439380, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8560": { - "bufferView": "bufferView_14917", - "byteOffset": 3580224, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 17.2788, - 5.76 - ], - "min": [ - 11.52, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_8562": { - "bufferView": "bufferView_14917", - "byteOffset": 3582696, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_8578": { - "bufferView": "bufferView_14916", - "byteOffset": 439956, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8580": { - "bufferView": "bufferView_14917", - "byteOffset": 3585168, - "byteStride": 12, - "count": 396, - "max": [ - 13.44, - 13.4388, - 1.92 - ], - "min": [ - 5.76, - 5.7588, - 0 - ], - "type": 35665 - }, - "accessor_8582": { - "bufferView": "bufferView_14917", - "byteOffset": 3589920, - "byteStride": 12, - "count": 396, - "max": [ - 0.980734, - 0.980734, - 1 - ], - "min": [ - -0.980734, - -0.980734, - -1 - ], - "type": 35665 - }, - "accessor_8598": { - "bufferView": "bufferView_14916", - "byteOffset": 441684, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8600": { - "bufferView": "bufferView_14917", - "byteOffset": 3600240, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 17.2788, - 5.76 - ], - "min": [ - 1.92, - 11.5188, - 3.84 - ], - "type": 35665 - }, - "accessor_8602": { - "bufferView": "bufferView_14917", - "byteOffset": 3602664, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_861": { - "bufferView": "bufferView_14916", - "byteOffset": 398508, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8618": { - "bufferView": "bufferView_14916", - "byteOffset": 442260, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8620": { - "bufferView": "bufferView_14917", - "byteOffset": 3605088, - "byteStride": 12, - "count": 206, - "max": [ - 17.28, - 7.6788, - 5.76 - ], - "min": [ - 11.52, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_8622": { - "bufferView": "bufferView_14917", - "byteOffset": 3607560, - "byteStride": 12, - "count": 206, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_863": { - "bufferView": "bufferView_14917", - "byteOffset": 3211104, - "byteStride": 12, - "count": 232, - "max": [ - 59.5202, - 6.7198, - 2.8826 - ], - "min": [ - 55.6791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_8638": { - "bufferView": "bufferView_14916", - "byteOffset": 442836, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8640": { - "bufferView": "bufferView_14917", - "byteOffset": 3610032, - "byteStride": 12, - "count": 202, - "max": [ - 7.68, - 7.6788, - 5.76 - ], - "min": [ - 1.92, - 1.9188, - 3.84 - ], - "type": 35665 - }, - "accessor_8642": { - "bufferView": "bufferView_14917", - "byteOffset": 3612456, - "byteStride": 12, - "count": 202, - "max": [ - 0.980704, - 0.980704, - 1 - ], - "min": [ - -0.980704, - -0.980704, - -1 - ], - "type": 35665 - }, - "accessor_865": { - "bufferView": "bufferView_14917", - "byteOffset": 3213888, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_8658": { - "bufferView": "bufferView_14916", - "byteOffset": 443412, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_8660": { - "bufferView": "bufferView_14917", - "byteOffset": 3614880, - "byteStride": 12, - "count": 96, - "max": [ - 19.1988, - 19.1976, - 3.84 - ], - "min": [ - 0.0012, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8662": { - "bufferView": "bufferView_14917", - "byteOffset": 3616032, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8683": { - "bufferView": "bufferView_14916", - "byteOffset": 443748, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8685": { - "bufferView": "bufferView_14917", - "byteOffset": 3617184, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8687": { - "bufferView": "bufferView_14917", - "byteOffset": 3621024, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8703": { - "bufferView": "bufferView_14916", - "byteOffset": 444900, - "byteStride": 0, - "count": 1578, - "type": 5123 - }, - "accessor_8705": { - "bufferView": "bufferView_14917", - "byteOffset": 3624864, - "byteStride": 12, - "count": 1268, - "max": [ - 19.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_8707": { - "bufferView": "bufferView_14917", - "byteOffset": 3640080, - "byteStride": 12, - "count": 1268, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8723": { - "bufferView": "bufferView_14916", - "byteOffset": 449208, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8725": { - "bufferView": "bufferView_14917", - "byteOffset": 3662976, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8727": { - "bufferView": "bufferView_14917", - "byteOffset": 3666816, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8743": { - "bufferView": "bufferView_14916", - "byteOffset": 450360, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_8745": { - "bufferView": "bufferView_14917", - "byteOffset": 3670656, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_8747": { - "bufferView": "bufferView_14917", - "byteOffset": 3673152, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_8763": { - "bufferView": "bufferView_14916", - "byteOffset": 450816, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8765": { - "bufferView": "bufferView_14917", - "byteOffset": 3675648, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_8767": { - "bufferView": "bufferView_14917", - "byteOffset": 3678432, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_8784": { - "bufferView": "bufferView_14916", - "byteOffset": 451392, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8786": { - "bufferView": "bufferView_14917", - "byteOffset": 3681216, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8788": { - "bufferView": "bufferView_14917", - "byteOffset": 3685056, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8804": { - "bufferView": "bufferView_14916", - "byteOffset": 452544, - "byteStride": 0, - "count": 1578, - "type": 5123 - }, - "accessor_8806": { - "bufferView": "bufferView_14917", - "byteOffset": 3688896, - "byteStride": 12, - "count": 1268, - "max": [ - 19.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_8808": { - "bufferView": "bufferView_14917", - "byteOffset": 3704112, - "byteStride": 12, - "count": 1268, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_881": { - "bufferView": "bufferView_14916", - "byteOffset": 406260, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_8824": { - "bufferView": "bufferView_14916", - "byteOffset": 455700, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8826": { - "bufferView": "bufferView_14917", - "byteOffset": 3719328, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_8828": { - "bufferView": "bufferView_14917", - "byteOffset": 3723168, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_883": { - "bufferView": "bufferView_14917", - "byteOffset": 3294048, - "byteStride": 12, - "count": 208, - "max": [ - 80.6413, - 7.68415, - 9.60325 - ], - "min": [ - 72.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_8844": { - "bufferView": "bufferView_14916", - "byteOffset": 456852, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_8846": { - "bufferView": "bufferView_14917", - "byteOffset": 3727008, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_8848": { - "bufferView": "bufferView_14917", - "byteOffset": 3729504, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_885": { - "bufferView": "bufferView_14917", - "byteOffset": 3296544, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_8864": { - "bufferView": "bufferView_14916", - "byteOffset": 457308, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_8866": { - "bufferView": "bufferView_14917", - "byteOffset": 3732000, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_8868": { - "bufferView": "bufferView_14917", - "byteOffset": 3734784, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_8885": { - "bufferView": "bufferView_14916", - "byteOffset": 458340, - "byteStride": 0, - "count": 4896, - "type": 5123 - }, - "accessor_8887": { - "bufferView": "bufferView_14917", - "byteOffset": 3742560, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8889": { - "bufferView": "bufferView_14917", - "byteOffset": 3774120, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8917": { - "bufferView": "bufferView_14916", - "byteOffset": 468132, - "byteStride": 0, - "count": 2448, - "type": 5123 - }, - "accessor_8920": { - "bufferView": "bufferView_14916", - "byteOffset": 473028, - "byteStride": 0, - "count": 2448, - "type": 5123 - }, - "accessor_8922": { - "bufferView": "bufferView_14917", - "byteOffset": 3805680, - "byteStride": 12, - "count": 2630, - "max": [ - 19.2, - 7.44, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_8924": { - "bufferView": "bufferView_14917", - "byteOffset": 3837240, - "byteStride": 12, - "count": 2630, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8940": { - "bufferView": "bufferView_14916", - "byteOffset": 477924, - "byteStride": 0, - "count": 1452, - "type": 5123 - }, - "accessor_8942": { - "bufferView": "bufferView_14917", - "byteOffset": 3868800, - "byteStride": 12, - "count": 1180, - "max": [ - 9.6, - 9.6, - 11.52 - ], - "min": [ - 0, - -0.004, - 0 - ], - "type": 35665 - }, - "accessor_8944": { - "bufferView": "bufferView_14917", - "byteOffset": 3882960, - "byteStride": 12, - "count": 1180, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_8960": { - "bufferView": "bufferView_14916", - "byteOffset": 480828, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_8962": { - "bufferView": "bufferView_14917", - "byteOffset": 3897120, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.68, - 13.44 - ], - "min": [ - 1.92, - 1.92, - 11.52 - ], - "type": 35665 - }, - "accessor_8964": { - "bufferView": "bufferView_14917", - "byteOffset": 3900960, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_8980": { - "bufferView": "bufferView_14916", - "byteOffset": 481980, - "byteStride": 0, - "count": 1452, - "type": 5123 - }, - "accessor_8982": { - "bufferView": "bufferView_14917", - "byteOffset": 3904800, - "byteStride": 12, - "count": 1180, - "max": [ - 9.6, - 9.6, - 11.52 - ], - "min": [ - 0, - -0.004, - 0 - ], - "type": 35665 - }, - "accessor_8984": { - "bufferView": "bufferView_14917", - "byteOffset": 3918960, - "byteStride": 12, - "count": 1180, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9000": { - "bufferView": "bufferView_14916", - "byteOffset": 484884, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9002": { - "bufferView": "bufferView_14917", - "byteOffset": 3933120, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.68, - 13.44 - ], - "min": [ - 1.92, - 1.92, - 11.52 - ], - "type": 35665 - }, - "accessor_9004": { - "bufferView": "bufferView_14917", - "byteOffset": 3936960, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_901": { - "bufferView": "bufferView_14916", - "byteOffset": 416172, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9020": { - "bufferView": "bufferView_14916", - "byteOffset": 486036, - "byteStride": 0, - "count": 1038, - "type": 5123 - }, - "accessor_9022": { - "bufferView": "bufferView_14917", - "byteOffset": 3940800, - "byteStride": 12, - "count": 576, - "max": [ - 38.4, - 9.6, - 6.72 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9024": { - "bufferView": "bufferView_14917", - "byteOffset": 3947712, - "byteStride": 12, - "count": 576, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_903": { - "bufferView": "bufferView_14917", - "byteOffset": 3368880, - "byteStride": 12, - "count": 320, - "max": [ - 26.88, - 7.686, - 13.4445 - ], - "min": [ - 21.12, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_9040": { - "bufferView": "bufferView_14916", - "byteOffset": 488112, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9042": { - "bufferView": "bufferView_14917", - "byteOffset": 3954624, - "byteStride": 12, - "count": 162, - "max": [ - 30.72, - 6.72, - 1.92 - ], - "min": [ - 26.88, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_9044": { - "bufferView": "bufferView_14917", - "byteOffset": 3956568, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_905": { - "bufferView": "bufferView_14917", - "byteOffset": 3372720, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_9060": { - "bufferView": "bufferView_14916", - "byteOffset": 488688, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9062": { - "bufferView": "bufferView_14917", - "byteOffset": 3958512, - "byteStride": 12, - "count": 162, - "max": [ - 21.12, - 6.72, - 1.92 - ], - "min": [ - 17.28, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_9064": { - "bufferView": "bufferView_14917", - "byteOffset": 3960456, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_9080": { - "bufferView": "bufferView_14916", - "byteOffset": 489264, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9082": { - "bufferView": "bufferView_14917", - "byteOffset": 3962400, - "byteStride": 12, - "count": 162, - "max": [ - 11.52, - 6.72, - 1.92 - ], - "min": [ - 7.68, - 2.88, - 0 - ], - "type": 35665 - }, - "accessor_9084": { - "bufferView": "bufferView_14917", - "byteOffset": 3964344, - "byteStride": 12, - "count": 162, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_9100": { - "bufferView": "bufferView_14916", - "byteOffset": 490416, - "byteStride": 0, - "count": 2736, - "type": 5123 - }, - "accessor_9102": { - "bufferView": "bufferView_14917", - "byteOffset": 3971856, - "byteStride": 12, - "count": 2184, - "max": [ - 11.52, - 7.68, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9104": { - "bufferView": "bufferView_14917", - "byteOffset": 3998064, - "byteStride": 12, - "count": 2184, - "max": [ - 1, - 0.980935, - 1 - ], - "min": [ - -1, - -0.980935, - -1 - ], - "type": 35665 - }, - "accessor_9120": { - "bufferView": "bufferView_14916", - "byteOffset": 495888, - "byteStride": 0, - "count": 2736, - "type": 5123 - }, - "accessor_9122": { - "bufferView": "bufferView_14917", - "byteOffset": 4024272, - "byteStride": 12, - "count": 2184, - "max": [ - 11.52, - 7.68, - 7.68 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9124": { - "bufferView": "bufferView_14917", - "byteOffset": 4050480, - "byteStride": 12, - "count": 2184, - "max": [ - 1, - 0.980935, - 1 - ], - "min": [ - -1, - -0.980935, - -1 - ], - "type": 35665 - }, - "accessor_9140": { - "bufferView": "bufferView_14916", - "byteOffset": 501360, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9142": { - "bufferView": "bufferView_14917", - "byteOffset": 4076688, - "byteStride": 12, - "count": 456, - "max": [ - 7.68095, - 7.68645, - 13.4464 - ], - "min": [ - 1.92095, - 1.92515, - 11.5237 - ], - "type": 35665 - }, - "accessor_9144": { - "bufferView": "bufferView_14917", - "byteOffset": 4082160, - "byteStride": 12, - "count": 456, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9160": { - "bufferView": "bufferView_14916", - "byteOffset": 502512, - "byteStride": 0, - "count": 3654, - "type": 5123 - }, - "accessor_9162": { - "bufferView": "bufferView_14917", - "byteOffset": 4087632, - "byteStride": 12, - "count": 3121, - "max": [ - 38.4007, - 9.613, - 11.5277 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9164": { - "bufferView": "bufferView_14917", - "byteOffset": 4125084, - "byteStride": 12, - "count": 3121, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9180": { - "bufferView": "bufferView_14916", - "byteOffset": 509820, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9182": { - "bufferView": "bufferView_14917", - "byteOffset": 4162536, - "byteStride": 12, - "count": 464, - "max": [ - 26.881, - 7.69145, - 13.4452 - ], - "min": [ - 21.1209, - 1.93015, - 11.5219 - ], - "type": 35665 - }, - "accessor_9184": { - "bufferView": "bufferView_14917", - "byteOffset": 4168104, - "byteStride": 12, - "count": 464, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9200": { - "bufferView": "bufferView_14916", - "byteOffset": 510972, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9202": { - "bufferView": "bufferView_14917", - "byteOffset": 4173672, - "byteStride": 12, - "count": 232, - "max": [ - 30.721, - 6.72765, - 2.88455 - ], - "min": [ - 26.8798, - 2.8869, - 0.0019495 - ], - "type": 35665 - }, - "accessor_9204": { - "bufferView": "bufferView_14917", - "byteOffset": 4176456, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_921": { - "bufferView": "bufferView_14916", - "byteOffset": 434892, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_9220": { - "bufferView": "bufferView_14916", - "byteOffset": 511548, - "byteStride": 0, - "count": 1176, - "type": 5123 - }, - "accessor_9222": { - "bufferView": "bufferView_14917", - "byteOffset": 4179240, - "byteStride": 12, - "count": 1032, - "max": [ - 23.0407, - 9.60835, - 10.5665 - ], - "min": [ - 15.3576, - 0.0047493, - 2.8824 - ], - "type": 35665 - }, - "accessor_9224": { - "bufferView": "bufferView_14917", - "byteOffset": 4191624, - "byteStride": 12, - "count": 1032, - "max": [ - 0.980948, - 1, - 0.980887 - ], - "min": [ - -0.980948, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_923": { - "bufferView": "bufferView_14917", - "byteOffset": 3540552, - "byteStride": 12, - "count": 208, - "max": [ - 51.8413, - 7.68415, - 9.60325 - ], - "min": [ - 44.158, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_9240": { - "bufferView": "bufferView_14916", - "byteOffset": 513900, - "byteStride": 0, - "count": 216, - "type": 5123 - }, - "accessor_9242": { - "bufferView": "bufferView_14917", - "byteOffset": 4204008, - "byteStride": 12, - "count": 204, - "max": [ - 23.042, - 7.6889, - 9.6052 - ], - "min": [ - 15.3587, - 1.92355, - 2.8825 - ], - "type": 35665 - }, - "accessor_9244": { - "bufferView": "bufferView_14917", - "byteOffset": 4206456, - "byteStride": 12, - "count": 204, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_925": { - "bufferView": "bufferView_14917", - "byteOffset": 3543048, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_9260": { - "bufferView": "bufferView_14916", - "byteOffset": 514332, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9262": { - "bufferView": "bufferView_14917", - "byteOffset": 4208904, - "byteStride": 12, - "count": 459, - "max": [ - 36.4809, - 7.69335, - 13.444 - ], - "min": [ - 30.721, - 1.93325, - 11.5213 - ], - "type": 35665 - }, - "accessor_9264": { - "bufferView": "bufferView_14917", - "byteOffset": 4214412, - "byteStride": 12, - "count": 459, - "max": [ - 0.981, - 0.98106, - 1 - ], - "min": [ - -0.981, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9280": { - "bufferView": "bufferView_14916", - "byteOffset": 515940, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9282": { - "bufferView": "bufferView_14917", - "byteOffset": 4224912, - "byteStride": 12, - "count": 472, - "max": [ - 17.2809, - 7.68835, - 13.4458 - ], - "min": [ - 11.5209, - 1.92825, - 11.5225 - ], - "type": 35665 - }, - "accessor_9284": { - "bufferView": "bufferView_14917", - "byteOffset": 4230576, - "byteStride": 12, - "count": 472, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9300": { - "bufferView": "bufferView_14916", - "byteOffset": 517092, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9302": { - "bufferView": "bufferView_14917", - "byteOffset": 4236240, - "byteStride": 12, - "count": 232, - "max": [ - 11.5234, - 6.72265, - 2.88575 - ], - "min": [ - 7.68215, - 2.8819, - 0.003151 - ], - "type": 35665 - }, - "accessor_9304": { - "bufferView": "bufferView_14917", - "byteOffset": 4239024, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9320": { - "bufferView": "bufferView_14916", - "byteOffset": 517668, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9322": { - "bufferView": "bufferView_14917", - "byteOffset": 4241808, - "byteStride": 12, - "count": 232, - "max": [ - 21.121, - 6.72455, - 2.88455 - ], - "min": [ - 17.2798, - 2.8838, - 0.0019507 - ], - "type": 35665 - }, - "accessor_9324": { - "bufferView": "bufferView_14917", - "byteOffset": 4244592, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9342": { - "bufferView": "bufferView_14916", - "byteOffset": 518244, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9344": { - "bufferView": "bufferView_14917", - "byteOffset": 4247376, - "byteStride": 12, - "count": 456, - "max": [ - 7.68095, - 7.68645, - 13.4464 - ], - "min": [ - 1.92095, - 1.92515, - 11.5237 - ], - "type": 35665 - }, - "accessor_9346": { - "bufferView": "bufferView_14917", - "byteOffset": 4252848, - "byteStride": 12, - "count": 456, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9362": { - "bufferView": "bufferView_14916", - "byteOffset": 519396, - "byteStride": 0, - "count": 3654, - "type": 5123 - }, - "accessor_9364": { - "bufferView": "bufferView_14917", - "byteOffset": 4258320, - "byteStride": 12, - "count": 3121, - "max": [ - 38.4007, - 9.613, - 11.5277 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9366": { - "bufferView": "bufferView_14917", - "byteOffset": 4295772, - "byteStride": 12, - "count": 3121, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9382": { - "bufferView": "bufferView_14916", - "byteOffset": 526704, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9384": { - "bufferView": "bufferView_14917", - "byteOffset": 4333224, - "byteStride": 12, - "count": 464, - "max": [ - 26.881, - 7.69145, - 13.4452 - ], - "min": [ - 21.1209, - 1.93015, - 11.5219 - ], - "type": 35665 - }, - "accessor_9386": { - "bufferView": "bufferView_14917", - "byteOffset": 4338792, - "byteStride": 12, - "count": 464, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9402": { - "bufferView": "bufferView_14916", - "byteOffset": 527856, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9404": { - "bufferView": "bufferView_14917", - "byteOffset": 4344360, - "byteStride": 12, - "count": 232, - "max": [ - 30.721, - 6.72765, - 2.88455 - ], - "min": [ - 26.8798, - 2.8869, - 0.0019495 - ], - "type": 35665 - }, - "accessor_9406": { - "bufferView": "bufferView_14917", - "byteOffset": 4347144, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_941": { - "bufferView": "bufferView_14916", - "byteOffset": 441108, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9422": { - "bufferView": "bufferView_14916", - "byteOffset": 528432, - "byteStride": 0, - "count": 1176, - "type": 5123 - }, - "accessor_9424": { - "bufferView": "bufferView_14917", - "byteOffset": 4349928, - "byteStride": 12, - "count": 1032, - "max": [ - 23.0407, - 9.60835, - 10.5665 - ], - "min": [ - 15.3576, - 0.0047493, - 2.8824 - ], - "type": 35665 - }, - "accessor_9426": { - "bufferView": "bufferView_14917", - "byteOffset": 4362312, - "byteStride": 12, - "count": 1032, - "max": [ - 0.980948, - 1, - 0.980887 - ], - "min": [ - -0.980948, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_943": { - "bufferView": "bufferView_14917", - "byteOffset": 3594672, - "byteStride": 12, - "count": 232, - "max": [ - 69.1202, - 6.7198, - 2.8826 - ], - "min": [ - 65.2791, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_9442": { - "bufferView": "bufferView_14916", - "byteOffset": 530784, - "byteStride": 0, - "count": 216, - "type": 5123 - }, - "accessor_9444": { - "bufferView": "bufferView_14917", - "byteOffset": 4374696, - "byteStride": 12, - "count": 204, - "max": [ - 23.042, - 7.6889, - 9.6052 - ], - "min": [ - 15.3587, - 1.92355, - 2.8825 - ], - "type": 35665 - }, - "accessor_9446": { - "bufferView": "bufferView_14917", - "byteOffset": 4377144, - "byteStride": 12, - "count": 204, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_945": { - "bufferView": "bufferView_14917", - "byteOffset": 3597456, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9462": { - "bufferView": "bufferView_14916", - "byteOffset": 532368, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9464": { - "bufferView": "bufferView_14917", - "byteOffset": 4387272, - "byteStride": 12, - "count": 459, - "max": [ - 36.4809, - 7.69335, - 13.444 - ], - "min": [ - 30.721, - 1.93325, - 11.5213 - ], - "type": 35665 - }, - "accessor_9466": { - "bufferView": "bufferView_14917", - "byteOffset": 4392780, - "byteStride": 12, - "count": 459, - "max": [ - 0.981, - 0.98106, - 1 - ], - "min": [ - -0.981, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9482": { - "bufferView": "bufferView_14916", - "byteOffset": 533520, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9484": { - "bufferView": "bufferView_14917", - "byteOffset": 4398288, - "byteStride": 12, - "count": 472, - "max": [ - 17.2809, - 7.68835, - 13.4458 - ], - "min": [ - 11.5209, - 1.92825, - 11.5225 - ], - "type": 35665 - }, - "accessor_9486": { - "bufferView": "bufferView_14917", - "byteOffset": 4403952, - "byteStride": 12, - "count": 472, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9502": { - "bufferView": "bufferView_14916", - "byteOffset": 534672, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9504": { - "bufferView": "bufferView_14917", - "byteOffset": 4409616, - "byteStride": 12, - "count": 232, - "max": [ - 11.5234, - 6.72265, - 2.88575 - ], - "min": [ - 7.68215, - 2.8819, - 0.003151 - ], - "type": 35665 - }, - "accessor_9506": { - "bufferView": "bufferView_14917", - "byteOffset": 4412400, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9522": { - "bufferView": "bufferView_14916", - "byteOffset": 535248, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9524": { - "bufferView": "bufferView_14917", - "byteOffset": 4415184, - "byteStride": 12, - "count": 232, - "max": [ - 21.121, - 6.72455, - 2.88455 - ], - "min": [ - 17.2798, - 2.8838, - 0.0019507 - ], - "type": 35665 - }, - "accessor_9526": { - "bufferView": "bufferView_14917", - "byteOffset": 4417968, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9544": { - "bufferView": "bufferView_14916", - "byteOffset": 535824, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9546": { - "bufferView": "bufferView_14917", - "byteOffset": 4420752, - "byteStride": 12, - "count": 320, - "max": [ - 17.28, - 7.686, - 13.4445 - ], - "min": [ - 11.52, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_9548": { - "bufferView": "bufferView_14917", - "byteOffset": 4424592, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_9564": { - "bufferView": "bufferView_14916", - "byteOffset": 536976, - "byteStride": 0, - "count": 1578, - "type": 5123 - }, - "accessor_9566": { - "bufferView": "bufferView_14917", - "byteOffset": 4428432, - "byteStride": 12, - "count": 1268, - "max": [ - 19.2, - 9.606, - 11.5245 - ], - "min": [ - 0, - 0, - 0.0045481 - ], - "type": 35665 - }, - "accessor_9568": { - "bufferView": "bufferView_14917", - "byteOffset": 4443648, - "byteStride": 12, - "count": 1268, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9584": { - "bufferView": "bufferView_14916", - "byteOffset": 540132, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9586": { - "bufferView": "bufferView_14917", - "byteOffset": 4458864, - "byteStride": 12, - "count": 320, - "max": [ - 7.68, - 7.686, - 13.4445 - ], - "min": [ - 1.92, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_9588": { - "bufferView": "bufferView_14917", - "byteOffset": 4462704, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_96": { - "bufferView": "bufferView_14916", - "byteOffset": 407868, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9604": { - "bufferView": "bufferView_14916", - "byteOffset": 541284, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_9606": { - "bufferView": "bufferView_14917", - "byteOffset": 4466544, - "byteStride": 12, - "count": 208, - "max": [ - 13.4413, - 7.68415, - 9.60325 - ], - "min": [ - 5.758, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_9608": { - "bufferView": "bufferView_14917", - "byteOffset": 4469040, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_961": { - "bufferView": "bufferView_14916", - "byteOffset": 448056, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9624": { - "bufferView": "bufferView_14916", - "byteOffset": 542892, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9626": { - "bufferView": "bufferView_14917", - "byteOffset": 4479216, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_9628": { - "bufferView": "bufferView_14917", - "byteOffset": 4482000, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_963": { - "bufferView": "bufferView_14917", - "byteOffset": 3655296, - "byteStride": 12, - "count": 320, - "max": [ - 46.08, - 7.686, - 13.4445 - ], - "min": [ - 40.32, - 1.926, - 11.5245 - ], - "type": 35665 - }, - "accessor_9645": { - "bufferView": "bufferView_14916", - "byteOffset": 543468, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9647": { - "bufferView": "bufferView_14917", - "byteOffset": 4484784, - "byteStride": 12, - "count": 456, - "max": [ - 7.68095, - 7.68645, - 13.4464 - ], - "min": [ - 1.92095, - 1.92515, - 11.5237 - ], - "type": 35665 - }, - "accessor_9649": { - "bufferView": "bufferView_14917", - "byteOffset": 4490256, - "byteStride": 12, - "count": 456, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_965": { - "bufferView": "bufferView_14917", - "byteOffset": 3659136, - "byteStride": 12, - "count": 320, - "max": [ - 0.986394, - 0.986394, - 1 - ], - "min": [ - -0.986394, - -0.986394, - -1 - ], - "type": 35665 - }, - "accessor_9665": { - "bufferView": "bufferView_14916", - "byteOffset": 544620, - "byteStride": 0, - "count": 3654, - "type": 5123 - }, - "accessor_9667": { - "bufferView": "bufferView_14917", - "byteOffset": 4495728, - "byteStride": 12, - "count": 3121, - "max": [ - 38.4007, - 9.613, - 11.5277 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9669": { - "bufferView": "bufferView_14917", - "byteOffset": 4533180, - "byteStride": 12, - "count": 3121, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9685": { - "bufferView": "bufferView_14916", - "byteOffset": 551928, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9687": { - "bufferView": "bufferView_14917", - "byteOffset": 4570632, - "byteStride": 12, - "count": 464, - "max": [ - 26.881, - 7.69145, - 13.4452 - ], - "min": [ - 21.1209, - 1.93015, - 11.5219 - ], - "type": 35665 - }, - "accessor_9689": { - "bufferView": "bufferView_14917", - "byteOffset": 4576200, - "byteStride": 12, - "count": 464, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9705": { - "bufferView": "bufferView_14916", - "byteOffset": 553080, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9707": { - "bufferView": "bufferView_14917", - "byteOffset": 4581768, - "byteStride": 12, - "count": 232, - "max": [ - 30.721, - 6.72765, - 2.88455 - ], - "min": [ - 26.8798, - 2.8869, - 0.0019495 - ], - "type": 35665 - }, - "accessor_9709": { - "bufferView": "bufferView_14917", - "byteOffset": 4584552, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_9725": { - "bufferView": "bufferView_14916", - "byteOffset": 553656, - "byteStride": 0, - "count": 1176, - "type": 5123 - }, - "accessor_9727": { - "bufferView": "bufferView_14917", - "byteOffset": 4587336, - "byteStride": 12, - "count": 1032, - "max": [ - 23.0407, - 9.60835, - 10.5665 - ], - "min": [ - 15.3576, - 0.0047493, - 2.8824 - ], - "type": 35665 - }, - "accessor_9729": { - "bufferView": "bufferView_14917", - "byteOffset": 4599720, - "byteStride": 12, - "count": 1032, - "max": [ - 0.980948, - 1, - 0.980887 - ], - "min": [ - -0.980948, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_9745": { - "bufferView": "bufferView_14916", - "byteOffset": 556008, - "byteStride": 0, - "count": 216, - "type": 5123 - }, - "accessor_9747": { - "bufferView": "bufferView_14917", - "byteOffset": 4612104, - "byteStride": 12, - "count": 204, - "max": [ - 23.042, - 7.6889, - 9.6052 - ], - "min": [ - 15.3587, - 1.92355, - 2.8825 - ], - "type": 35665 - }, - "accessor_9749": { - "bufferView": "bufferView_14917", - "byteOffset": 4614552, - "byteStride": 12, - "count": 204, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_9765": { - "bufferView": "bufferView_14916", - "byteOffset": 556440, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9767": { - "bufferView": "bufferView_14917", - "byteOffset": 4617000, - "byteStride": 12, - "count": 459, - "max": [ - 36.4809, - 7.69335, - 13.444 - ], - "min": [ - 30.721, - 1.93325, - 11.5213 - ], - "type": 35665 - }, - "accessor_9769": { - "bufferView": "bufferView_14917", - "byteOffset": 4622508, - "byteStride": 12, - "count": 459, - "max": [ - 0.981, - 0.98106, - 1 - ], - "min": [ - -0.981, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_9785": { - "bufferView": "bufferView_14916", - "byteOffset": 557592, - "byteStride": 0, - "count": 576, - "type": 5123 - }, - "accessor_9787": { - "bufferView": "bufferView_14917", - "byteOffset": 4628016, - "byteStride": 12, - "count": 472, - "max": [ - 17.2809, - 7.68835, - 13.4458 - ], - "min": [ - 11.5209, - 1.92825, - 11.5225 - ], - "type": 35665 - }, - "accessor_9789": { - "bufferView": "bufferView_14917", - "byteOffset": 4633680, - "byteStride": 12, - "count": 472, - "max": [ - 0.98106, - 0.98106, - 1 - ], - "min": [ - -0.98106, - -0.98106, - -1 - ], - "type": 35665 - }, - "accessor_98": { - "bufferView": "bufferView_14917", - "byteOffset": 3307296, - "byteStride": 12, - "count": 232, - "max": [ - 11.5203, - 6.7198, - 2.8826 - ], - "min": [ - 7.67905, - 2.87905, - 0 - ], - "type": 35665 - }, - "accessor_9805": { - "bufferView": "bufferView_14916", - "byteOffset": 559200, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9807": { - "bufferView": "bufferView_14917", - "byteOffset": 4644336, - "byteStride": 12, - "count": 232, - "max": [ - 11.5234, - 6.72265, - 2.88575 - ], - "min": [ - 7.68215, - 2.8819, - 0.003151 - ], - "type": 35665 - }, - "accessor_9809": { - "bufferView": "bufferView_14917", - "byteOffset": 4647120, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_981": { - "bufferView": "bufferView_14916", - "byteOffset": 457884, - "byteStride": 0, - "count": 228, - "type": 5123 - }, - "accessor_9825": { - "bufferView": "bufferView_14916", - "byteOffset": 559776, - "byteStride": 0, - "count": 288, - "type": 5123 - }, - "accessor_9827": { - "bufferView": "bufferView_14917", - "byteOffset": 4649904, - "byteStride": 12, - "count": 232, - "max": [ - 21.121, - 6.72455, - 2.88455 - ], - "min": [ - 17.2798, - 2.8838, - 0.0019507 - ], - "type": 35665 - }, - "accessor_9829": { - "bufferView": "bufferView_14917", - "byteOffset": 4652688, - "byteStride": 12, - "count": 232, - "max": [ - 0.981, - 0.981, - 1 - ], - "min": [ - -0.981, - -0.981, - -1 - ], - "type": 35665 - }, - "accessor_983": { - "bufferView": "bufferView_14917", - "byteOffset": 3737568, - "byteStride": 12, - "count": 208, - "max": [ - 32.6413, - 7.68415, - 9.60325 - ], - "min": [ - 24.958, - 1.9188, - 2.88055 - ], - "type": 35665 - }, - "accessor_9847": { - "bufferView": "bufferView_14916", - "byteOffset": 560808, - "byteStride": 0, - "count": 360, - "type": 5123 - }, - "accessor_9849": { - "bufferView": "bufferView_14917", - "byteOffset": 4660464, - "byteStride": 12, - "count": 192, - "max": [ - 76.7988, - 5.76, - 5.76 - ], - "min": [ - 0, - 0, - 0 - ], - "type": 35665 - }, - "accessor_985": { - "bufferView": "bufferView_14917", - "byteOffset": 3740064, - "byteStride": 12, - "count": 208, - "max": [ - 1, - 1, - 0.980887 - ], - "min": [ - -1, - -1, - -0.980887 - ], - "type": 35665 - }, - "accessor_9851": { - "bufferView": "bufferView_14917", - "byteOffset": 4662768, - "byteStride": 12, - "count": 192, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_9867": { - "bufferView": "bufferView_14916", - "byteOffset": 561528, - "byteStride": 0, - "count": 36, - "type": 5123 - }, - "accessor_9869": { - "bufferView": "bufferView_14917", - "byteOffset": 4665072, - "byteStride": 12, - "count": 36, - "max": [ - 7.1052, - 22.08, - 16.32 - ], - "min": [ - 4.8012, - 19.9584, - 14.3988 - ], - "type": 35665 - }, - "accessor_9871": { - "bufferView": "bufferView_14917", - "byteOffset": 4665504, - "byteStride": 12, - "count": 36, - "max": [ - 0.632063, - 0.758455, - 1 - ], - "min": [ - -0.632063, - -0.758455, - -1 - ], - "type": 35665 - }, - "accessor_9887": { - "bufferView": "bufferView_14916", - "byteOffset": 561600, - "byteStride": 0, - "count": 72, - "type": 5123 - }, - "accessor_9889": { - "bufferView": "bufferView_14917", - "byteOffset": 4665936, - "byteStride": 12, - "count": 64, - "max": [ - 10.0812, - 27.2832, - 17.28 - ], - "min": [ - 6.7212, - 19.7664, - 13.44 - ], - "type": 35665 - }, - "accessor_9891": { - "bufferView": "bufferView_14917", - "byteOffset": 4666704, - "byteStride": 12, - "count": 64, - "max": [ - 0.979365, - 0.197985, - 1 - ], - "min": [ - -0.979365, - -0.197985, - -1 - ], - "type": 35665 - }, - "accessor_9907": { - "bufferView": "bufferView_14916", - "byteOffset": 561744, - "byteStride": 0, - "count": 36, - "type": 5123 - }, - "accessor_9909": { - "bufferView": "bufferView_14917", - "byteOffset": 4667472, - "byteStride": 12, - "count": 36, - "max": [ - 7.1052, - 13.8912, - 11.856 - ], - "min": [ - 4.8012, - 11.2704, - 9.2352 - ], - "type": 35665 - }, - "accessor_9911": { - "bufferView": "bufferView_14917", - "byteOffset": 4667904, - "byteStride": 12, - "count": 36, - "max": [ - 0.63159, - 0.8658, - 0.73629 - ], - "min": [ - -0.63159, - -0.8658, - -0.73629 - ], - "type": 35665 - }, - "accessor_9927": { - "bufferView": "bufferView_14916", - "byteOffset": 561816, - "byteStride": 0, - "count": 72, - "type": 5123 - }, - "accessor_9929": { - "bufferView": "bufferView_14917", - "byteOffset": 4668336, - "byteStride": 12, - "count": 71, - "max": [ - 10.0812, - 14.8176, - 12.504 - ], - "min": [ - 6.7212, - 7.9344, - 4.4172 - ], - "type": 35665 - }, - "accessor_9931": { - "bufferView": "bufferView_14917", - "byteOffset": 4669188, - "byteStride": 12, - "count": 71, - "max": [ - 0.979363, - 0.865953, - 0.500126 - ], - "min": [ - -0.979363, - -0.865953, - -0.500126 - ], - "type": 35665 - }, - "accessor_9947": { - "bufferView": "bufferView_14916", - "byteOffset": 561960, - "byteStride": 0, - "count": 36, - "type": 5123 - }, - "accessor_9949": { - "bufferView": "bufferView_14917", - "byteOffset": 4670040, - "byteStride": 12, - "count": 32, - "max": [ - 7.104, - 13.8912, - 21.4848 - ], - "min": [ - 4.8, - 11.2704, - 18.8628 - ], - "type": 35665 - }, - "accessor_9951": { - "bufferView": "bufferView_14917", - "byteOffset": 4670424, - "byteStride": 12, - "count": 32, - "max": [ - 0.632028, - 0.865737, - 0.735933 - ], - "min": [ - -0.632028, - -0.865737, - -0.735933 - ], - "type": 35665 - }, - "accessor_9967": { - "bufferView": "bufferView_14916", - "byteOffset": 562032, - "byteStride": 0, - "count": 72, - "type": 5123 - }, - "accessor_9969": { - "bufferView": "bufferView_14917", - "byteOffset": 4670808, - "byteStride": 12, - "count": 72, - "max": [ - 10.08, - 14.8176, - 26.3028 - ], - "min": [ - 6.72, - 7.9344, - 18.216 - ], - "type": 35665 - }, - "accessor_9971": { - "bufferView": "bufferView_14917", - "byteOffset": 4671672, - "byteStride": 12, - "count": 72, - "max": [ - 0.97938, - 0.865953, - 0.500126 - ], - "min": [ - -0.97938, - -0.865953, - -0.500126 - ], - "type": 35665 - }, - "accessor_9987": { - "bufferView": "bufferView_14916", - "byteOffset": 563328, - "byteStride": 0, - "count": 1536, - "type": 5123 - }, - "accessor_9989": { - "bufferView": "bufferView_14917", - "byteOffset": 4680216, - "byteStride": 12, - "count": 1536, - "max": [ - 11.0424, - 30.72, - 30.72 - ], - "min": [ - 7.2, - 0, - 0 - ], - "type": 35665 - }, - "accessor_9991": { - "bufferView": "bufferView_14917", - "byteOffset": 4698648, - "byteStride": 12, - "count": 1536, - "max": [ - 0.920413, - 0.907324, - 0.907308 - ], - "min": [ - -0.920413, - -0.907324, - -0.907308 - ], - "type": 35665 - } - }, - "animations": {}, - "asset": { - "generator": "collada2gltf@53bdd01c320c249c36ae9fbc439ae2cdee39acc8", - "premultipliedAlpha": true, - "profile": "WebGL 1.0.2", - "version": 0.6 - }, - "bufferViews": { - "bufferView_14916": { - "buffer": "Rambler", - "byteLength": 1197492, - "byteOffset": 0, - "target": 34963 - }, - "bufferView_14917": { - "buffer": "Rambler", - "byteLength": 10344480, - "byteOffset": 1197492, - "target": 34962 - } - }, - "buffers": { - "Rambler": { - "byteLength": 11541972, - "path": "Rambler.bin", - "type": "arraybuffer" - } - }, - "materials": { - "ID1411": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 1, - 1, - 0.196078, - 1 - ] - } - }, - "name": "Color_E02" - }, - "ID151": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 0.227451, - 0.227451, - 0.227451, - 1 - ] - } - }, - "name": "Color_007" - }, - "ID1683": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 0.117647, - 0.117647, - 0.117647, - 1 - ] - } - }, - "name": "Color_008" - }, - "ID1772": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 1, - 1, - 1, - 1 - ] - } - }, - "name": "material" - }, - "ID1777": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 1, - 1, - 1, - 1 - ] - } - }, - "name": "material_0" - }, - "ID5": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "diffuse": [ - 0.776471, - 0.776471, - 0.776471, - 1 - ] - } - }, - "name": "Color_1" - } - }, - "meshes": { - "ID1005": { - "name": "ID1005", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2857", - "POSITION": "accessor_2855" - }, - "indices": "accessor_2853", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID101": { - "name": "ID101", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_340", - "POSITION": "accessor_338" - }, - "indices": "accessor_336", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1032": { - "name": "ID1032", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2882", - "POSITION": "accessor_2880" - }, - "indices": "accessor_2878", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1038": { - "name": "ID1038", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2902", - "POSITION": "accessor_2900" - }, - "indices": "accessor_2898", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1044": { - "name": "ID1044", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2922", - "POSITION": "accessor_2920" - }, - "indices": "accessor_2918", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1050": { - "name": "ID1050", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2942", - "POSITION": "accessor_2940" - }, - "indices": "accessor_2938", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1056": { - "name": "ID1056", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2962", - "POSITION": "accessor_2960" - }, - "indices": "accessor_2958", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1062": { - "name": "ID1062", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2982", - "POSITION": "accessor_2980" - }, - "indices": "accessor_2978", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1068": { - "name": "ID1068", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3002", - "POSITION": "accessor_3000" - }, - "indices": "accessor_2998", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1074": { - "name": "ID1074", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3022", - "POSITION": "accessor_3020" - }, - "indices": "accessor_3018", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1080": { - "name": "ID1080", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3042", - "POSITION": "accessor_3040" - }, - "indices": "accessor_3038", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1086": { - "name": "ID1086", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3062", - "POSITION": "accessor_3060" - }, - "indices": "accessor_3058", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1092": { - "name": "ID1092", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3082", - "POSITION": "accessor_3080" - }, - "indices": "accessor_3078", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1098": { - "name": "ID1098", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3102", - "POSITION": "accessor_3100" - }, - "indices": "accessor_3098", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID11": { - "name": "ID11", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_40", - "POSITION": "accessor_38" - }, - "indices": "accessor_36", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1104": { - "name": "ID1104", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3122", - "POSITION": "accessor_3120" - }, - "indices": "accessor_3118", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1110": { - "name": "ID1110", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3142", - "POSITION": "accessor_3140" - }, - "indices": "accessor_3138", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1116": { - "name": "ID1116", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3162", - "POSITION": "accessor_3160" - }, - "indices": "accessor_3158", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1122": { - "name": "ID1122", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3182", - "POSITION": "accessor_3180" - }, - "indices": "accessor_3178", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1128": { - "name": "ID1128", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3202", - "POSITION": "accessor_3200" - }, - "indices": "accessor_3198", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1134": { - "name": "ID1134", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3222", - "POSITION": "accessor_3220" - }, - "indices": "accessor_3218", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1141": { - "name": "ID1141", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3242", - "POSITION": "accessor_3240" - }, - "indices": "accessor_3238", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1147": { - "name": "ID1147", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3262", - "POSITION": "accessor_3260" - }, - "indices": "accessor_3258", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1153": { - "name": "ID1153", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3282", - "POSITION": "accessor_3280" - }, - "indices": "accessor_3278", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1159": { - "name": "ID1159", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3302", - "POSITION": "accessor_3300" - }, - "indices": "accessor_3298", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1165": { - "name": "ID1165", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3322", - "POSITION": "accessor_3320" - }, - "indices": "accessor_3318", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1171": { - "name": "ID1171", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3342", - "POSITION": "accessor_3340" - }, - "indices": "accessor_3338", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1177": { - "name": "ID1177", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3362", - "POSITION": "accessor_3360" - }, - "indices": "accessor_3358", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1183": { - "name": "ID1183", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3382", - "POSITION": "accessor_3380" - }, - "indices": "accessor_3378", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1189": { - "name": "ID1189", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3402", - "POSITION": "accessor_3400" - }, - "indices": "accessor_3398", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1195": { - "name": "ID1195", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3422", - "POSITION": "accessor_3420" - }, - "indices": "accessor_3418", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1218": { - "name": "ID1218", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3446", - "POSITION": "accessor_3444" - }, - "indices": "accessor_3442", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1224": { - "name": "ID1224", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3466", - "POSITION": "accessor_3464" - }, - "indices": "accessor_3462", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1230": { - "name": "ID1230", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3486", - "POSITION": "accessor_3484" - }, - "indices": "accessor_3482", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1236": { - "name": "ID1236", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3506", - "POSITION": "accessor_3504" - }, - "indices": "accessor_3502", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1242": { - "name": "ID1242", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3526", - "POSITION": "accessor_3524" - }, - "indices": "accessor_3522", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1248": { - "name": "ID1248", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3546", - "POSITION": "accessor_3544" - }, - "indices": "accessor_3542", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1254": { - "name": "ID1254", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3566", - "POSITION": "accessor_3564" - }, - "indices": "accessor_3562", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1260": { - "name": "ID1260", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3586", - "POSITION": "accessor_3584" - }, - "indices": "accessor_3582", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1266": { - "name": "ID1266", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3606", - "POSITION": "accessor_3604" - }, - "indices": "accessor_3602", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1272": { - "name": "ID1272", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3626", - "POSITION": "accessor_3624" - }, - "indices": "accessor_3622", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1295": { - "name": "ID1295", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3650", - "POSITION": "accessor_3648" - }, - "indices": "accessor_3646", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID130": { - "name": "ID130", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_365", - "POSITION": "accessor_363" - }, - "indices": "accessor_361", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1301": { - "name": "ID1301", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3670", - "POSITION": "accessor_3668" - }, - "indices": "accessor_3666", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1307": { - "name": "ID1307", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3690", - "POSITION": "accessor_3688" - }, - "indices": "accessor_3686", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1313": { - "name": "ID1313", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3710", - "POSITION": "accessor_3708" - }, - "indices": "accessor_3706", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1319": { - "name": "ID1319", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3730", - "POSITION": "accessor_3728" - }, - "indices": "accessor_3726", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1325": { - "name": "ID1325", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3750", - "POSITION": "accessor_3748" - }, - "indices": "accessor_3746", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1352": { - "name": "ID1352", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3775", - "POSITION": "accessor_3773" - }, - "indices": "accessor_3771", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1358": { - "name": "ID1358", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3795", - "POSITION": "accessor_3793" - }, - "indices": "accessor_3791", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID136": { - "name": "ID136", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_385", - "POSITION": "accessor_383" - }, - "indices": "accessor_381", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1364": { - "name": "ID1364", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3815", - "POSITION": "accessor_3813" - }, - "indices": "accessor_3811", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1370": { - "name": "ID1370", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3835", - "POSITION": "accessor_3833" - }, - "indices": "accessor_3831", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1376": { - "name": "ID1376", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3855", - "POSITION": "accessor_3853" - }, - "indices": "accessor_3851", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1382": { - "name": "ID1382", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3875", - "POSITION": "accessor_3873" - }, - "indices": "accessor_3871", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1409": { - "name": "ID1409", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3900", - "POSITION": "accessor_3898" - }, - "indices": "accessor_3896", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1417": { - "name": "ID1417", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3920", - "POSITION": "accessor_3918" - }, - "indices": "accessor_3916", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID142": { - "name": "ID142", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_405", - "POSITION": "accessor_403" - }, - "indices": "accessor_401", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1423": { - "name": "ID1423", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3940", - "POSITION": "accessor_3938" - }, - "indices": "accessor_3936", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1429": { - "name": "ID1429", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3960", - "POSITION": "accessor_3958" - }, - "indices": "accessor_3956", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1435": { - "name": "ID1435", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_3980", - "POSITION": "accessor_3978" - }, - "indices": "accessor_3976", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1441": { - "name": "ID1441", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4000", - "POSITION": "accessor_3998" - }, - "indices": "accessor_3996", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1447": { - "name": "ID1447", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4020", - "POSITION": "accessor_4018" - }, - "indices": "accessor_4016", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1453": { - "name": "ID1453", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4040", - "POSITION": "accessor_4038" - }, - "indices": "accessor_4036", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1459": { - "name": "ID1459", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4060", - "POSITION": "accessor_4058" - }, - "indices": "accessor_4056", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1465": { - "name": "ID1465", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4080", - "POSITION": "accessor_4078" - }, - "indices": "accessor_4076", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1471": { - "name": "ID1471", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4100", - "POSITION": "accessor_4098" - }, - "indices": "accessor_4096", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1477": { - "name": "ID1477", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4120", - "POSITION": "accessor_4118" - }, - "indices": "accessor_4116", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1483": { - "name": "ID1483", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4140", - "POSITION": "accessor_4138" - }, - "indices": "accessor_4136", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1489": { - "name": "ID1489", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4160", - "POSITION": "accessor_4158" - }, - "indices": "accessor_4156", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID149": { - "name": "ID149", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_425", - "POSITION": "accessor_423" - }, - "indices": "accessor_421", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1495": { - "name": "ID1495", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4180", - "POSITION": "accessor_4178" - }, - "indices": "accessor_4176", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1501": { - "name": "ID1501", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4200", - "POSITION": "accessor_4198" - }, - "indices": "accessor_4196", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1507": { - "name": "ID1507", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4220", - "POSITION": "accessor_4218" - }, - "indices": "accessor_4216", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1513": { - "name": "ID1513", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4240", - "POSITION": "accessor_4238" - }, - "indices": "accessor_4236", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1520": { - "name": "ID1520", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4260", - "POSITION": "accessor_4258" - }, - "indices": "accessor_4256", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1526": { - "name": "ID1526", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4280", - "POSITION": "accessor_4278" - }, - "indices": "accessor_4276", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1532": { - "name": "ID1532", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4300", - "POSITION": "accessor_4298" - }, - "indices": "accessor_4296", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1538": { - "name": "ID1538", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4320", - "POSITION": "accessor_4318" - }, - "indices": "accessor_4316", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1544": { - "name": "ID1544", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4340", - "POSITION": "accessor_4338" - }, - "indices": "accessor_4336", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1550": { - "name": "ID1550", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4360", - "POSITION": "accessor_4358" - }, - "indices": "accessor_4356", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1556": { - "name": "ID1556", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4380", - "POSITION": "accessor_4378" - }, - "indices": "accessor_4376", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1562": { - "name": "ID1562", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4400", - "POSITION": "accessor_4398" - }, - "indices": "accessor_4396", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1568": { - "name": "ID1568", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4420", - "POSITION": "accessor_4418" - }, - "indices": "accessor_4416", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID157": { - "name": "ID157", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_445", - "POSITION": "accessor_443" - }, - "indices": "accessor_441", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1574": { - "name": "ID1574", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4440", - "POSITION": "accessor_4438" - }, - "indices": "accessor_4436", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1580": { - "name": "ID1580", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4460", - "POSITION": "accessor_4458" - }, - "indices": "accessor_4456", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1586": { - "name": "ID1586", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4480", - "POSITION": "accessor_4478" - }, - "indices": "accessor_4476", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1611": { - "name": "ID1611", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4504", - "POSITION": "accessor_4502" - }, - "indices": "accessor_4500", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1617": { - "name": "ID1617", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4524", - "POSITION": "accessor_4522" - }, - "indices": "accessor_4520", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1623": { - "name": "ID1623", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4544", - "POSITION": "accessor_4542" - }, - "indices": "accessor_4540", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1629": { - "name": "ID1629", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4564", - "POSITION": "accessor_4562" - }, - "indices": "accessor_4560", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID163": { - "name": "ID163", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_465", - "POSITION": "accessor_463" - }, - "indices": "accessor_461", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1635": { - "name": "ID1635", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4584", - "POSITION": "accessor_4582" - }, - "indices": "accessor_4580", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1646": { - "name": "ID1646", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4605", - "POSITION": "accessor_4603" - }, - "indices": "accessor_4601", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1652": { - "name": "ID1652", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4625", - "POSITION": "accessor_4623" - }, - "indices": "accessor_4621", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1658": { - "name": "ID1658", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4645", - "POSITION": "accessor_4643" - }, - "indices": "accessor_4641", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1664": { - "name": "ID1664", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4665", - "POSITION": "accessor_4663" - }, - "indices": "accessor_4661", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1670": { - "name": "ID1670", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4685", - "POSITION": "accessor_4683" - }, - "indices": "accessor_4681", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1681": { - "name": "ID1681", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4706", - "POSITION": "accessor_4704" - }, - "indices": "accessor_4702", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID169": { - "name": "ID169", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_485", - "POSITION": "accessor_483" - }, - "indices": "accessor_481", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1690": { - "name": "ID1690", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4726", - "POSITION": "accessor_4724" - }, - "indices": "accessor_4722", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1697": { - "name": "ID1697", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4746", - "POSITION": "accessor_4744" - }, - "indices": "accessor_4742", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID17": { - "name": "ID17", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_60", - "POSITION": "accessor_58" - }, - "indices": "accessor_56", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1703": { - "name": "ID1703", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4766", - "POSITION": "accessor_4764" - }, - "indices": "accessor_4762", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1709": { - "name": "ID1709", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4786", - "POSITION": "accessor_4784" - }, - "indices": "accessor_4782", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1716": { - "name": "ID1716", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4806", - "POSITION": "accessor_4804" - }, - "indices": "accessor_4802", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1723": { - "name": "ID1723", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4826", - "POSITION": "accessor_4824" - }, - "indices": "accessor_4822", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID1730": { - "name": "ID1730", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4846", - "POSITION": "accessor_4844" - }, - "indices": "accessor_4842", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1736": { - "name": "ID1736", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4866", - "POSITION": "accessor_4864" - }, - "indices": "accessor_4862", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1743": { - "name": "ID1743", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4886", - "POSITION": "accessor_4884" - }, - "indices": "accessor_4882", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID175": { - "name": "ID175", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_505", - "POSITION": "accessor_503" - }, - "indices": "accessor_501", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1750": { - "name": "ID1750", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4906", - "POSITION": "accessor_4904" - }, - "indices": "accessor_4902", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID1757": { - "name": "ID1757", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4926", - "POSITION": "accessor_4924" - }, - "indices": "accessor_4922", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID1764": { - "name": "ID1764", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4946", - "POSITION": "accessor_4944" - }, - "indices": "accessor_4942", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID1771": { - "name": "ID1771", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_4981", - "POSITION": "accessor_4979" - }, - "indices": "accessor_4974", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_4981", - "POSITION": "accessor_4979" - }, - "indices": "accessor_4977", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID1782": { - "name": "ID1782", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5016", - "POSITION": "accessor_5014" - }, - "indices": "accessor_5009", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_5016", - "POSITION": "accessor_5014" - }, - "indices": "accessor_5012", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID1789": { - "name": "ID1789", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5036", - "POSITION": "accessor_5034" - }, - "indices": "accessor_5032", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1795": { - "name": "ID1795", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5056", - "POSITION": "accessor_5054" - }, - "indices": "accessor_5052", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1801": { - "name": "ID1801", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5076", - "POSITION": "accessor_5074" - }, - "indices": "accessor_5072", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1807": { - "name": "ID1807", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5096", - "POSITION": "accessor_5094" - }, - "indices": "accessor_5092", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID181": { - "name": "ID181", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_525", - "POSITION": "accessor_523" - }, - "indices": "accessor_521", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1813": { - "name": "ID1813", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5116", - "POSITION": "accessor_5114" - }, - "indices": "accessor_5112", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1819": { - "name": "ID1819", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5136", - "POSITION": "accessor_5134" - }, - "indices": "accessor_5132", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID1846": { - "name": "ID1846", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5161", - "POSITION": "accessor_5159" - }, - "indices": "accessor_5157", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1852": { - "name": "ID1852", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5181", - "POSITION": "accessor_5179" - }, - "indices": "accessor_5177", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1858": { - "name": "ID1858", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5201", - "POSITION": "accessor_5199" - }, - "indices": "accessor_5197", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1864": { - "name": "ID1864", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5221", - "POSITION": "accessor_5219" - }, - "indices": "accessor_5217", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID187": { - "name": "ID187", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_545", - "POSITION": "accessor_543" - }, - "indices": "accessor_541", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1870": { - "name": "ID1870", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5241", - "POSITION": "accessor_5239" - }, - "indices": "accessor_5237", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1876": { - "name": "ID1876", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5261", - "POSITION": "accessor_5259" - }, - "indices": "accessor_5257", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1903": { - "name": "ID1903", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5286", - "POSITION": "accessor_5284" - }, - "indices": "accessor_5282", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1909": { - "name": "ID1909", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5306", - "POSITION": "accessor_5304" - }, - "indices": "accessor_5302", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1915": { - "name": "ID1915", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5326", - "POSITION": "accessor_5324" - }, - "indices": "accessor_5322", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1921": { - "name": "ID1921", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5346", - "POSITION": "accessor_5344" - }, - "indices": "accessor_5342", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1927": { - "name": "ID1927", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5366", - "POSITION": "accessor_5364" - }, - "indices": "accessor_5362", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID193": { - "name": "ID193", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_565", - "POSITION": "accessor_563" - }, - "indices": "accessor_561", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1933": { - "name": "ID1933", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5386", - "POSITION": "accessor_5384" - }, - "indices": "accessor_5382", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1960": { - "name": "ID1960", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5411", - "POSITION": "accessor_5409" - }, - "indices": "accessor_5407", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1966": { - "name": "ID1966", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5431", - "POSITION": "accessor_5429" - }, - "indices": "accessor_5427", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1972": { - "name": "ID1972", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5451", - "POSITION": "accessor_5449" - }, - "indices": "accessor_5447", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1978": { - "name": "ID1978", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5471", - "POSITION": "accessor_5469" - }, - "indices": "accessor_5467", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID1984": { - "name": "ID1984", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5491", - "POSITION": "accessor_5489" - }, - "indices": "accessor_5487", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID199": { - "name": "ID199", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_585", - "POSITION": "accessor_583" - }, - "indices": "accessor_581", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID1990": { - "name": "ID1990", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5511", - "POSITION": "accessor_5509" - }, - "indices": "accessor_5507", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2017": { - "name": "ID2017", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5536", - "POSITION": "accessor_5534" - }, - "indices": "accessor_5532", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2023": { - "name": "ID2023", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5556", - "POSITION": "accessor_5554" - }, - "indices": "accessor_5552", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2029": { - "name": "ID2029", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5576", - "POSITION": "accessor_5574" - }, - "indices": "accessor_5572", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2035": { - "name": "ID2035", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5596", - "POSITION": "accessor_5594" - }, - "indices": "accessor_5592", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2041": { - "name": "ID2041", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5616", - "POSITION": "accessor_5614" - }, - "indices": "accessor_5612", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2047": { - "name": "ID2047", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5636", - "POSITION": "accessor_5634" - }, - "indices": "accessor_5632", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID205": { - "name": "ID205", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_605", - "POSITION": "accessor_603" - }, - "indices": "accessor_601", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2074": { - "name": "ID2074", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5661", - "POSITION": "accessor_5659" - }, - "indices": "accessor_5657", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2080": { - "name": "ID2080", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5681", - "POSITION": "accessor_5679" - }, - "indices": "accessor_5677", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2086": { - "name": "ID2086", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5701", - "POSITION": "accessor_5699" - }, - "indices": "accessor_5697", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2092": { - "name": "ID2092", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5721", - "POSITION": "accessor_5719" - }, - "indices": "accessor_5717", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2098": { - "name": "ID2098", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5741", - "POSITION": "accessor_5739" - }, - "indices": "accessor_5737", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2104": { - "name": "ID2104", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5761", - "POSITION": "accessor_5759" - }, - "indices": "accessor_5757", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID211": { - "name": "ID211", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_625", - "POSITION": "accessor_623" - }, - "indices": "accessor_621", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2110": { - "name": "ID2110", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5781", - "POSITION": "accessor_5779" - }, - "indices": "accessor_5777", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2116": { - "name": "ID2116", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5801", - "POSITION": "accessor_5799" - }, - "indices": "accessor_5797", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2122": { - "name": "ID2122", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5821", - "POSITION": "accessor_5819" - }, - "indices": "accessor_5817", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2128": { - "name": "ID2128", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5841", - "POSITION": "accessor_5839" - }, - "indices": "accessor_5837", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2143": { - "name": "ID2143", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5863", - "POSITION": "accessor_5861" - }, - "indices": "accessor_5859", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2149": { - "name": "ID2149", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5883", - "POSITION": "accessor_5881" - }, - "indices": "accessor_5879", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2156": { - "name": "ID2156", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5903", - "POSITION": "accessor_5901" - }, - "indices": "accessor_5899", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2162": { - "name": "ID2162", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5923", - "POSITION": "accessor_5921" - }, - "indices": "accessor_5919", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2169": { - "name": "ID2169", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5943", - "POSITION": "accessor_5941" - }, - "indices": "accessor_5939", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID217": { - "name": "ID217", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_645", - "POSITION": "accessor_643" - }, - "indices": "accessor_641", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2175": { - "name": "ID2175", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5963", - "POSITION": "accessor_5961" - }, - "indices": "accessor_5959", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2181": { - "name": "ID2181", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_5983", - "POSITION": "accessor_5981" - }, - "indices": "accessor_5979", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2187": { - "name": "ID2187", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6003", - "POSITION": "accessor_6001" - }, - "indices": "accessor_5999", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2194": { - "name": "ID2194", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6023", - "POSITION": "accessor_6021" - }, - "indices": "accessor_6019", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2200": { - "name": "ID2200", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6043", - "POSITION": "accessor_6041" - }, - "indices": "accessor_6039", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2206": { - "name": "ID2206", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6063", - "POSITION": "accessor_6061" - }, - "indices": "accessor_6059", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2212": { - "name": "ID2212", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6083", - "POSITION": "accessor_6081" - }, - "indices": "accessor_6079", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2219": { - "name": "ID2219", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6103", - "POSITION": "accessor_6101" - }, - "indices": "accessor_6099", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2225": { - "name": "ID2225", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6123", - "POSITION": "accessor_6121" - }, - "indices": "accessor_6119", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID223": { - "name": "ID223", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_665", - "POSITION": "accessor_663" - }, - "indices": "accessor_661", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2231": { - "name": "ID2231", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6143", - "POSITION": "accessor_6141" - }, - "indices": "accessor_6139", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2237": { - "name": "ID2237", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6163", - "POSITION": "accessor_6161" - }, - "indices": "accessor_6159", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2244": { - "name": "ID2244", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6183", - "POSITION": "accessor_6181" - }, - "indices": "accessor_6179", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2250": { - "name": "ID2250", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6203", - "POSITION": "accessor_6201" - }, - "indices": "accessor_6199", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2256": { - "name": "ID2256", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6223", - "POSITION": "accessor_6221" - }, - "indices": "accessor_6219", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2262": { - "name": "ID2262", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6243", - "POSITION": "accessor_6241" - }, - "indices": "accessor_6239", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2269": { - "name": "ID2269", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6263", - "POSITION": "accessor_6261" - }, - "indices": "accessor_6259", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2275": { - "name": "ID2275", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6283", - "POSITION": "accessor_6281" - }, - "indices": "accessor_6279", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2281": { - "name": "ID2281", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6303", - "POSITION": "accessor_6301" - }, - "indices": "accessor_6299", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2287": { - "name": "ID2287", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6323", - "POSITION": "accessor_6321" - }, - "indices": "accessor_6319", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID229": { - "name": "ID229", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_685", - "POSITION": "accessor_683" - }, - "indices": "accessor_681", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2293": { - "name": "ID2293", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6343", - "POSITION": "accessor_6341" - }, - "indices": "accessor_6339", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2299": { - "name": "ID2299", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6363", - "POSITION": "accessor_6361" - }, - "indices": "accessor_6359", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID23": { - "name": "ID23", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_80", - "POSITION": "accessor_78" - }, - "indices": "accessor_76", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2305": { - "name": "ID2305", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6383", - "POSITION": "accessor_6381" - }, - "indices": "accessor_6379", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2311": { - "name": "ID2311", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6403", - "POSITION": "accessor_6401" - }, - "indices": "accessor_6399", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2317": { - "name": "ID2317", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6423", - "POSITION": "accessor_6421" - }, - "indices": "accessor_6419", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2323": { - "name": "ID2323", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6443", - "POSITION": "accessor_6441" - }, - "indices": "accessor_6439", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2329": { - "name": "ID2329", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6463", - "POSITION": "accessor_6461" - }, - "indices": "accessor_6459", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2335": { - "name": "ID2335", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6483", - "POSITION": "accessor_6481" - }, - "indices": "accessor_6479", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2341": { - "name": "ID2341", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6503", - "POSITION": "accessor_6501" - }, - "indices": "accessor_6499", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2347": { - "name": "ID2347", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6523", - "POSITION": "accessor_6521" - }, - "indices": "accessor_6519", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID235": { - "name": "ID235", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_705", - "POSITION": "accessor_703" - }, - "indices": "accessor_701", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2353": { - "name": "ID2353", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6543", - "POSITION": "accessor_6541" - }, - "indices": "accessor_6539", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2359": { - "name": "ID2359", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6563", - "POSITION": "accessor_6561" - }, - "indices": "accessor_6559", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2365": { - "name": "ID2365", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6583", - "POSITION": "accessor_6581" - }, - "indices": "accessor_6579", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2392": { - "name": "ID2392", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6608", - "POSITION": "accessor_6606" - }, - "indices": "accessor_6604", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2398": { - "name": "ID2398", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6628", - "POSITION": "accessor_6626" - }, - "indices": "accessor_6624", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2404": { - "name": "ID2404", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6648", - "POSITION": "accessor_6646" - }, - "indices": "accessor_6644", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID241": { - "name": "ID241", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_725", - "POSITION": "accessor_723" - }, - "indices": "accessor_721", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2410": { - "name": "ID2410", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6668", - "POSITION": "accessor_6666" - }, - "indices": "accessor_6664", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2416": { - "name": "ID2416", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6688", - "POSITION": "accessor_6686" - }, - "indices": "accessor_6684", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2422": { - "name": "ID2422", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6708", - "POSITION": "accessor_6706" - }, - "indices": "accessor_6704", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2428": { - "name": "ID2428", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6728", - "POSITION": "accessor_6726" - }, - "indices": "accessor_6724", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2434": { - "name": "ID2434", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6748", - "POSITION": "accessor_6746" - }, - "indices": "accessor_6744", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2440": { - "name": "ID2440", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6768", - "POSITION": "accessor_6766" - }, - "indices": "accessor_6764", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2446": { - "name": "ID2446", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6788", - "POSITION": "accessor_6786" - }, - "indices": "accessor_6784", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2452": { - "name": "ID2452", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6808", - "POSITION": "accessor_6806" - }, - "indices": "accessor_6804", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2458": { - "name": "ID2458", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6828", - "POSITION": "accessor_6826" - }, - "indices": "accessor_6824", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2464": { - "name": "ID2464", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6848", - "POSITION": "accessor_6846" - }, - "indices": "accessor_6844", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID247": { - "name": "ID247", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_745", - "POSITION": "accessor_743" - }, - "indices": "accessor_741", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2470": { - "name": "ID2470", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6868", - "POSITION": "accessor_6866" - }, - "indices": "accessor_6864", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2476": { - "name": "ID2476", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6888", - "POSITION": "accessor_6886" - }, - "indices": "accessor_6884", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2482": { - "name": "ID2482", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6908", - "POSITION": "accessor_6906" - }, - "indices": "accessor_6904", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2488": { - "name": "ID2488", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6928", - "POSITION": "accessor_6926" - }, - "indices": "accessor_6924", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2515": { - "name": "ID2515", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6953", - "POSITION": "accessor_6951" - }, - "indices": "accessor_6949", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID2522": { - "name": "ID2522", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6973", - "POSITION": "accessor_6971" - }, - "indices": "accessor_6969", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2528": { - "name": "ID2528", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_6993", - "POSITION": "accessor_6991" - }, - "indices": "accessor_6989", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID253": { - "name": "ID253", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_765", - "POSITION": "accessor_763" - }, - "indices": "accessor_761", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2534": { - "name": "ID2534", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7013", - "POSITION": "accessor_7011" - }, - "indices": "accessor_7009", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2540": { - "name": "ID2540", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7033", - "POSITION": "accessor_7031" - }, - "indices": "accessor_7029", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2546": { - "name": "ID2546", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7053", - "POSITION": "accessor_7051" - }, - "indices": "accessor_7049", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2552": { - "name": "ID2552", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7073", - "POSITION": "accessor_7071" - }, - "indices": "accessor_7069", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2558": { - "name": "ID2558", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7093", - "POSITION": "accessor_7091" - }, - "indices": "accessor_7089", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2564": { - "name": "ID2564", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7113", - "POSITION": "accessor_7111" - }, - "indices": "accessor_7109", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2570": { - "name": "ID2570", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7133", - "POSITION": "accessor_7131" - }, - "indices": "accessor_7129", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2576": { - "name": "ID2576", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7153", - "POSITION": "accessor_7151" - }, - "indices": "accessor_7149", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID259": { - "name": "ID259", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_785", - "POSITION": "accessor_783" - }, - "indices": "accessor_781", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2599": { - "name": "ID2599", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7177", - "POSITION": "accessor_7175" - }, - "indices": "accessor_7173", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID2606": { - "name": "ID2606", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7197", - "POSITION": "accessor_7195" - }, - "indices": "accessor_7193", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID2613": { - "name": "ID2613", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7217", - "POSITION": "accessor_7215" - }, - "indices": "accessor_7213", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID2620": { - "name": "ID2620", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7237", - "POSITION": "accessor_7235" - }, - "indices": "accessor_7233", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2626": { - "name": "ID2626", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7257", - "POSITION": "accessor_7255" - }, - "indices": "accessor_7253", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2632": { - "name": "ID2632", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7277", - "POSITION": "accessor_7275" - }, - "indices": "accessor_7273", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2639": { - "name": "ID2639", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7297", - "POSITION": "accessor_7295" - }, - "indices": "accessor_7293", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2645": { - "name": "ID2645", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7317", - "POSITION": "accessor_7315" - }, - "indices": "accessor_7313", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID265": { - "name": "ID265", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_805", - "POSITION": "accessor_803" - }, - "indices": "accessor_801", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2651": { - "name": "ID2651", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7337", - "POSITION": "accessor_7335" - }, - "indices": "accessor_7333", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2658": { - "name": "ID2658", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7357", - "POSITION": "accessor_7355" - }, - "indices": "accessor_7353", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2664": { - "name": "ID2664", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7377", - "POSITION": "accessor_7375" - }, - "indices": "accessor_7373", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2670": { - "name": "ID2670", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7397", - "POSITION": "accessor_7395" - }, - "indices": "accessor_7393", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2676": { - "name": "ID2676", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7417", - "POSITION": "accessor_7415" - }, - "indices": "accessor_7413", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2683": { - "name": "ID2683", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7437", - "POSITION": "accessor_7435" - }, - "indices": "accessor_7433", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2689": { - "name": "ID2689", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7457", - "POSITION": "accessor_7455" - }, - "indices": "accessor_7453", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2695": { - "name": "ID2695", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7477", - "POSITION": "accessor_7475" - }, - "indices": "accessor_7473", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2701": { - "name": "ID2701", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7497", - "POSITION": "accessor_7495" - }, - "indices": "accessor_7493", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2708": { - "name": "ID2708", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7517", - "POSITION": "accessor_7515" - }, - "indices": "accessor_7513", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID271": { - "name": "ID271", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_825", - "POSITION": "accessor_823" - }, - "indices": "accessor_821", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2714": { - "name": "ID2714", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7537", - "POSITION": "accessor_7535" - }, - "indices": "accessor_7533", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2720": { - "name": "ID2720", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7557", - "POSITION": "accessor_7555" - }, - "indices": "accessor_7553", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2726": { - "name": "ID2726", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7577", - "POSITION": "accessor_7575" - }, - "indices": "accessor_7573", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2732": { - "name": "ID2732", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7597", - "POSITION": "accessor_7595" - }, - "indices": "accessor_7593", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2738": { - "name": "ID2738", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7617", - "POSITION": "accessor_7615" - }, - "indices": "accessor_7613", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2745": { - "name": "ID2745", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7637", - "POSITION": "accessor_7635" - }, - "indices": "accessor_7633", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2751": { - "name": "ID2751", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7657", - "POSITION": "accessor_7655" - }, - "indices": "accessor_7653", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2757": { - "name": "ID2757", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7677", - "POSITION": "accessor_7675" - }, - "indices": "accessor_7673", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2763": { - "name": "ID2763", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7697", - "POSITION": "accessor_7695" - }, - "indices": "accessor_7693", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2769": { - "name": "ID2769", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7717", - "POSITION": "accessor_7715" - }, - "indices": "accessor_7713", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID277": { - "name": "ID277", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_845", - "POSITION": "accessor_843" - }, - "indices": "accessor_841", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2775": { - "name": "ID2775", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7737", - "POSITION": "accessor_7735" - }, - "indices": "accessor_7733", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2782": { - "name": "ID2782", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7757", - "POSITION": "accessor_7755" - }, - "indices": "accessor_7753", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2789": { - "name": "ID2789", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7777", - "POSITION": "accessor_7775" - }, - "indices": "accessor_7773", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2795": { - "name": "ID2795", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7797", - "POSITION": "accessor_7795" - }, - "indices": "accessor_7793", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2814": { - "name": "ID2814", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7820", - "POSITION": "accessor_7818" - }, - "indices": "accessor_7816", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2820": { - "name": "ID2820", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7840", - "POSITION": "accessor_7838" - }, - "indices": "accessor_7836", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2826": { - "name": "ID2826", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7860", - "POSITION": "accessor_7858" - }, - "indices": "accessor_7856", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID283": { - "name": "ID283", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_865", - "POSITION": "accessor_863" - }, - "indices": "accessor_861", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2832": { - "name": "ID2832", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7880", - "POSITION": "accessor_7878" - }, - "indices": "accessor_7876", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2838": { - "name": "ID2838", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7900", - "POSITION": "accessor_7898" - }, - "indices": "accessor_7896", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2844": { - "name": "ID2844", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7920", - "POSITION": "accessor_7918" - }, - "indices": "accessor_7916", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2850": { - "name": "ID2850", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7940", - "POSITION": "accessor_7938" - }, - "indices": "accessor_7936", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2857": { - "name": "ID2857", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7960", - "POSITION": "accessor_7958" - }, - "indices": "accessor_7956", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2864": { - "name": "ID2864", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_7980", - "POSITION": "accessor_7978" - }, - "indices": "accessor_7976", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2870": { - "name": "ID2870", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8000", - "POSITION": "accessor_7998" - }, - "indices": "accessor_7996", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2889": { - "name": "ID2889", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8023", - "POSITION": "accessor_8021" - }, - "indices": "accessor_8019", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID289": { - "name": "ID289", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_885", - "POSITION": "accessor_883" - }, - "indices": "accessor_881", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2895": { - "name": "ID2895", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8043", - "POSITION": "accessor_8041" - }, - "indices": "accessor_8039", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID29": { - "name": "ID29", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_100", - "POSITION": "accessor_98" - }, - "indices": "accessor_96", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID2901": { - "name": "ID2901", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8063", - "POSITION": "accessor_8061" - }, - "indices": "accessor_8059", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2907": { - "name": "ID2907", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8083", - "POSITION": "accessor_8081" - }, - "indices": "accessor_8079", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2918": { - "name": "ID2918", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8104", - "POSITION": "accessor_8102" - }, - "indices": "accessor_8100", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2924": { - "name": "ID2924", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8124", - "POSITION": "accessor_8122" - }, - "indices": "accessor_8120", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2930": { - "name": "ID2930", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8144", - "POSITION": "accessor_8142" - }, - "indices": "accessor_8140", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2936": { - "name": "ID2936", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8164", - "POSITION": "accessor_8162" - }, - "indices": "accessor_8160", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID2947": { - "name": "ID2947", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8200", - "POSITION": "accessor_8198" - }, - "indices": "accessor_8193", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8200", - "POSITION": "accessor_8198" - }, - "indices": "accessor_8196", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID295": { - "name": "ID295", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_905", - "POSITION": "accessor_903" - }, - "indices": "accessor_901", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID2953": { - "name": "ID2953", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8235", - "POSITION": "accessor_8233" - }, - "indices": "accessor_8228", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8235", - "POSITION": "accessor_8233" - }, - "indices": "accessor_8231", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID2959": { - "name": "ID2959", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8270", - "POSITION": "accessor_8268" - }, - "indices": "accessor_8263", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8270", - "POSITION": "accessor_8268" - }, - "indices": "accessor_8266", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID2965": { - "name": "ID2965", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8305", - "POSITION": "accessor_8303" - }, - "indices": "accessor_8298", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8305", - "POSITION": "accessor_8303" - }, - "indices": "accessor_8301", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID2971": { - "name": "ID2971", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8340", - "POSITION": "accessor_8338" - }, - "indices": "accessor_8333", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8340", - "POSITION": "accessor_8338" - }, - "indices": "accessor_8336", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID2977": { - "name": "ID2977", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8375", - "POSITION": "accessor_8373" - }, - "indices": "accessor_8368", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8375", - "POSITION": "accessor_8373" - }, - "indices": "accessor_8371", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID3": { - "name": "ID3", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_20", - "POSITION": "accessor_18" - }, - "indices": "accessor_16", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3006": { - "name": "ID3006", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8400", - "POSITION": "accessor_8398" - }, - "indices": "accessor_8396", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID301": { - "name": "ID301", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_925", - "POSITION": "accessor_923" - }, - "indices": "accessor_921", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3012": { - "name": "ID3012", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8420", - "POSITION": "accessor_8418" - }, - "indices": "accessor_8416", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3018": { - "name": "ID3018", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8440", - "POSITION": "accessor_8438" - }, - "indices": "accessor_8436", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3024": { - "name": "ID3024", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8460", - "POSITION": "accessor_8458" - }, - "indices": "accessor_8456", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3030": { - "name": "ID3030", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8480", - "POSITION": "accessor_8478" - }, - "indices": "accessor_8476", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3036": { - "name": "ID3036", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8500", - "POSITION": "accessor_8498" - }, - "indices": "accessor_8496", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3042": { - "name": "ID3042", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8520", - "POSITION": "accessor_8518" - }, - "indices": "accessor_8516", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3048": { - "name": "ID3048", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8540", - "POSITION": "accessor_8538" - }, - "indices": "accessor_8536", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3063": { - "name": "ID3063", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8562", - "POSITION": "accessor_8560" - }, - "indices": "accessor_8558", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3069": { - "name": "ID3069", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8582", - "POSITION": "accessor_8580" - }, - "indices": "accessor_8578", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID307": { - "name": "ID307", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_945", - "POSITION": "accessor_943" - }, - "indices": "accessor_941", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3075": { - "name": "ID3075", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8602", - "POSITION": "accessor_8600" - }, - "indices": "accessor_8598", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3081": { - "name": "ID3081", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8622", - "POSITION": "accessor_8620" - }, - "indices": "accessor_8618", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3087": { - "name": "ID3087", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8642", - "POSITION": "accessor_8640" - }, - "indices": "accessor_8638", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3093": { - "name": "ID3093", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8662", - "POSITION": "accessor_8660" - }, - "indices": "accessor_8658", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3120": { - "name": "ID3120", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8687", - "POSITION": "accessor_8685" - }, - "indices": "accessor_8683", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3126": { - "name": "ID3126", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8707", - "POSITION": "accessor_8705" - }, - "indices": "accessor_8703", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID313": { - "name": "ID313", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_965", - "POSITION": "accessor_963" - }, - "indices": "accessor_961", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3132": { - "name": "ID3132", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8727", - "POSITION": "accessor_8725" - }, - "indices": "accessor_8723", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3138": { - "name": "ID3138", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8747", - "POSITION": "accessor_8745" - }, - "indices": "accessor_8743", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3144": { - "name": "ID3144", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8767", - "POSITION": "accessor_8765" - }, - "indices": "accessor_8763", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3155": { - "name": "ID3155", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8788", - "POSITION": "accessor_8786" - }, - "indices": "accessor_8784", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3161": { - "name": "ID3161", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8808", - "POSITION": "accessor_8806" - }, - "indices": "accessor_8804", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3167": { - "name": "ID3167", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8828", - "POSITION": "accessor_8826" - }, - "indices": "accessor_8824", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3173": { - "name": "ID3173", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8848", - "POSITION": "accessor_8846" - }, - "indices": "accessor_8844", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3179": { - "name": "ID3179", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8868", - "POSITION": "accessor_8866" - }, - "indices": "accessor_8864", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID319": { - "name": "ID319", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_985", - "POSITION": "accessor_983" - }, - "indices": "accessor_981", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3190": { - "name": "ID3190", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8889", - "POSITION": "accessor_8887" - }, - "indices": "accessor_8885", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID3197": { - "name": "ID3197", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8924", - "POSITION": "accessor_8922" - }, - "indices": "accessor_8917", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_8924", - "POSITION": "accessor_8922" - }, - "indices": "accessor_8920", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID3204": { - "name": "ID3204", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8944", - "POSITION": "accessor_8942" - }, - "indices": "accessor_8940", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3210": { - "name": "ID3210", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8964", - "POSITION": "accessor_8962" - }, - "indices": "accessor_8960", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3217": { - "name": "ID3217", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_8984", - "POSITION": "accessor_8982" - }, - "indices": "accessor_8980", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3223": { - "name": "ID3223", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9004", - "POSITION": "accessor_9002" - }, - "indices": "accessor_9000", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3230": { - "name": "ID3230", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9024", - "POSITION": "accessor_9022" - }, - "indices": "accessor_9020", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3236": { - "name": "ID3236", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9044", - "POSITION": "accessor_9042" - }, - "indices": "accessor_9040", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3242": { - "name": "ID3242", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9064", - "POSITION": "accessor_9062" - }, - "indices": "accessor_9060", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3248": { - "name": "ID3248", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9084", - "POSITION": "accessor_9082" - }, - "indices": "accessor_9080", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID325": { - "name": "ID325", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1005", - "POSITION": "accessor_1003" - }, - "indices": "accessor_1001", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3255": { - "name": "ID3255", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9104", - "POSITION": "accessor_9102" - }, - "indices": "accessor_9100", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3262": { - "name": "ID3262", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9124", - "POSITION": "accessor_9122" - }, - "indices": "accessor_9120", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3269": { - "name": "ID3269", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9144", - "POSITION": "accessor_9142" - }, - "indices": "accessor_9140", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3275": { - "name": "ID3275", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9164", - "POSITION": "accessor_9162" - }, - "indices": "accessor_9160", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3281": { - "name": "ID3281", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9184", - "POSITION": "accessor_9182" - }, - "indices": "accessor_9180", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3287": { - "name": "ID3287", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9204", - "POSITION": "accessor_9202" - }, - "indices": "accessor_9200", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3293": { - "name": "ID3293", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9224", - "POSITION": "accessor_9222" - }, - "indices": "accessor_9220", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3299": { - "name": "ID3299", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9244", - "POSITION": "accessor_9242" - }, - "indices": "accessor_9240", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3305": { - "name": "ID3305", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9264", - "POSITION": "accessor_9262" - }, - "indices": "accessor_9260", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID331": { - "name": "ID331", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1025", - "POSITION": "accessor_1023" - }, - "indices": "accessor_1021", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3311": { - "name": "ID3311", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9284", - "POSITION": "accessor_9282" - }, - "indices": "accessor_9280", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3317": { - "name": "ID3317", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9304", - "POSITION": "accessor_9302" - }, - "indices": "accessor_9300", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3323": { - "name": "ID3323", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9324", - "POSITION": "accessor_9322" - }, - "indices": "accessor_9320", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3338": { - "name": "ID3338", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9346", - "POSITION": "accessor_9344" - }, - "indices": "accessor_9342", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3344": { - "name": "ID3344", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9366", - "POSITION": "accessor_9364" - }, - "indices": "accessor_9362", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3350": { - "name": "ID3350", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9386", - "POSITION": "accessor_9384" - }, - "indices": "accessor_9382", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3356": { - "name": "ID3356", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9406", - "POSITION": "accessor_9404" - }, - "indices": "accessor_9402", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3362": { - "name": "ID3362", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9426", - "POSITION": "accessor_9424" - }, - "indices": "accessor_9422", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3368": { - "name": "ID3368", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9446", - "POSITION": "accessor_9444" - }, - "indices": "accessor_9442", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID337": { - "name": "ID337", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1045", - "POSITION": "accessor_1043" - }, - "indices": "accessor_1041", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3374": { - "name": "ID3374", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9466", - "POSITION": "accessor_9464" - }, - "indices": "accessor_9462", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3380": { - "name": "ID3380", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9486", - "POSITION": "accessor_9484" - }, - "indices": "accessor_9482", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3386": { - "name": "ID3386", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9506", - "POSITION": "accessor_9504" - }, - "indices": "accessor_9502", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3392": { - "name": "ID3392", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9526", - "POSITION": "accessor_9524" - }, - "indices": "accessor_9522", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3407": { - "name": "ID3407", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9548", - "POSITION": "accessor_9546" - }, - "indices": "accessor_9544", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3413": { - "name": "ID3413", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9568", - "POSITION": "accessor_9566" - }, - "indices": "accessor_9564", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3419": { - "name": "ID3419", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9588", - "POSITION": "accessor_9586" - }, - "indices": "accessor_9584", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3425": { - "name": "ID3425", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9608", - "POSITION": "accessor_9606" - }, - "indices": "accessor_9604", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID343": { - "name": "ID343", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1065", - "POSITION": "accessor_1063" - }, - "indices": "accessor_1061", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3431": { - "name": "ID3431", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9628", - "POSITION": "accessor_9626" - }, - "indices": "accessor_9624", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3442": { - "name": "ID3442", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9649", - "POSITION": "accessor_9647" - }, - "indices": "accessor_9645", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3448": { - "name": "ID3448", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9669", - "POSITION": "accessor_9667" - }, - "indices": "accessor_9665", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3454": { - "name": "ID3454", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9689", - "POSITION": "accessor_9687" - }, - "indices": "accessor_9685", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3460": { - "name": "ID3460", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9709", - "POSITION": "accessor_9707" - }, - "indices": "accessor_9705", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3466": { - "name": "ID3466", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9729", - "POSITION": "accessor_9727" - }, - "indices": "accessor_9725", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3472": { - "name": "ID3472", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9749", - "POSITION": "accessor_9747" - }, - "indices": "accessor_9745", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3478": { - "name": "ID3478", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9769", - "POSITION": "accessor_9767" - }, - "indices": "accessor_9765", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3484": { - "name": "ID3484", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9789", - "POSITION": "accessor_9787" - }, - "indices": "accessor_9785", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID349": { - "name": "ID349", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1085", - "POSITION": "accessor_1083" - }, - "indices": "accessor_1081", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3490": { - "name": "ID3490", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9809", - "POSITION": "accessor_9807" - }, - "indices": "accessor_9805", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3496": { - "name": "ID3496", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9829", - "POSITION": "accessor_9827" - }, - "indices": "accessor_9825", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID35": { - "name": "ID35", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_120", - "POSITION": "accessor_118" - }, - "indices": "accessor_116", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3511": { - "name": "ID3511", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9851", - "POSITION": "accessor_9849" - }, - "indices": "accessor_9847", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID3518": { - "name": "ID3518", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9871", - "POSITION": "accessor_9869" - }, - "indices": "accessor_9867", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3524": { - "name": "ID3524", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9891", - "POSITION": "accessor_9889" - }, - "indices": "accessor_9887", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3530": { - "name": "ID3530", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9911", - "POSITION": "accessor_9909" - }, - "indices": "accessor_9907", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3536": { - "name": "ID3536", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9931", - "POSITION": "accessor_9929" - }, - "indices": "accessor_9927", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3542": { - "name": "ID3542", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9951", - "POSITION": "accessor_9949" - }, - "indices": "accessor_9947", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3548": { - "name": "ID3548", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9971", - "POSITION": "accessor_9969" - }, - "indices": "accessor_9967", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID355": { - "name": "ID355", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1105", - "POSITION": "accessor_1103" - }, - "indices": "accessor_1101", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3554": { - "name": "ID3554", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_9991", - "POSITION": "accessor_9989" - }, - "indices": "accessor_9987", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3560": { - "name": "ID3560", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10011", - "POSITION": "accessor_10009" - }, - "indices": "accessor_10007", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3587": { - "name": "ID3587", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10036", - "POSITION": "accessor_10034" - }, - "indices": "accessor_10032", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3602": { - "name": "ID3602", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10058", - "POSITION": "accessor_10056" - }, - "indices": "accessor_10054", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3608": { - "name": "ID3608", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10078", - "POSITION": "accessor_10076" - }, - "indices": "accessor_10074", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3614": { - "name": "ID3614", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10098", - "POSITION": "accessor_10096" - }, - "indices": "accessor_10094", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3620": { - "name": "ID3620", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10118", - "POSITION": "accessor_10116" - }, - "indices": "accessor_10114", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3626": { - "name": "ID3626", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10138", - "POSITION": "accessor_10136" - }, - "indices": "accessor_10134", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3632": { - "name": "ID3632", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10158", - "POSITION": "accessor_10156" - }, - "indices": "accessor_10154", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3638": { - "name": "ID3638", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10178", - "POSITION": "accessor_10176" - }, - "indices": "accessor_10174", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3644": { - "name": "ID3644", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10198", - "POSITION": "accessor_10196" - }, - "indices": "accessor_10194", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3650": { - "name": "ID3650", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10218", - "POSITION": "accessor_10216" - }, - "indices": "accessor_10214", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3657": { - "name": "ID3657", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10238", - "POSITION": "accessor_10236" - }, - "indices": "accessor_10234", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID3672": { - "name": "ID3672", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10260", - "POSITION": "accessor_10258" - }, - "indices": "accessor_10256", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3678": { - "name": "ID3678", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10280", - "POSITION": "accessor_10278" - }, - "indices": "accessor_10276", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3684": { - "name": "ID3684", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10300", - "POSITION": "accessor_10298" - }, - "indices": "accessor_10296", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3690": { - "name": "ID3690", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10320", - "POSITION": "accessor_10318" - }, - "indices": "accessor_10316", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3696": { - "name": "ID3696", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10340", - "POSITION": "accessor_10338" - }, - "indices": "accessor_10336", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3702": { - "name": "ID3702", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10360", - "POSITION": "accessor_10358" - }, - "indices": "accessor_10356", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3708": { - "name": "ID3708", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10380", - "POSITION": "accessor_10378" - }, - "indices": "accessor_10376", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3714": { - "name": "ID3714", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10400", - "POSITION": "accessor_10398" - }, - "indices": "accessor_10396", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3720": { - "name": "ID3720", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10420", - "POSITION": "accessor_10418" - }, - "indices": "accessor_10416", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3726": { - "name": "ID3726", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10440", - "POSITION": "accessor_10438" - }, - "indices": "accessor_10436", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3732": { - "name": "ID3732", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10460", - "POSITION": "accessor_10458" - }, - "indices": "accessor_10456", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3738": { - "name": "ID3738", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10480", - "POSITION": "accessor_10478" - }, - "indices": "accessor_10476", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3761": { - "name": "ID3761", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10504", - "POSITION": "accessor_10502" - }, - "indices": "accessor_10500", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3767": { - "name": "ID3767", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10524", - "POSITION": "accessor_10522" - }, - "indices": "accessor_10520", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3773": { - "name": "ID3773", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10544", - "POSITION": "accessor_10542" - }, - "indices": "accessor_10540", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3779": { - "name": "ID3779", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10564", - "POSITION": "accessor_10562" - }, - "indices": "accessor_10560", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3785": { - "name": "ID3785", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10584", - "POSITION": "accessor_10582" - }, - "indices": "accessor_10580", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3791": { - "name": "ID3791", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10604", - "POSITION": "accessor_10602" - }, - "indices": "accessor_10600", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3797": { - "name": "ID3797", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10624", - "POSITION": "accessor_10622" - }, - "indices": "accessor_10620", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3803": { - "name": "ID3803", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10644", - "POSITION": "accessor_10642" - }, - "indices": "accessor_10640", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3818": { - "name": "ID3818", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10666", - "POSITION": "accessor_10664" - }, - "indices": "accessor_10662", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3824": { - "name": "ID3824", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10686", - "POSITION": "accessor_10684" - }, - "indices": "accessor_10682", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3830": { - "name": "ID3830", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10706", - "POSITION": "accessor_10704" - }, - "indices": "accessor_10702", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3836": { - "name": "ID3836", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10726", - "POSITION": "accessor_10724" - }, - "indices": "accessor_10722", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3842": { - "name": "ID3842", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10746", - "POSITION": "accessor_10744" - }, - "indices": "accessor_10742", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3848": { - "name": "ID3848", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10766", - "POSITION": "accessor_10764" - }, - "indices": "accessor_10762", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3854": { - "name": "ID3854", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10786", - "POSITION": "accessor_10784" - }, - "indices": "accessor_10782", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3860": { - "name": "ID3860", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10806", - "POSITION": "accessor_10804" - }, - "indices": "accessor_10802", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3866": { - "name": "ID3866", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10826", - "POSITION": "accessor_10824" - }, - "indices": "accessor_10822", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3872": { - "name": "ID3872", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10846", - "POSITION": "accessor_10844" - }, - "indices": "accessor_10842", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3878": { - "name": "ID3878", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10866", - "POSITION": "accessor_10864" - }, - "indices": "accessor_10862", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3884": { - "name": "ID3884", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10886", - "POSITION": "accessor_10884" - }, - "indices": "accessor_10882", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3907": { - "name": "ID3907", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10910", - "POSITION": "accessor_10908" - }, - "indices": "accessor_10906", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3913": { - "name": "ID3913", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10930", - "POSITION": "accessor_10928" - }, - "indices": "accessor_10926", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3919": { - "name": "ID3919", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10950", - "POSITION": "accessor_10948" - }, - "indices": "accessor_10946", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3925": { - "name": "ID3925", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10970", - "POSITION": "accessor_10968" - }, - "indices": "accessor_10966", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3931": { - "name": "ID3931", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_10990", - "POSITION": "accessor_10988" - }, - "indices": "accessor_10986", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3937": { - "name": "ID3937", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11010", - "POSITION": "accessor_11008" - }, - "indices": "accessor_11006", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3943": { - "name": "ID3943", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11030", - "POSITION": "accessor_11028" - }, - "indices": "accessor_11026", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3949": { - "name": "ID3949", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11050", - "POSITION": "accessor_11048" - }, - "indices": "accessor_11046", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3955": { - "name": "ID3955", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11070", - "POSITION": "accessor_11068" - }, - "indices": "accessor_11066", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3961": { - "name": "ID3961", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11090", - "POSITION": "accessor_11088" - }, - "indices": "accessor_11086", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3967": { - "name": "ID3967", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11110", - "POSITION": "accessor_11108" - }, - "indices": "accessor_11106", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3973": { - "name": "ID3973", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11130", - "POSITION": "accessor_11128" - }, - "indices": "accessor_11126", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID3996": { - "name": "ID3996", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11154", - "POSITION": "accessor_11152" - }, - "indices": "accessor_11150", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4002": { - "name": "ID4002", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11174", - "POSITION": "accessor_11172" - }, - "indices": "accessor_11170", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4008": { - "name": "ID4008", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11194", - "POSITION": "accessor_11192" - }, - "indices": "accessor_11190", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4014": { - "name": "ID4014", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11214", - "POSITION": "accessor_11212" - }, - "indices": "accessor_11210", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4020": { - "name": "ID4020", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11234", - "POSITION": "accessor_11232" - }, - "indices": "accessor_11230", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4026": { - "name": "ID4026", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11254", - "POSITION": "accessor_11252" - }, - "indices": "accessor_11250", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4033": { - "name": "ID4033", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11274", - "POSITION": "accessor_11272" - }, - "indices": "accessor_11270", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4039": { - "name": "ID4039", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11294", - "POSITION": "accessor_11292" - }, - "indices": "accessor_11290", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4045": { - "name": "ID4045", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11314", - "POSITION": "accessor_11312" - }, - "indices": "accessor_11310", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4051": { - "name": "ID4051", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11334", - "POSITION": "accessor_11332" - }, - "indices": "accessor_11330", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4057": { - "name": "ID4057", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11354", - "POSITION": "accessor_11352" - }, - "indices": "accessor_11350", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4063": { - "name": "ID4063", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11374", - "POSITION": "accessor_11372" - }, - "indices": "accessor_11370", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4070": { - "name": "ID4070", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11394", - "POSITION": "accessor_11392" - }, - "indices": "accessor_11390", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4077": { - "name": "ID4077", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11414", - "POSITION": "accessor_11412" - }, - "indices": "accessor_11410", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID408": { - "name": "ID408", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1136", - "POSITION": "accessor_1134" - }, - "indices": "accessor_1132", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4083": { - "name": "ID4083", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11434", - "POSITION": "accessor_11432" - }, - "indices": "accessor_11430", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4089": { - "name": "ID4089", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11454", - "POSITION": "accessor_11452" - }, - "indices": "accessor_11450", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4095": { - "name": "ID4095", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11474", - "POSITION": "accessor_11472" - }, - "indices": "accessor_11470", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID41": { - "name": "ID41", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_140", - "POSITION": "accessor_138" - }, - "indices": "accessor_136", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4101": { - "name": "ID4101", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11494", - "POSITION": "accessor_11492" - }, - "indices": "accessor_11490", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4107": { - "name": "ID4107", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11514", - "POSITION": "accessor_11512" - }, - "indices": "accessor_11510", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4113": { - "name": "ID4113", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11534", - "POSITION": "accessor_11532" - }, - "indices": "accessor_11530", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4119": { - "name": "ID4119", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11554", - "POSITION": "accessor_11552" - }, - "indices": "accessor_11550", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4134": { - "name": "ID4134", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11576", - "POSITION": "accessor_11574" - }, - "indices": "accessor_11572", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID414": { - "name": "ID414", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1156", - "POSITION": "accessor_1154" - }, - "indices": "accessor_1152", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4141": { - "name": "ID4141", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11596", - "POSITION": "accessor_11594" - }, - "indices": "accessor_11592", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4147": { - "name": "ID4147", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11616", - "POSITION": "accessor_11614" - }, - "indices": "accessor_11612", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4153": { - "name": "ID4153", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11636", - "POSITION": "accessor_11634" - }, - "indices": "accessor_11632", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4159": { - "name": "ID4159", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11656", - "POSITION": "accessor_11654" - }, - "indices": "accessor_11652", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4165": { - "name": "ID4165", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11676", - "POSITION": "accessor_11674" - }, - "indices": "accessor_11672", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4176": { - "name": "ID4176", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11697", - "POSITION": "accessor_11695" - }, - "indices": "accessor_11693", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4182": { - "name": "ID4182", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11717", - "POSITION": "accessor_11715" - }, - "indices": "accessor_11713", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4188": { - "name": "ID4188", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11737", - "POSITION": "accessor_11735" - }, - "indices": "accessor_11733", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4194": { - "name": "ID4194", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11757", - "POSITION": "accessor_11755" - }, - "indices": "accessor_11753", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID420": { - "name": "ID420", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1176", - "POSITION": "accessor_1174" - }, - "indices": "accessor_1172", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4200": { - "name": "ID4200", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11777", - "POSITION": "accessor_11775" - }, - "indices": "accessor_11773", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4235": { - "name": "ID4235", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11804", - "POSITION": "accessor_11802" - }, - "indices": "accessor_11800", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4241": { - "name": "ID4241", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11824", - "POSITION": "accessor_11822" - }, - "indices": "accessor_11820", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4247": { - "name": "ID4247", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11844", - "POSITION": "accessor_11842" - }, - "indices": "accessor_11840", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4253": { - "name": "ID4253", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11864", - "POSITION": "accessor_11862" - }, - "indices": "accessor_11860", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4259": { - "name": "ID4259", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11884", - "POSITION": "accessor_11882" - }, - "indices": "accessor_11880", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID426": { - "name": "ID426", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1196", - "POSITION": "accessor_1194" - }, - "indices": "accessor_1192", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4294": { - "name": "ID4294", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11911", - "POSITION": "accessor_11909" - }, - "indices": "accessor_11907", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4300": { - "name": "ID4300", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11931", - "POSITION": "accessor_11929" - }, - "indices": "accessor_11927", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4306": { - "name": "ID4306", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11951", - "POSITION": "accessor_11949" - }, - "indices": "accessor_11947", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4312": { - "name": "ID4312", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11971", - "POSITION": "accessor_11969" - }, - "indices": "accessor_11967", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4318": { - "name": "ID4318", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_11991", - "POSITION": "accessor_11989" - }, - "indices": "accessor_11987", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID432": { - "name": "ID432", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1216", - "POSITION": "accessor_1214" - }, - "indices": "accessor_1212", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4329": { - "name": "ID4329", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12012", - "POSITION": "accessor_12010" - }, - "indices": "accessor_12008", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID4336": { - "name": "ID4336", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12032", - "POSITION": "accessor_12030" - }, - "indices": "accessor_12028", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4342": { - "name": "ID4342", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12052", - "POSITION": "accessor_12050" - }, - "indices": "accessor_12048", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4348": { - "name": "ID4348", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12072", - "POSITION": "accessor_12070" - }, - "indices": "accessor_12068", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4355": { - "name": "ID4355", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12092", - "POSITION": "accessor_12090" - }, - "indices": "accessor_12088", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID4362": { - "name": "ID4362", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12112", - "POSITION": "accessor_12110" - }, - "indices": "accessor_12108", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4368": { - "name": "ID4368", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12132", - "POSITION": "accessor_12130" - }, - "indices": "accessor_12128", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4374": { - "name": "ID4374", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12152", - "POSITION": "accessor_12150" - }, - "indices": "accessor_12148", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID438": { - "name": "ID438", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1236", - "POSITION": "accessor_1234" - }, - "indices": "accessor_1232", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4381": { - "name": "ID4381", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12172", - "POSITION": "accessor_12170" - }, - "indices": "accessor_12168", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4387": { - "name": "ID4387", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12192", - "POSITION": "accessor_12190" - }, - "indices": "accessor_12188", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4393": { - "name": "ID4393", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12212", - "POSITION": "accessor_12210" - }, - "indices": "accessor_12208", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4400": { - "name": "ID4400", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12232", - "POSITION": "accessor_12230" - }, - "indices": "accessor_12228", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4406": { - "name": "ID4406", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12252", - "POSITION": "accessor_12250" - }, - "indices": "accessor_12248", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4412": { - "name": "ID4412", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12272", - "POSITION": "accessor_12270" - }, - "indices": "accessor_12268", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4419": { - "name": "ID4419", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12292", - "POSITION": "accessor_12290" - }, - "indices": "accessor_12288", - "material": "ID1683", - "primitive": 4 - } - ] - }, - "ID4426": { - "name": "ID4426", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12327", - "POSITION": "accessor_12325" - }, - "indices": "accessor_12320", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_12327", - "POSITION": "accessor_12325" - }, - "indices": "accessor_12323", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID4433": { - "name": "ID4433", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12362", - "POSITION": "accessor_12360" - }, - "indices": "accessor_12355", - "material": "ID1772", - "primitive": 4 - }, - { - "attributes": { - "NORMAL": "accessor_12362", - "POSITION": "accessor_12360" - }, - "indices": "accessor_12358", - "material": "ID1777", - "primitive": 4 - } - ] - }, - "ID444": { - "name": "ID444", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1256", - "POSITION": "accessor_1254" - }, - "indices": "accessor_1252", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4441": { - "name": "ID4441", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12382", - "POSITION": "accessor_12380" - }, - "indices": "accessor_12378", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4447": { - "name": "ID4447", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12402", - "POSITION": "accessor_12400" - }, - "indices": "accessor_12398", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4453": { - "name": "ID4453", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12422", - "POSITION": "accessor_12420" - }, - "indices": "accessor_12418", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4459": { - "name": "ID4459", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12442", - "POSITION": "accessor_12440" - }, - "indices": "accessor_12438", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4465": { - "name": "ID4465", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12462", - "POSITION": "accessor_12460" - }, - "indices": "accessor_12458", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4471": { - "name": "ID4471", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12482", - "POSITION": "accessor_12480" - }, - "indices": "accessor_12478", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4477": { - "name": "ID4477", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12502", - "POSITION": "accessor_12500" - }, - "indices": "accessor_12498", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4483": { - "name": "ID4483", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12522", - "POSITION": "accessor_12520" - }, - "indices": "accessor_12518", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4489": { - "name": "ID4489", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12542", - "POSITION": "accessor_12540" - }, - "indices": "accessor_12538", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4495": { - "name": "ID4495", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12562", - "POSITION": "accessor_12560" - }, - "indices": "accessor_12558", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID450": { - "name": "ID450", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1276", - "POSITION": "accessor_1274" - }, - "indices": "accessor_1272", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4501": { - "name": "ID4501", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12582", - "POSITION": "accessor_12580" - }, - "indices": "accessor_12578", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4507": { - "name": "ID4507", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12602", - "POSITION": "accessor_12600" - }, - "indices": "accessor_12598", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4513": { - "name": "ID4513", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12622", - "POSITION": "accessor_12620" - }, - "indices": "accessor_12618", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4519": { - "name": "ID4519", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12642", - "POSITION": "accessor_12640" - }, - "indices": "accessor_12638", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4525": { - "name": "ID4525", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12662", - "POSITION": "accessor_12660" - }, - "indices": "accessor_12658", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4531": { - "name": "ID4531", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12682", - "POSITION": "accessor_12680" - }, - "indices": "accessor_12678", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4537": { - "name": "ID4537", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12702", - "POSITION": "accessor_12700" - }, - "indices": "accessor_12698", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4543": { - "name": "ID4543", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12722", - "POSITION": "accessor_12720" - }, - "indices": "accessor_12718", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4549": { - "name": "ID4549", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12742", - "POSITION": "accessor_12740" - }, - "indices": "accessor_12738", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4555": { - "name": "ID4555", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12762", - "POSITION": "accessor_12760" - }, - "indices": "accessor_12758", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID456": { - "name": "ID456", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1296", - "POSITION": "accessor_1294" - }, - "indices": "accessor_1292", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4561": { - "name": "ID4561", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12782", - "POSITION": "accessor_12780" - }, - "indices": "accessor_12778", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4567": { - "name": "ID4567", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12802", - "POSITION": "accessor_12800" - }, - "indices": "accessor_12798", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID462": { - "name": "ID462", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1316", - "POSITION": "accessor_1314" - }, - "indices": "accessor_1312", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID468": { - "name": "ID468", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1336", - "POSITION": "accessor_1334" - }, - "indices": "accessor_1332", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID47": { - "name": "ID47", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_160", - "POSITION": "accessor_158" - }, - "indices": "accessor_156", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID4702": { - "name": "ID4702", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12854", - "POSITION": "accessor_12852" - }, - "indices": "accessor_12850", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4708": { - "name": "ID4708", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12874", - "POSITION": "accessor_12872" - }, - "indices": "accessor_12870", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4714": { - "name": "ID4714", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12894", - "POSITION": "accessor_12892" - }, - "indices": "accessor_12890", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4726": { - "name": "ID4726", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12915", - "POSITION": "accessor_12913" - }, - "indices": "accessor_12911", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4732": { - "name": "ID4732", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12935", - "POSITION": "accessor_12933" - }, - "indices": "accessor_12931", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4738": { - "name": "ID4738", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12955", - "POSITION": "accessor_12953" - }, - "indices": "accessor_12951", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID474": { - "name": "ID474", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1356", - "POSITION": "accessor_1354" - }, - "indices": "accessor_1352", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4744": { - "name": "ID4744", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12975", - "POSITION": "accessor_12973" - }, - "indices": "accessor_12971", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4750": { - "name": "ID4750", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_12995", - "POSITION": "accessor_12993" - }, - "indices": "accessor_12991", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4756": { - "name": "ID4756", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13015", - "POSITION": "accessor_13013" - }, - "indices": "accessor_13011", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4762": { - "name": "ID4762", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13035", - "POSITION": "accessor_13033" - }, - "indices": "accessor_13031", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4768": { - "name": "ID4768", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13055", - "POSITION": "accessor_13053" - }, - "indices": "accessor_13051", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4774": { - "name": "ID4774", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13075", - "POSITION": "accessor_13073" - }, - "indices": "accessor_13071", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4780": { - "name": "ID4780", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13095", - "POSITION": "accessor_13093" - }, - "indices": "accessor_13091", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4786": { - "name": "ID4786", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13115", - "POSITION": "accessor_13113" - }, - "indices": "accessor_13111", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4792": { - "name": "ID4792", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13135", - "POSITION": "accessor_13133" - }, - "indices": "accessor_13131", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4798": { - "name": "ID4798", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13155", - "POSITION": "accessor_13153" - }, - "indices": "accessor_13151", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID480": { - "name": "ID480", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1376", - "POSITION": "accessor_1374" - }, - "indices": "accessor_1372", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4804": { - "name": "ID4804", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13175", - "POSITION": "accessor_13173" - }, - "indices": "accessor_13171", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4810": { - "name": "ID4810", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13195", - "POSITION": "accessor_13193" - }, - "indices": "accessor_13191", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4816": { - "name": "ID4816", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13215", - "POSITION": "accessor_13213" - }, - "indices": "accessor_13211", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4822": { - "name": "ID4822", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13235", - "POSITION": "accessor_13233" - }, - "indices": "accessor_13231", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4828": { - "name": "ID4828", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13255", - "POSITION": "accessor_13253" - }, - "indices": "accessor_13251", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4834": { - "name": "ID4834", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13275", - "POSITION": "accessor_13273" - }, - "indices": "accessor_13271", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4840": { - "name": "ID4840", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13295", - "POSITION": "accessor_13293" - }, - "indices": "accessor_13291", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4846": { - "name": "ID4846", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13315", - "POSITION": "accessor_13313" - }, - "indices": "accessor_13311", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4852": { - "name": "ID4852", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13335", - "POSITION": "accessor_13333" - }, - "indices": "accessor_13331", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID486": { - "name": "ID486", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1396", - "POSITION": "accessor_1394" - }, - "indices": "accessor_1392", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID492": { - "name": "ID492", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1416", - "POSITION": "accessor_1414" - }, - "indices": "accessor_1412", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID498": { - "name": "ID498", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1436", - "POSITION": "accessor_1434" - }, - "indices": "accessor_1432", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID4987": { - "name": "ID4987", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13387", - "POSITION": "accessor_13385" - }, - "indices": "accessor_13383", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4993": { - "name": "ID4993", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13407", - "POSITION": "accessor_13405" - }, - "indices": "accessor_13403", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID4999": { - "name": "ID4999", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13427", - "POSITION": "accessor_13425" - }, - "indices": "accessor_13423", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5011": { - "name": "ID5011", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13448", - "POSITION": "accessor_13446" - }, - "indices": "accessor_13444", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5017": { - "name": "ID5017", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13468", - "POSITION": "accessor_13466" - }, - "indices": "accessor_13464", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5023": { - "name": "ID5023", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13488", - "POSITION": "accessor_13486" - }, - "indices": "accessor_13484", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5029": { - "name": "ID5029", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13508", - "POSITION": "accessor_13506" - }, - "indices": "accessor_13504", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5035": { - "name": "ID5035", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13528", - "POSITION": "accessor_13526" - }, - "indices": "accessor_13524", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID504": { - "name": "ID504", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1456", - "POSITION": "accessor_1454" - }, - "indices": "accessor_1452", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5041": { - "name": "ID5041", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13548", - "POSITION": "accessor_13546" - }, - "indices": "accessor_13544", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5047": { - "name": "ID5047", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13568", - "POSITION": "accessor_13566" - }, - "indices": "accessor_13564", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5053": { - "name": "ID5053", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13588", - "POSITION": "accessor_13586" - }, - "indices": "accessor_13584", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5059": { - "name": "ID5059", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13608", - "POSITION": "accessor_13606" - }, - "indices": "accessor_13604", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5065": { - "name": "ID5065", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13628", - "POSITION": "accessor_13626" - }, - "indices": "accessor_13624", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5071": { - "name": "ID5071", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13648", - "POSITION": "accessor_13646" - }, - "indices": "accessor_13644", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5077": { - "name": "ID5077", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13668", - "POSITION": "accessor_13666" - }, - "indices": "accessor_13664", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5083": { - "name": "ID5083", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13688", - "POSITION": "accessor_13686" - }, - "indices": "accessor_13684", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5089": { - "name": "ID5089", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13708", - "POSITION": "accessor_13706" - }, - "indices": "accessor_13704", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5095": { - "name": "ID5095", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13728", - "POSITION": "accessor_13726" - }, - "indices": "accessor_13724", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID510": { - "name": "ID510", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1476", - "POSITION": "accessor_1474" - }, - "indices": "accessor_1472", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5101": { - "name": "ID5101", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13748", - "POSITION": "accessor_13746" - }, - "indices": "accessor_13744", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5107": { - "name": "ID5107", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13768", - "POSITION": "accessor_13766" - }, - "indices": "accessor_13764", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5113": { - "name": "ID5113", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13788", - "POSITION": "accessor_13786" - }, - "indices": "accessor_13784", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5119": { - "name": "ID5119", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13808", - "POSITION": "accessor_13806" - }, - "indices": "accessor_13804", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5125": { - "name": "ID5125", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13828", - "POSITION": "accessor_13826" - }, - "indices": "accessor_13824", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5131": { - "name": "ID5131", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13848", - "POSITION": "accessor_13846" - }, - "indices": "accessor_13844", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5137": { - "name": "ID5137", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13868", - "POSITION": "accessor_13866" - }, - "indices": "accessor_13864", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID516": { - "name": "ID516", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1496", - "POSITION": "accessor_1494" - }, - "indices": "accessor_1492", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID522": { - "name": "ID522", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1516", - "POSITION": "accessor_1514" - }, - "indices": "accessor_1512", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5272": { - "name": "ID5272", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13920", - "POSITION": "accessor_13918" - }, - "indices": "accessor_13916", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5278": { - "name": "ID5278", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13940", - "POSITION": "accessor_13938" - }, - "indices": "accessor_13936", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID528": { - "name": "ID528", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1536", - "POSITION": "accessor_1534" - }, - "indices": "accessor_1532", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5284": { - "name": "ID5284", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13960", - "POSITION": "accessor_13958" - }, - "indices": "accessor_13956", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5296": { - "name": "ID5296", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_13981", - "POSITION": "accessor_13979" - }, - "indices": "accessor_13977", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID53": { - "name": "ID53", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_180", - "POSITION": "accessor_178" - }, - "indices": "accessor_176", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5302": { - "name": "ID5302", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14001", - "POSITION": "accessor_13999" - }, - "indices": "accessor_13997", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5308": { - "name": "ID5308", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14021", - "POSITION": "accessor_14019" - }, - "indices": "accessor_14017", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5319": { - "name": "ID5319", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14042", - "POSITION": "accessor_14040" - }, - "indices": "accessor_14038", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5325": { - "name": "ID5325", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14062", - "POSITION": "accessor_14060" - }, - "indices": "accessor_14058", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5331": { - "name": "ID5331", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14082", - "POSITION": "accessor_14080" - }, - "indices": "accessor_14078", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5337": { - "name": "ID5337", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14102", - "POSITION": "accessor_14100" - }, - "indices": "accessor_14098", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID534": { - "name": "ID534", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1556", - "POSITION": "accessor_1554" - }, - "indices": "accessor_1552", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5343": { - "name": "ID5343", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14122", - "POSITION": "accessor_14120" - }, - "indices": "accessor_14118", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5349": { - "name": "ID5349", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14142", - "POSITION": "accessor_14140" - }, - "indices": "accessor_14138", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5355": { - "name": "ID5355", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14162", - "POSITION": "accessor_14160" - }, - "indices": "accessor_14158", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5361": { - "name": "ID5361", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14182", - "POSITION": "accessor_14180" - }, - "indices": "accessor_14178", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5367": { - "name": "ID5367", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14202", - "POSITION": "accessor_14200" - }, - "indices": "accessor_14198", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5373": { - "name": "ID5373", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14222", - "POSITION": "accessor_14220" - }, - "indices": "accessor_14218", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5379": { - "name": "ID5379", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14242", - "POSITION": "accessor_14240" - }, - "indices": "accessor_14238", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5385": { - "name": "ID5385", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14262", - "POSITION": "accessor_14260" - }, - "indices": "accessor_14258", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5391": { - "name": "ID5391", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14282", - "POSITION": "accessor_14280" - }, - "indices": "accessor_14278", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5397": { - "name": "ID5397", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14302", - "POSITION": "accessor_14300" - }, - "indices": "accessor_14298", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID540": { - "name": "ID540", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1576", - "POSITION": "accessor_1574" - }, - "indices": "accessor_1572", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5403": { - "name": "ID5403", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14322", - "POSITION": "accessor_14320" - }, - "indices": "accessor_14318", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5409": { - "name": "ID5409", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14342", - "POSITION": "accessor_14340" - }, - "indices": "accessor_14338", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5415": { - "name": "ID5415", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14362", - "POSITION": "accessor_14360" - }, - "indices": "accessor_14358", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5421": { - "name": "ID5421", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14382", - "POSITION": "accessor_14380" - }, - "indices": "accessor_14378", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5427": { - "name": "ID5427", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14402", - "POSITION": "accessor_14400" - }, - "indices": "accessor_14398", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5433": { - "name": "ID5433", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14422", - "POSITION": "accessor_14420" - }, - "indices": "accessor_14418", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5439": { - "name": "ID5439", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14442", - "POSITION": "accessor_14440" - }, - "indices": "accessor_14438", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5445": { - "name": "ID5445", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14462", - "POSITION": "accessor_14460" - }, - "indices": "accessor_14458", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID546": { - "name": "ID546", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1596", - "POSITION": "accessor_1594" - }, - "indices": "accessor_1592", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID552": { - "name": "ID552", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1616", - "POSITION": "accessor_1614" - }, - "indices": "accessor_1612", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID558": { - "name": "ID558", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1636", - "POSITION": "accessor_1634" - }, - "indices": "accessor_1632", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5580": { - "name": "ID5580", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14514", - "POSITION": "accessor_14512" - }, - "indices": "accessor_14510", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5586": { - "name": "ID5586", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14534", - "POSITION": "accessor_14532" - }, - "indices": "accessor_14530", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5592": { - "name": "ID5592", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14554", - "POSITION": "accessor_14552" - }, - "indices": "accessor_14550", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5598": { - "name": "ID5598", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14574", - "POSITION": "accessor_14572" - }, - "indices": "accessor_14570", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5605": { - "name": "ID5605", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14594", - "POSITION": "accessor_14592" - }, - "indices": "accessor_14590", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5611": { - "name": "ID5611", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14614", - "POSITION": "accessor_14612" - }, - "indices": "accessor_14610", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5617": { - "name": "ID5617", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14634", - "POSITION": "accessor_14632" - }, - "indices": "accessor_14630", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5623": { - "name": "ID5623", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14654", - "POSITION": "accessor_14652" - }, - "indices": "accessor_14650", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5632": { - "name": "ID5632", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14674", - "POSITION": "accessor_14672" - }, - "indices": "accessor_14670", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5638": { - "name": "ID5638", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14694", - "POSITION": "accessor_14692" - }, - "indices": "accessor_14690", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID564": { - "name": "ID564", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1656", - "POSITION": "accessor_1654" - }, - "indices": "accessor_1652", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5645": { - "name": "ID5645", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14714", - "POSITION": "accessor_14712" - }, - "indices": "accessor_14710", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5651": { - "name": "ID5651", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14734", - "POSITION": "accessor_14732" - }, - "indices": "accessor_14730", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5657": { - "name": "ID5657", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14754", - "POSITION": "accessor_14752" - }, - "indices": "accessor_14750", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5663": { - "name": "ID5663", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14774", - "POSITION": "accessor_14772" - }, - "indices": "accessor_14770", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5669": { - "name": "ID5669", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14794", - "POSITION": "accessor_14792" - }, - "indices": "accessor_14790", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5675": { - "name": "ID5675", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14814", - "POSITION": "accessor_14812" - }, - "indices": "accessor_14810", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5681": { - "name": "ID5681", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14834", - "POSITION": "accessor_14832" - }, - "indices": "accessor_14830", - "material": "ID1411", - "primitive": 4 - } - ] - }, - "ID5689": { - "name": "ID5689", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14854", - "POSITION": "accessor_14852" - }, - "indices": "accessor_14850", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5695": { - "name": "ID5695", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14874", - "POSITION": "accessor_14872" - }, - "indices": "accessor_14870", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID570": { - "name": "ID570", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1676", - "POSITION": "accessor_1674" - }, - "indices": "accessor_1672", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID5704": { - "name": "ID5704", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14894", - "POSITION": "accessor_14892" - }, - "indices": "accessor_14890", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID5710": { - "name": "ID5710", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_14914", - "POSITION": "accessor_14912" - }, - "indices": "accessor_14910", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID576": { - "name": "ID576", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1696", - "POSITION": "accessor_1694" - }, - "indices": "accessor_1692", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID582": { - "name": "ID582", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1716", - "POSITION": "accessor_1714" - }, - "indices": "accessor_1712", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID588": { - "name": "ID588", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1736", - "POSITION": "accessor_1734" - }, - "indices": "accessor_1732", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID59": { - "name": "ID59", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_200", - "POSITION": "accessor_198" - }, - "indices": "accessor_196", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID594": { - "name": "ID594", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1756", - "POSITION": "accessor_1754" - }, - "indices": "accessor_1752", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID600": { - "name": "ID600", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1776", - "POSITION": "accessor_1774" - }, - "indices": "accessor_1772", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID606": { - "name": "ID606", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1796", - "POSITION": "accessor_1794" - }, - "indices": "accessor_1792", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID612": { - "name": "ID612", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1816", - "POSITION": "accessor_1814" - }, - "indices": "accessor_1812", - "material": "ID151", - "primitive": 4 - } - ] - }, - "ID65": { - "name": "ID65", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_220", - "POSITION": "accessor_218" - }, - "indices": "accessor_216", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID663": { - "name": "ID663", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1847", - "POSITION": "accessor_1845" - }, - "indices": "accessor_1843", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID669": { - "name": "ID669", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1867", - "POSITION": "accessor_1865" - }, - "indices": "accessor_1863", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID675": { - "name": "ID675", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1887", - "POSITION": "accessor_1885" - }, - "indices": "accessor_1883", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID681": { - "name": "ID681", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1907", - "POSITION": "accessor_1905" - }, - "indices": "accessor_1903", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID687": { - "name": "ID687", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1927", - "POSITION": "accessor_1925" - }, - "indices": "accessor_1923", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID693": { - "name": "ID693", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1947", - "POSITION": "accessor_1945" - }, - "indices": "accessor_1943", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID699": { - "name": "ID699", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1967", - "POSITION": "accessor_1965" - }, - "indices": "accessor_1963", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID705": { - "name": "ID705", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_1987", - "POSITION": "accessor_1985" - }, - "indices": "accessor_1983", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID71": { - "name": "ID71", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_240", - "POSITION": "accessor_238" - }, - "indices": "accessor_236", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID711": { - "name": "ID711", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2007", - "POSITION": "accessor_2005" - }, - "indices": "accessor_2003", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID717": { - "name": "ID717", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2027", - "POSITION": "accessor_2025" - }, - "indices": "accessor_2023", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID723": { - "name": "ID723", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2047", - "POSITION": "accessor_2045" - }, - "indices": "accessor_2043", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID729": { - "name": "ID729", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2067", - "POSITION": "accessor_2065" - }, - "indices": "accessor_2063", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID735": { - "name": "ID735", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2087", - "POSITION": "accessor_2085" - }, - "indices": "accessor_2083", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID741": { - "name": "ID741", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2107", - "POSITION": "accessor_2105" - }, - "indices": "accessor_2103", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID747": { - "name": "ID747", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2127", - "POSITION": "accessor_2125" - }, - "indices": "accessor_2123", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID753": { - "name": "ID753", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2147", - "POSITION": "accessor_2145" - }, - "indices": "accessor_2143", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID759": { - "name": "ID759", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2167", - "POSITION": "accessor_2165" - }, - "indices": "accessor_2163", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID77": { - "name": "ID77", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_260", - "POSITION": "accessor_258" - }, - "indices": "accessor_256", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID786": { - "name": "ID786", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2192", - "POSITION": "accessor_2190" - }, - "indices": "accessor_2188", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID792": { - "name": "ID792", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2212", - "POSITION": "accessor_2210" - }, - "indices": "accessor_2208", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID798": { - "name": "ID798", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2232", - "POSITION": "accessor_2230" - }, - "indices": "accessor_2228", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID804": { - "name": "ID804", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2252", - "POSITION": "accessor_2250" - }, - "indices": "accessor_2248", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID810": { - "name": "ID810", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2272", - "POSITION": "accessor_2270" - }, - "indices": "accessor_2268", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID816": { - "name": "ID816", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2292", - "POSITION": "accessor_2290" - }, - "indices": "accessor_2288", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID822": { - "name": "ID822", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2312", - "POSITION": "accessor_2310" - }, - "indices": "accessor_2308", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID828": { - "name": "ID828", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2332", - "POSITION": "accessor_2330" - }, - "indices": "accessor_2328", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID83": { - "name": "ID83", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_280", - "POSITION": "accessor_278" - }, - "indices": "accessor_276", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID834": { - "name": "ID834", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2352", - "POSITION": "accessor_2350" - }, - "indices": "accessor_2348", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID840": { - "name": "ID840", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2372", - "POSITION": "accessor_2370" - }, - "indices": "accessor_2368", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID846": { - "name": "ID846", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2392", - "POSITION": "accessor_2390" - }, - "indices": "accessor_2388", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID852": { - "name": "ID852", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2412", - "POSITION": "accessor_2410" - }, - "indices": "accessor_2408", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID858": { - "name": "ID858", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2432", - "POSITION": "accessor_2430" - }, - "indices": "accessor_2428", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID864": { - "name": "ID864", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2452", - "POSITION": "accessor_2450" - }, - "indices": "accessor_2448", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID870": { - "name": "ID870", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2472", - "POSITION": "accessor_2470" - }, - "indices": "accessor_2468", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID876": { - "name": "ID876", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2492", - "POSITION": "accessor_2490" - }, - "indices": "accessor_2488", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID882": { - "name": "ID882", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2512", - "POSITION": "accessor_2510" - }, - "indices": "accessor_2508", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID89": { - "name": "ID89", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_300", - "POSITION": "accessor_298" - }, - "indices": "accessor_296", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID909": { - "name": "ID909", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2537", - "POSITION": "accessor_2535" - }, - "indices": "accessor_2533", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID915": { - "name": "ID915", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2557", - "POSITION": "accessor_2555" - }, - "indices": "accessor_2553", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID921": { - "name": "ID921", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2577", - "POSITION": "accessor_2575" - }, - "indices": "accessor_2573", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID927": { - "name": "ID927", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2597", - "POSITION": "accessor_2595" - }, - "indices": "accessor_2593", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID933": { - "name": "ID933", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2617", - "POSITION": "accessor_2615" - }, - "indices": "accessor_2613", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID939": { - "name": "ID939", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2637", - "POSITION": "accessor_2635" - }, - "indices": "accessor_2633", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID945": { - "name": "ID945", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2657", - "POSITION": "accessor_2655" - }, - "indices": "accessor_2653", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID95": { - "name": "ID95", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_320", - "POSITION": "accessor_318" - }, - "indices": "accessor_316", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID951": { - "name": "ID951", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2677", - "POSITION": "accessor_2675" - }, - "indices": "accessor_2673", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID957": { - "name": "ID957", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2697", - "POSITION": "accessor_2695" - }, - "indices": "accessor_2693", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID963": { - "name": "ID963", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2717", - "POSITION": "accessor_2715" - }, - "indices": "accessor_2713", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID969": { - "name": "ID969", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2737", - "POSITION": "accessor_2735" - }, - "indices": "accessor_2733", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID975": { - "name": "ID975", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2757", - "POSITION": "accessor_2755" - }, - "indices": "accessor_2753", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID981": { - "name": "ID981", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2777", - "POSITION": "accessor_2775" - }, - "indices": "accessor_2773", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID987": { - "name": "ID987", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2797", - "POSITION": "accessor_2795" - }, - "indices": "accessor_2793", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID993": { - "name": "ID993", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2817", - "POSITION": "accessor_2815" - }, - "indices": "accessor_2813", - "material": "ID5", - "primitive": 4 - } - ] - }, - "ID999": { - "name": "ID999", - "primitives": [ - { - "attributes": { - "NORMAL": "accessor_2837", - "POSITION": "accessor_2835" - }, - "indices": "accessor_2833", - "material": "ID5", - "primitive": 4 - } - ] - } - }, - "nodes": { - "ID1031": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.554, - 71.0407, - 5.95175, - 1 - ], - "meshes": [ - "ID1032", - "ID1038", - "ID1044", - "ID1050", - "ID1056", - "ID1062", - "ID1068", - "ID1074", - "ID1080", - "ID1086", - "ID1092", - "ID1098", - "ID1104", - "ID1110", - "ID1116", - "ID1122", - "ID1128", - "ID1134" - ], - "name": "group_7" - }, - "ID1140": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 123.16, - 71.0407, - 5.95175, - 1 - ], - "meshes": [ - "ID1141", - "ID1147", - "ID1153", - "ID1159", - "ID1165", - "ID1171", - "ID1177", - "ID1183", - "ID1189", - "ID1195" - ], - "name": "group_8" - }, - "ID1217": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 123.16, - 71.0407, - 21.3117, - 1 - ], - "meshes": [ - "ID1218", - "ID1224", - "ID1230", - "ID1236", - "ID1242", - "ID1248", - "ID1254", - "ID1260", - "ID1266", - "ID1272" - ], - "name": "group_9" - }, - "ID129": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - -0, - 0, - 1, - 0, - 123.163, - 80.6407, - 4.99175, - 1 - ], - "meshes": [ - "ID130", - "ID136", - "ID142" - ], - "name": "group_1" - }, - "ID1294": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.962, - 119.041, - 5.95175, - 1 - ], - "meshes": [ - "ID1295", - "ID1301", - "ID1307", - "ID1313", - "ID1319", - "ID1325" - ], - "name": "group_10" - }, - "ID1351": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.962, - 61.4431, - 5.95175, - 1 - ], - "meshes": [ - "ID1352", - "ID1358", - "ID1364", - "ID1370", - "ID1376", - "ID1382" - ], - "name": "group_11" - }, - "ID1408": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 180.758, - 71.0407, - 5.95175, - 1 - ], - "meshes": [ - "ID1409", - "ID1417", - "ID1423", - "ID1429", - "ID1435", - "ID1441", - "ID1447", - "ID1453", - "ID1459", - "ID1465", - "ID1471", - "ID1477", - "ID1483", - "ID1489", - "ID1495", - "ID1501", - "ID1507", - "ID1513" - ], - "name": "group_12" - }, - "ID148": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 113.561, - 99.8347, - 9.7872, - 1 - ], - "meshes": [ - "ID149", - "ID157", - "ID163", - "ID169", - "ID175", - "ID181", - "ID187", - "ID193", - "ID199", - "ID205", - "ID211", - "ID217", - "ID223", - "ID229", - "ID235", - "ID241", - "ID247", - "ID253", - "ID259", - "ID265", - "ID271", - "ID277", - "ID283", - "ID289", - "ID295", - "ID301", - "ID307", - "ID313", - "ID319", - "ID325", - "ID331", - "ID337", - "ID343", - "ID349", - "ID355" - ], - "name": "group_2" - }, - "ID1519": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 199.94, - 71.0191, - 5.95175, - 1 - ], - "meshes": [ - "ID1520", - "ID1526", - "ID1532", - "ID1538", - "ID1544", - "ID1550", - "ID1556", - "ID1562", - "ID1568", - "ID1574", - "ID1580", - "ID1586" - ], - "name": "group_13" - }, - "ID1610": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.963, - 61.4371, - 9.7872, - 1 - ], - "meshes": [ - "ID1611", - "ID1617", - "ID1623", - "ID1629", - "ID1635" - ], - "name": "group_14" - }, - "ID1645": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.963, - 128.632, - 9.7872, - 1 - ], - "meshes": [ - "ID1646", - "ID1652", - "ID1658", - "ID1664", - "ID1670" - ], - "name": "group_15" - }, - "ID1680": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 125.083, - 51.8419, - 13.6317, - 1 - ], - "meshes": [ - "ID1681" - ], - "name": "group_16" - }, - "ID1689": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 123.646, - 61.4407, - 12.1917, - 1 - ], - "meshes": [ - "ID1690" - ], - "name": "group_17" - }, - "ID1696": { - "children": [], - "matrix": [ - -0, - 1, - 0, - 0, - 1, - 0, - 0, - 0, - -0, - -0, - 1, - 0, - 123.163, - 119.041, - 4.99175, - 1 - ], - "meshes": [ - "ID1697", - "ID1703", - "ID1709" - ], - "name": "group_18" - }, - "ID1715": { - "children": [], - "matrix": [ - 1, - 0, - -0, - 0, - 0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 123.646, - 138.241, - 12.1917, - 1 - ], - "meshes": [ - "ID1716" - ], - "name": "group_19" - }, - "ID1722": { - "children": [], - "matrix": [ - 1, - 0, - -0, - 0, - 0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 125.083, - 147.839, - 13.6317, - 1 - ], - "meshes": [ - "ID1723" - ], - "name": "group_20" - }, - "ID1729": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 132.759, - 90.2407, - 21.3117, - 1 - ], - "meshes": [ - "ID1730", - "ID1736" - ], - "name": "group_21" - }, - "ID1742": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 253.723, - 51.8409, - 12.6717, - 1 - ], - "meshes": [ - "ID1743" - ], - "name": "group_22" - }, - "ID1749": { - "children": [], - "matrix": [ - 1, - 0, - -0, - 0, - 0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 253.723, - 147.838, - 12.6717, - 1 - ], - "meshes": [ - "ID1750" - ], - "name": "group_23" - }, - "ID1756": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 234.498, - 90.2407, - 12.6717, - 1 - ], - "meshes": [ - "ID1757" - ], - "name": "group_24" - }, - "ID1763": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 234.498, - 128.641, - 12.6717, - 1 - ], - "meshes": [ - "ID1764" - ], - "name": "group_25" - }, - "ID1770": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 143.327, - 71.9971, - 11.7093, - 1 - ], - "meshes": [ - "ID1771" - ], - "name": "group_26" - }, - "ID1781": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 143.327, - 119.999, - 11.7093, - 1 - ], - "meshes": [ - "ID1782" - ], - "name": "group_27" - }, - "ID1788": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 199.962, - 90.2407, - 21.3117, - 1 - ], - "meshes": [ - "ID1789", - "ID1795", - "ID1801", - "ID1807", - "ID1813", - "ID1819" - ], - "name": "group_28" - }, - "ID1845": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.56, - 71.0407, - 21.3117, - 1 - ], - "meshes": [ - "ID1846", - "ID1852", - "ID1858", - "ID1864", - "ID1870", - "ID1876" - ], - "name": "group_29" - }, - "ID1902": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.56, - 109.441, - 21.3117, - 1 - ], - "meshes": [ - "ID1903", - "ID1909", - "ID1915", - "ID1921", - "ID1927", - "ID1933" - ], - "name": "group_30" - }, - "ID1959": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.962, - 61.4431, - 21.3117, - 1 - ], - "meshes": [ - "ID1960", - "ID1966", - "ID1972", - "ID1978", - "ID1984", - "ID1990" - ], - "name": "group_31" - }, - "ID2": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 171.161, - 109.435, - 9.7872, - 1 - ], - "meshes": [ - "ID3", - "ID11", - "ID65", - "ID71", - "ID77", - "ID83", - "ID89", - "ID95", - "ID101", - "ID17", - "ID23", - "ID29", - "ID35", - "ID41", - "ID47", - "ID53", - "ID59" - ], - "name": "group_0" - }, - "ID2016": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.962, - 119.041, - 21.3117, - 1 - ], - "meshes": [ - "ID2017", - "ID2023", - "ID2029", - "ID2035", - "ID2041", - "ID2047" - ], - "name": "group_32" - }, - "ID2073": { - "children": [], - "matrix": [ - 0, - 1, - -0, - 0, - -1, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 180.758, - 80.6407, - 21.3081, - 1 - ], - "meshes": [ - "ID2074", - "ID2080", - "ID2086", - "ID2092", - "ID2098", - "ID2104", - "ID2110", - "ID2116", - "ID2122", - "ID2128" - ], - "name": "group_33" - }, - "ID2142": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - 0, - 0, - -0, - 0, - 1, - 0, - 151.956, - 99.8407, - 21.3117, - 1 - ], - "meshes": [ - "ID2143", - "ID2149" - ], - "name": "group_34" - }, - "ID2155": { - "children": [], - "matrix": [ - -1, - 0, - 0, - 0, - -0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 171.156, - 119.041, - 21.3117, - 1 - ], - "meshes": [ - "ID2156", - "ID2162" - ], - "name": "group_35" - }, - "ID2168": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.963, - 71.0431, - 25.1517, - 1 - ], - "meshes": [ - "ID2169", - "ID2175", - "ID2181", - "ID2187" - ], - "name": "group_36" - }, - "ID2193": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.963, - 119.041, - 25.1517, - 1 - ], - "meshes": [ - "ID2194", - "ID2200", - "ID2206", - "ID2212" - ], - "name": "group_37" - }, - "ID2218": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 123.164, - 109.438, - 25.1517, - 1 - ], - "meshes": [ - "ID2219", - "ID2225", - "ID2231", - "ID2237" - ], - "name": "group_38" - }, - "ID2243": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 123.164, - 109.438, - 28.9917, - 1 - ], - "meshes": [ - "ID2244", - "ID2250", - "ID2256", - "ID2262" - ], - "name": "group_39" - }, - "ID2268": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 71.0347, - 28.9872, - 1 - ], - "meshes": [ - "ID2269", - "ID2275", - "ID2281", - "ID2287", - "ID2293", - "ID2299", - "ID2305", - "ID2311", - "ID2317", - "ID2323", - "ID2329", - "ID2335", - "ID2341", - "ID2347", - "ID2353", - "ID2359", - "ID2365" - ], - "name": "group_40" - }, - "ID2391": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 119.032, - 28.9872, - 1 - ], - "meshes": [ - "ID2392", - "ID2398", - "ID2404", - "ID2410", - "ID2416", - "ID2422", - "ID2428", - "ID2434", - "ID2440", - "ID2446", - "ID2452", - "ID2458", - "ID2464", - "ID2470", - "ID2476", - "ID2482", - "ID2488" - ], - "name": "group_41" - }, - "ID2514": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 215.441, - 80.6407, - 12.6717, - 1 - ], - "meshes": [ - "ID2515" - ], - "name": "group_42" - }, - "ID2521": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 142.366, - 71.0407, - 25.1517, - 1 - ], - "meshes": [ - "ID2522", - "ID2528", - "ID2534", - "ID2540", - "ID2546", - "ID2552", - "ID2558", - "ID2564", - "ID2570", - "ID2576" - ], - "name": "group_43" - }, - "ID2598": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 215.441, - 80.6407, - 31.8717, - 1 - ], - "meshes": [ - "ID2599" - ], - "name": "group_44" - }, - "ID2605": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 215.441, - 138.241, - 12.6717, - 1 - ], - "meshes": [ - "ID2606" - ], - "name": "group_45" - }, - "ID2612": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 215.441, - 138.241, - 31.8717, - 1 - ], - "meshes": [ - "ID2613" - ], - "name": "group_46" - }, - "ID2619": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 113.561, - 80.6407, - 21.3117, - 1 - ], - "meshes": [ - "ID2620", - "ID2626", - "ID2632" - ], - "name": "group_47" - }, - "ID2638": { - "children": [], - "matrix": [ - -1, - 0, - -0, - 0, - -0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 123.161, - 119.041, - 21.3117, - 1 - ], - "meshes": [ - "ID2639", - "ID2645", - "ID2651" - ], - "name": "group_48" - }, - "ID2657": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 142.37, - 99.8395, - 28.9917, - 1 - ], - "meshes": [ - "ID2658", - "ID2664", - "ID2670", - "ID2676" - ], - "name": "group_49" - }, - "ID2682": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 142.37, - 119.039, - 28.9917, - 1 - ], - "meshes": [ - "ID2683", - "ID2689", - "ID2695", - "ID2701" - ], - "name": "group_50" - }, - "ID2707": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 228.763, - 71.0407, - 40.5117, - 1 - ], - "meshes": [ - "ID2708", - "ID2714", - "ID2720", - "ID2726", - "ID2732", - "ID2738" - ], - "name": "group_51" - }, - "ID2744": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - 0, - 0, - -0, - 0, - 1, - 0, - 228.763, - 128.638, - 40.5117, - 1 - ], - "meshes": [ - "ID2745", - "ID2751", - "ID2757", - "ID2763", - "ID2769", - "ID2775" - ], - "name": "group_52" - }, - "ID2781": { - "children": [], - "matrix": [ - 0.989016, - 0, - -0.147809, - 0, - -0, - 1, - 0, - 0, - 0.147809, - 0, - 0.989016, - 0, - 266.644, - 71.0434, - 24.174, - 1 - ], - "meshes": [ - "ID2782" - ], - "name": "group_53" - }, - "ID2788": { - "children": [], - "matrix": [ - 0.989016, - 0, - -0.147809, - 0, - -0, - 1, - 0, - 0, - 0.147809, - 0, - 0.989016, - 0, - 268.056, - 71.0428, - 29.1972, - 1 - ], - "meshes": [ - "ID2789", - "ID2795" - ], - "name": "group_54" - }, - "ID2813": { - "children": [], - "matrix": [ - 0.989016, - 0, - -0.147809, - 0, - -0, - 1, - 0, - 0, - 0.147809, - 0, - 0.989016, - 0, - 283.688, - 71.0506, - 30.2279, - 1 - ], - "meshes": [ - "ID2814", - "ID2820", - "ID2826", - "ID2832", - "ID2838", - "ID2844", - "ID2850" - ], - "name": "group_55" - }, - "ID2856": { - "children": [], - "matrix": [ - 0.989016, - 0, - -0.147809, - 0, - -0, - 1, - 0, - 0, - 0.147809, - 0, - 0.989016, - 0, - 266.623, - 119.031, - 24.1929, - 1 - ], - "meshes": [ - "ID2857" - ], - "name": "group_56" - }, - "ID2863": { - "children": [], - "matrix": [ - 0.989016, - 0, - -0.147809, - 0, - -0, - 1, - 0, - 0, - 0.147809, - 0, - 0.989016, - 0, - 268.035, - 119.031, - 29.2162, - 1 - ], - "meshes": [ - "ID2864", - "ID2870" - ], - "name": "group_57" - }, - "ID2888": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.96, - 71.0407, - 40.5117, - 1 - ], - "meshes": [ - "ID2889", - "ID2895", - "ID2901", - "ID2907" - ], - "name": "group_58" - }, - "ID2917": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.96, - 119.038, - 40.5117, - 1 - ], - "meshes": [ - "ID2918", - "ID2924", - "ID2930", - "ID2936" - ], - "name": "group_59" - }, - "ID2946": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 151.967, - 90.2407, - 32.8317, - 1 - ], - "meshes": [ - "ID2947", - "ID2953", - "ID2959", - "ID2965", - "ID2971", - "ID2977" - ], - "name": "group_60" - }, - "ID3005": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 171.142, - 80.6407, - 32.8317, - 1 - ], - "meshes": [ - "ID3006", - "ID3012", - "ID3018", - "ID3024", - "ID3030", - "ID3036", - "ID3042", - "ID3048" - ], - "name": "group_61" - }, - "ID3062": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 113.562, - 90.2407, - 32.8317, - 1 - ], - "meshes": [ - "ID3063", - "ID3069", - "ID3075", - "ID3081", - "ID3087", - "ID3093" - ], - "name": "group_62" - }, - "ID3119": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 151.968, - 80.6359, - 32.8272, - 1 - ], - "meshes": [ - "ID3120", - "ID3126", - "ID3132", - "ID3138", - "ID3144" - ], - "name": "group_63" - }, - "ID3154": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 151.968, - 109.433, - 32.8272, - 1 - ], - "meshes": [ - "ID3155", - "ID3161", - "ID3167", - "ID3173", - "ID3179" - ], - "name": "group_64" - }, - "ID3189": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 157.848, - 90.2419, - 35.7117, - 1 - ], - "meshes": [ - "ID3190" - ], - "name": "group_65" - }, - "ID3196": { - "children": [], - "matrix": [ - 0, - -1, - 0, - 0, - 1, - 0, - -0, - 0, - 0, - 0, - 1, - 0, - 157.848, - 128.639, - 35.7117, - 1 - ], - "meshes": [ - "ID3197" - ], - "name": "group_66" - }, - "ID3203": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - -0, - 0, - 1, - 0, - 113.561, - 90.2407, - 32.8317, - 1 - ], - "meshes": [ - "ID3204", - "ID3210" - ], - "name": "group_67" - }, - "ID3216": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - -0, - 0, - 1, - 0, - 113.561, - 119.041, - 32.8317, - 1 - ], - "meshes": [ - "ID3217", - "ID3223" - ], - "name": "group_68" - }, - "ID3229": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 142.37, - 119.042, - 32.8317, - 1 - ], - "meshes": [ - "ID3230", - "ID3236", - "ID3242", - "ID3248" - ], - "name": "group_69" - }, - "ID3254": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 111.641, - 81.6007, - 35.7117, - 1 - ], - "meshes": [ - "ID3255" - ], - "name": "group_70" - }, - "ID3261": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 111.641, - 110.401, - 35.7117, - 1 - ], - "meshes": [ - "ID3262" - ], - "name": "group_71" - }, - "ID3268": { - "children": [], - "matrix": [ - 1e-07, - 5.21e-05, - 1, - 0, - -0.0006771, - 1, - -5.21e-05, - 0, - -1, - -0.0006771, - 1e-07, - 0, - 225.887, - 61.4335, - 6.91345, - 1 - ], - "meshes": [ - "ID3269", - "ID3275", - "ID3281", - "ID3287", - "ID3293", - "ID3299", - "ID3305", - "ID3311", - "ID3317", - "ID3323" - ], - "name": "group_72" - }, - "ID3337": { - "children": [], - "matrix": [ - 1e-07, - 5.21e-05, - 1, - 0, - -0.0006771, - 1, - -5.21e-05, - 0, - -1, - -0.0006771, - 1e-07, - 0, - 225.887, - 128.629, - 6.91345, - 1 - ], - "meshes": [ - "ID3338", - "ID3344", - "ID3350", - "ID3356", - "ID3362", - "ID3368", - "ID3374", - "ID3380", - "ID3386", - "ID3392" - ], - "name": "group_73" - }, - "ID3406": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - -0, - 0, - 1, - 0, - 113.555, - 109.441, - 36.6672, - 1 - ], - "meshes": [ - "ID3407", - "ID3413", - "ID3419", - "ID3425", - "ID3431" - ], - "name": "group_74" - }, - "ID3441": { - "children": [], - "matrix": [ - 0, - 1, - -0, - 0, - -1, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 180.758, - 80.6407, - 36.664, - 1 - ], - "meshes": [ - "ID3442", - "ID3448", - "ID3454", - "ID3460", - "ID3466", - "ID3472", - "ID3478", - "ID3484", - "ID3490", - "ID3496" - ], - "name": "group_75" - }, - "ID3510": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 113.561, - 96.9606, - 40.5111, - 1 - ], - "meshes": [ - "ID3511" - ], - "name": "group_76" - }, - "ID3517": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 180.934, - 84.4806, - 28.0311, - 1 - ], - "meshes": [ - "ID3518", - "ID3524", - "ID3530", - "ID3536", - "ID3542", - "ID3548", - "ID3554", - "ID3560" - ], - "name": "group_77" - }, - "ID3586": { - "children": [], - "matrix": [ - -1, - 0, - -0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - -1, - 0, - 161.555, - 95.5254, - 47.713, - 1 - ], - "meshes": [ - "ID3587" - ], - "name": "group_78" - }, - "ID3601": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 142.354, - 93.6318, - 37.1804, - 1 - ], - "meshes": [ - "ID3602", - "ID3608", - "ID3614", - "ID3620", - "ID3626", - "ID3632", - "ID3638", - "ID3644", - "ID3650" - ], - "name": "group_79" - }, - "ID3656": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 161.553, - 95.5242, - 39.0706, - 1 - ], - "meshes": [ - "ID3657" - ], - "name": "group_80" - }, - "ID3671": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 247.962, - 71.0407, - 44.3517, - 1 - ], - "meshes": [ - "ID3672", - "ID3678", - "ID3684", - "ID3690", - "ID3696", - "ID3702", - "ID3708", - "ID3714", - "ID3720", - "ID3726", - "ID3732", - "ID3738" - ], - "name": "group_81" - }, - "ID3760": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 228.749, - 80.6407, - 44.3517, - 1 - ], - "meshes": [ - "ID3761", - "ID3767", - "ID3773", - "ID3779", - "ID3785", - "ID3791", - "ID3797", - "ID3803" - ], - "name": "group_82" - }, - "ID3817": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 113.539, - 90.2611, - 44.3517, - 1 - ], - "meshes": [ - "ID3818", - "ID3824", - "ID3830", - "ID3836", - "ID3842", - "ID3848", - "ID3854", - "ID3860", - "ID3866", - "ID3872", - "ID3878", - "ID3884" - ], - "name": "group_83" - }, - "ID3906": { - "children": [], - "matrix": [ - -0, - -1, - 0, - 0, - 1, - -0, - 0, - 0, - 0, - 0, - 1, - 0, - 113.539, - 119.063, - 44.3517, - 1 - ], - "meshes": [ - "ID3907", - "ID3913", - "ID3919", - "ID3925", - "ID3931", - "ID3937", - "ID3943", - "ID3949", - "ID3955", - "ID3961", - "ID3967", - "ID3973" - ], - "name": "group_84" - }, - "ID3995": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 151.953, - 80.6438, - 48.1917, - 1 - ], - "meshes": [ - "ID3996", - "ID4002", - "ID4008", - "ID4014", - "ID4020", - "ID4026" - ], - "name": "group_85" - }, - "ID4032": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 151.953, - 109.441, - 48.1917, - 1 - ], - "meshes": [ - "ID4033", - "ID4039", - "ID4045", - "ID4051", - "ID4057", - "ID4063" - ], - "name": "group_86" - }, - "ID4069": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 171.154, - 90.2426, - 48.1917, - 1 - ], - "meshes": [ - "ID4070" - ], - "name": "group_87" - }, - "ID407": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 113.561, - 90.2347, - 9.7872, - 1 - ], - "meshes": [ - "ID582", - "ID588", - "ID594", - "ID600", - "ID606", - "ID612", - "ID408", - "ID414", - "ID420", - "ID426", - "ID432", - "ID438", - "ID444", - "ID450", - "ID456", - "ID462", - "ID468", - "ID474", - "ID480", - "ID486", - "ID492", - "ID498", - "ID504", - "ID510", - "ID516", - "ID522", - "ID528", - "ID534", - "ID540", - "ID546", - "ID552", - "ID558", - "ID564", - "ID570", - "ID576" - ], - "name": "group_3" - }, - "ID4076": { - "children": [], - "matrix": [ - 1e-07, - -0.0003751, - 1, - 0, - -0.0003751, - 1, - 0.0003751, - 0, - -1, - -0.0003751, - -0, - 0, - 113.572, - 80.6431, - 34.7378, - 1 - ], - "meshes": [ - "ID4077", - "ID4083", - "ID4089", - "ID4095", - "ID4101", - "ID4107", - "ID4113", - "ID4119" - ], - "name": "group_88" - }, - "ID4133": { - "children": [], - "matrix": [ - 0.999902, - 9.5e-06, - 0.0139622, - 0, - -9.4e-06, - 1, - -8e-07, - 0, - -0.0139622, - 7e-07, - 0.999902, - 0, - 244.555, - 71.0328, - 65.6579, - 1 - ], - "meshes": [ - "ID4134" - ], - "name": "group_89" - }, - "ID4140": { - "children": [], - "matrix": [ - 0.999902, - 9.5e-06, - 0.0139622, - 0, - -9.4e-06, - 1, - -8e-07, - 0, - -0.0139622, - 7e-07, - 0.999902, - 0, - 238.65, - 80.6407, - 33.9086, - 1 - ], - "meshes": [ - "ID4141", - "ID4147", - "ID4153", - "ID4159", - "ID4165" - ], - "name": "group_90" - }, - "ID4175": { - "children": [], - "matrix": [ - 0.999902, - 9.5e-06, - 0.0139622, - 0, - -9.4e-06, - 1, - -8e-07, - 0, - -0.0139622, - 7e-07, - 0.999902, - 0, - 233.689, - 80.6412, - 11.7299, - 1 - ], - "meshes": [ - "ID4176", - "ID4182", - "ID4188", - "ID4194", - "ID4200" - ], - "name": "group_91" - }, - "ID4234": { - "children": [], - "matrix": [ - 0.999906, - -0.0001172, - 0.0136824, - 0, - 0.0001172, - 1, - -1.1e-06, - 0, - -0.0136824, - 2.7e-06, - 0.999906, - 0, - 233.692, - 109.442, - 11.7299, - 1 - ], - "meshes": [ - "ID4235", - "ID4241", - "ID4247", - "ID4253", - "ID4259" - ], - "name": "group_92" - }, - "ID4293": { - "children": [], - "matrix": [ - 0.999906, - -0.0001172, - 0.0136824, - 0, - 0.0001172, - 1, - -1.1e-06, - 0, - -0.0136824, - 2.7e-06, - 0.999906, - 0, - 238.654, - 109.442, - 33.9086, - 1 - ], - "meshes": [ - "ID4294", - "ID4300", - "ID4306", - "ID4312", - "ID4318" - ], - "name": "group_93" - }, - "ID4328": { - "children": [], - "matrix": [ - 0.981959, - -2.55e-05, - -0.189095, - 0, - 1.39e-05, - 1, - -6.3e-05, - 0, - 0.189095, - 5.92e-05, - 0.981959, - 0, - 180.321, - 71.0451, - 71.9725, - 1 - ], - "meshes": [ - "ID4329" - ], - "name": "group_94" - }, - "ID4335": { - "children": [], - "matrix": [ - 0.981959, - -2.55e-05, - -0.189095, - 0, - 1.39e-05, - 1, - -6.3e-05, - 0, - 0.189095, - 5.92e-05, - 0.981959, - 0, - 171.679, - 71.5731, - 61.2901, - 1 - ], - "meshes": [ - "ID4336", - "ID4342", - "ID4348" - ], - "name": "group_95" - }, - "ID4354": { - "children": [], - "matrix": [ - 0.981959, - -2.55e-05, - -0.189095, - 0, - 1.39e-05, - 1, - -6.3e-05, - 0, - 0.189095, - 5.92e-05, - 0.981959, - 0, - 162.672, - 72.9695, - 45.2059, - 1 - ], - "meshes": [ - "ID4355" - ], - "name": "group_96" - }, - "ID4361": { - "children": [], - "matrix": [ - 0.981959, - -2.55e-05, - -0.189095, - 0, - 1.39e-05, - 1, - -6.3e-05, - 0, - 0.189095, - 5.92e-05, - 0.981959, - 0, - 153.421, - 71.0436, - 35.8744, - 1 - ], - "meshes": [ - "ID4362", - "ID4368", - "ID4374" - ], - "name": "group_97" - }, - "ID4380": { - "children": [], - "matrix": [ - 0.981942, - -0.00021, - -0.189181, - 0, - -0.0002038, - -1, - 5.22e-05, - 0, - 0.189181, - 1.27e-05, - 0.981942, - 0, - 171.68, - 128.126, - 61.2793, - 1 - ], - "meshes": [ - "ID4381", - "ID4387", - "ID4393" - ], - "name": "group_98" - }, - "ID4399": { - "children": [], - "matrix": [ - 0.981942, - -0.00021, - -0.189181, - 0, - -0.0002038, - -1, - 5.22e-05, - 0, - 0.189181, - 1.27e-05, - 0.981942, - 0, - 153.421, - 128.646, - 35.8634, - 1 - ], - "meshes": [ - "ID4400", - "ID4406", - "ID4412" - ], - "name": "group_99" - }, - "ID4418": { - "children": [], - "matrix": [ - 0.981942, - -0.00021, - -0.189181, - 0, - -0.0002038, - -1, - 5.22e-05, - 0, - 0.189181, - 1.27e-05, - 0.981942, - 0, - 162.672, - 126.723, - 45.1957, - 1 - ], - "meshes": [ - "ID4419" - ], - "name": "group_100" - }, - "ID4425": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 105.876, - 80.6404, - 29.9457, - 1 - ], - "meshes": [ - "ID4426" - ], - "name": "group_101" - }, - "ID4432": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 105.876, - 99.838, - 29.9457, - 1 - ], - "meshes": [ - "ID4433" - ], - "name": "group_102" - }, - "ID4439": { - "children": [ - "ID4440", - "ID4701" - ], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 103.644, - 35.5219, - -7.85227, - 1 - ], - "name": "group_103" - }, - "ID4440": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - -0.0862085, - 0, - -0.12175, - 1 - ], - "meshes": [ - "ID4441", - "ID4447", - "ID4453", - "ID4459", - "ID4465", - "ID4471", - "ID4477", - "ID4483", - "ID4489", - "ID4495", - "ID4501", - "ID4507", - "ID4513", - "ID4519", - "ID4525", - "ID4531", - "ID4537", - "ID4543", - "ID4549", - "ID4555", - "ID4561", - "ID4567" - ], - "name": "group_104" - }, - "ID4701": { - "children": [], - "matrix": [ - 0.997336, - 0, - 0.0729454, - 0, - 0, - 1, - -0, - 0, - -0.0729454, - 0, - 0.997336, - 0, - 7.4189, - 1.92, - 4.70682, - 1 - ], - "meshes": [ - "ID4702", - "ID4708", - "ID4714" - ], - "name": "group_105" - }, - "ID4724": { - "children": [ - "ID4725", - "ID4986" - ], - "matrix": [ - 1, - 0, - -0, - 0, - 0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 103.644, - 164.159, - -7.85227, - 1 - ], - "name": "group_106" - }, - "ID4725": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - -0.0862085, - 0, - -0.12175, - 1 - ], - "meshes": [ - "ID4726", - "ID4732", - "ID4738", - "ID4744", - "ID4750", - "ID4756", - "ID4762", - "ID4768", - "ID4774", - "ID4780", - "ID4786", - "ID4792", - "ID4798", - "ID4804", - "ID4810", - "ID4816", - "ID4822", - "ID4828", - "ID4834", - "ID4840", - "ID4846", - "ID4852" - ], - "name": "group_107" - }, - "ID4986": { - "children": [], - "matrix": [ - 0.997336, - 0, - 0.0729454, - 0, - 0, - 1, - -0, - 0, - -0.0729454, - 0, - 0.997336, - 0, - 7.4189, - 1.92, - 4.70682, - 1 - ], - "meshes": [ - "ID4987", - "ID4993", - "ID4999" - ], - "name": "group_108" - }, - "ID5009": { - "children": [ - "ID5010", - "ID5271" - ], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 233.244, - 35.5255, - -7.85227, - 1 - ], - "name": "group_109" - }, - "ID5010": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - -0.0862085, - 0, - -0.12175, - 1 - ], - "meshes": [ - "ID5011", - "ID5017", - "ID5023", - "ID5029", - "ID5035", - "ID5041", - "ID5047", - "ID5053", - "ID5059", - "ID5065", - "ID5071", - "ID5077", - "ID5083", - "ID5089", - "ID5095", - "ID5101", - "ID5107", - "ID5113", - "ID5119", - "ID5125", - "ID5131", - "ID5137" - ], - "name": "group_110" - }, - "ID5271": { - "children": [], - "matrix": [ - 0.997336, - 0, - 0.0729454, - 0, - 0, - 1, - -0, - 0, - -0.0729454, - 0, - 0.997336, - 0, - 7.4189, - 1.92, - 4.70682, - 1 - ], - "meshes": [ - "ID5272", - "ID5278", - "ID5284" - ], - "name": "group_111" - }, - "ID5294": { - "children": [ - "ID5295", - "ID5318" - ], - "matrix": [ - 1, - 0, - -0, - 0, - 0, - -1, - 0, - 0, - 0, - 0, - 1, - 0, - 233.244, - 164.158, - -7.85227, - 1 - ], - "name": "group_112" - }, - "ID5295": { - "children": [], - "matrix": [ - 0.997336, - 0, - 0.0729454, - 0, - 0, - 1, - -0, - 0, - -0.0729454, - 0, - 0.997336, - 0, - 7.4189, - 1.92, - 4.70682, - 1 - ], - "meshes": [ - "ID5296", - "ID5302", - "ID5308" - ], - "name": "group_113" - }, - "ID5318": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - -0.0862085, - 0, - -0.12175, - 1 - ], - "meshes": [ - "ID5319", - "ID5325", - "ID5331", - "ID5337", - "ID5343", - "ID5349", - "ID5355", - "ID5361", - "ID5367", - "ID5373", - "ID5379", - "ID5385", - "ID5391", - "ID5397", - "ID5403", - "ID5409", - "ID5415", - "ID5421", - "ID5427", - "ID5433", - "ID5439", - "ID5445" - ], - "name": "group_114" - }, - "ID5579": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 71.0407, - 25.1517, - 1 - ], - "meshes": [ - "ID5580", - "ID5586", - "ID5592", - "ID5598" - ], - "name": "group_115" - }, - "ID5604": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 119.041, - 25.1517, - 1 - ], - "meshes": [ - "ID5605", - "ID5611", - "ID5617", - "ID5623" - ], - "name": "group_116" - }, - "ID5629": { - "children": [ - "ID5630" - ], - "matrix": [ - -0, - -1, - -0, - 0, - -0, - 0, - -1, - 0, - 1, - -0, - -0, - 0, - 199.963, - 119.041, - 63.5518, - 1 - ], - "name": "instance_0" - }, - "ID5630": { - "children": [ - "ID5631", - "ID5644" - ], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1 - ], - "meshes": [ - "ID5657", - "ID5663", - "ID5669", - "ID5675", - "ID5681" - ], - "name": "sedadlo.dxf" - }, - "ID5631": { - "children": [], - "matrix": [ - -0, - -0, - 1, - 0, - -1, - 0, - -0, - 0, - -0, - -1, - -0, - 0, - 3.62866, - 31.6806, - 5.76, - 1 - ], - "meshes": [ - "ID5632", - "ID5638" - ], - "name": "group_117" - }, - "ID5644": { - "children": [], - "matrix": [ - -0, - -0, - 1, - 0, - -1, - 0, - -0, - 0, - -0, - -1, - -0, - 0, - 38.406, - 31.6806, - 5.76, - 1 - ], - "meshes": [ - "ID5645", - "ID5651" - ], - "name": "group_118" - }, - "ID5687": { - "children": [ - "ID5688" - ], - "matrix": [ - 0.84329, - -0, - -0.537459, - 0, - -0.537459, - -0, - -0.84329, - 0, - 0, - 1, - -0, - 0, - 182.348, - 71.5728, - 80.1952, - 1 - ], - "name": "instance_1" - }, - "ID5688": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1 - ], - "meshes": [ - "ID5689", - "ID5695" - ], - "name": "dilky_3.dxf" - }, - "ID5701": { - "children": [ - "ID5688" - ], - "matrix": [ - 0.84329, - -0, - -0.537459, - 0, - -0.537459, - -0, - -0.84329, - 0, - 0, - 1, - -0, - 0, - 182.3, - 80.6928, - 80.1936, - 1 - ], - "name": "instance_2" - }, - "ID5702": { - "children": [ - "ID5703" - ], - "matrix": [ - 0.84329, - 0, - -0.537459, - 0, - -0.537459, - 0, - -0.84329, - 0, - 0, - -1, - -0, - 0, - 182.348, - 128.126, - 80.1952, - 1 - ], - "name": "instance_3" - }, - "ID5703": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1 - ], - "meshes": [ - "ID5704", - "ID5710" - ], - "name": "dilky_3.dxf" - }, - "ID5716": { - "children": [ - "ID5703" - ], - "matrix": [ - 0.984859, - 0, - -0.173359, - 0, - -0.173359, - 0, - -0.984859, - 0, - 0, - -1, - -0, - 0, - 243.838, - 80.6407, - 73.5362, - 1 - ], - "name": "instance_4" - }, - "ID5717": { - "children": [ - "ID5688" - ], - "matrix": [ - 0.984859, - 0, - -0.173359, - 0, - -0.173359, - 0, - -0.984859, - 0, - -0, - 1, - 0, - 0, - 243.838, - 119.04, - 73.5362, - 1 - ], - "name": "instance_5" - }, - "ID5718": { - "children": [ - "ID5703" - ], - "matrix": [ - 0.84329, - 0, - -0.537459, - 0, - -0.537459, - 0, - -0.84329, - 0, - 0, - -1, - -0, - 0, - 182.348, - 119.006, - 80.1952, - 1 - ], - "name": "instance_6" - }, - "ID662": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 171.161, - 80.6347, - 9.7872, - 1 - ], - "meshes": [ - "ID663", - "ID669", - "ID675", - "ID681", - "ID687", - "ID693", - "ID699", - "ID705", - "ID711", - "ID717", - "ID723", - "ID729", - "ID735", - "ID741", - "ID747", - "ID753", - "ID759" - ], - "name": "group_4" - }, - "ID785": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 71.0347, - 9.7872, - 1 - ], - "meshes": [ - "ID786", - "ID792", - "ID798", - "ID804", - "ID810", - "ID816", - "ID822", - "ID828", - "ID834", - "ID840", - "ID846", - "ID852", - "ID858", - "ID864", - "ID870", - "ID876", - "ID882" - ], - "name": "group_5" - }, - "ID908": { - "children": [], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 209.561, - 119.035, - 9.7872, - 1 - ], - "meshes": [ - "ID909", - "ID915", - "ID921", - "ID927", - "ID933", - "ID939", - "ID945", - "ID951", - "ID957", - "ID963", - "ID969", - "ID975", - "ID981", - "ID987", - "ID993", - "ID999", - "ID1005" - ], - "name": "group_6" - }, - "node_0": { - "children": [ - "ID2", - "ID129", - "ID148", - "ID407", - "ID662", - "ID785", - "ID908", - "ID1031", - "ID1140", - "ID1217", - "ID1294", - "ID1351", - "ID1408", - "ID1519", - "ID1610", - "ID1645", - "ID1680", - "ID1689", - "ID1696", - "ID1715", - "ID1722", - "ID1729", - "ID1742", - "ID1749", - "ID1756", - "ID1763", - "ID1770", - "ID1781", - "ID1788", - "ID1845", - "ID1902", - "ID1959", - "ID2016", - "ID2073", - "ID2142", - "ID2155", - "ID2168", - "ID2193", - "ID2218", - "ID2243", - "ID2268", - "ID2391", - "ID2514", - "ID2521", - "ID2598", - "ID2605", - "ID2612", - "ID2619", - "ID2638", - "ID2657", - "ID2682", - "ID2707", - "ID2744", - "ID2781", - "ID2788", - "ID2813", - "ID2856", - "ID2863", - "ID2888", - "ID2917", - "ID2946", - "ID3005", - "ID3062", - "ID3119", - "ID3154", - "ID3189", - "ID3196", - "ID3203", - "ID3216", - "ID3229", - "ID3254", - "ID3261", - "ID3268", - "ID3337", - "ID3406", - "ID3441", - "ID3510", - "ID3517", - "ID3586", - "ID3601", - "ID3656", - "ID3671", - "ID3760", - "ID3817", - "ID3906", - "ID3995", - "ID4032", - "ID4069", - "ID4076", - "ID4133", - "ID4140", - "ID4175", - "ID4234", - "ID4293", - "ID4328", - "ID4335", - "ID4354", - "ID4361", - "ID4380", - "ID4399", - "ID4418", - "ID4425", - "ID4432", - "ID4439", - "ID4724", - "ID5009", - "ID5294", - "ID5579", - "ID5604", - "ID5629", - "ID5687", - "ID5701", - "ID5702", - "ID5716", - "ID5717", - "ID5718" - ], - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1 - ], - "name": "SketchUp" - } - }, - "programs": { - "program_0": { - "attributes": [ - "a_normal", - "a_position" - ], - "fragmentShader": "Rambler0FS", - "vertexShader": "Rambler0VS" - } - }, - "scene": "defaultScene", - "scenes": { - "defaultScene": { - "nodes": [ - "node_0" - ] - } - }, - "shaders": { - "Rambler0FS": { - "path": "Rambler0FS.glsl", - "type": 35632 - }, - "Rambler0VS": { - "path": "Rambler0VS.glsl", - "type": 35633 - } - }, - "skins": {}, - "techniques": { - "technique1": { - "parameters": { - "diffuse": { - "type": 35666 - }, - "modelViewMatrix": { - "semantic": "MODELVIEW", - "type": 35676 - }, - "normal": { - "semantic": "NORMAL", - "type": 35665 - }, - "normalMatrix": { - "semantic": "MODELVIEWINVERSETRANSPOSE", - "type": 35675 - }, - "position": { - "semantic": "POSITION", - "type": 35665 - }, - "projectionMatrix": { - "semantic": "PROJECTION", - "type": 35676 - } - }, - "pass": "defaultPass", - "passes": { - "defaultPass": { - "details": { - "commonProfile": { - "extras": { - "doubleSided": false - }, - "lightingModel": "Lambert", - "parameters": [ - "diffuse", - "modelViewMatrix", - "normalMatrix", - "projectionMatrix" - ] - }, - "type": "COLLADA-1.4.1/commonProfile" - }, - "instanceProgram": { - "attributes": { - "a_normal": "normal", - "a_position": "position" - }, - "program": "program_0", - "uniforms": { - "u_diffuse": "diffuse", - "u_modelViewMatrix": "modelViewMatrix", - "u_normalMatrix": "normalMatrix", - "u_projectionMatrix": "projectionMatrix" - } - }, - "states": { - "blendEnable": 0, - "cullFaceEnable": 1, - "depthMask": 1, - "depthTestEnable": 1 - } - } - } - } - } -} \ No newline at end of file diff --git a/model/rambler/Rambler0FS.glsl b/model/rambler/Rambler0FS.glsl index a5cc8c1142..b41a6d5fc6 100644 --- a/model/rambler/Rambler0FS.glsl +++ b/model/rambler/Rambler0FS.glsl @@ -1,12 +1,7 @@ precision highp float; -varying vec3 v_normal; -uniform vec4 u_diffuse; void main(void) { -vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); vec4 diffuse = vec4(0., 0., 0., 1.); -diffuse = u_diffuse; -diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); color.xyz += diffuse.xyz; color = vec4(color.rgb * diffuse.a, diffuse.a); gl_FragColor = color; diff --git a/model/rambler/Rambler0VS.glsl b/model/rambler/Rambler0VS.glsl index 999140ee9e..17237bfea9 100644 --- a/model/rambler/Rambler0VS.glsl +++ b/model/rambler/Rambler0VS.glsl @@ -1,12 +1,8 @@ precision highp float; attribute vec3 a_position; -attribute vec3 a_normal; -varying vec3 v_normal; -uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); gl_Position = u_projectionMatrix * pos; } diff --git a/model/rambler/Rambler1FS.glsl b/model/rambler/Rambler1FS.glsl new file mode 100644 index 0000000000..a5cc8c1142 --- /dev/null +++ b/model/rambler/Rambler1FS.glsl @@ -0,0 +1,13 @@ +precision highp float; +varying vec3 v_normal; +uniform vec4 u_diffuse; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +diffuse = u_diffuse; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a); +gl_FragColor = color; +} diff --git a/model/SuperMurdoch/SuperMurdoch4VS.glsl b/model/rambler/Rambler1VS.glsl similarity index 62% rename from model/SuperMurdoch/SuperMurdoch4VS.glsl rename to model/rambler/Rambler1VS.glsl index 4b48d8e2b4..9e3592280a 100644 --- a/model/SuperMurdoch/SuperMurdoch4VS.glsl +++ b/model/rambler/Rambler1VS.glsl @@ -3,10 +3,10 @@ attribute vec3 a_position; attribute vec3 a_normal; varying vec3 v_normal; uniform mat3 u_normalMatrix; -uniform mat4 u_worldViewMatrix; +uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { -v_normal = normalize(u_normalMatrix * a_normal); -vec4 pos = u_worldViewMatrix * vec4(a_position,1.0); +vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); +v_normal = u_normalMatrix * a_normal; gl_Position = u_projectionMatrix * pos; } diff --git a/model/wine/wine.bin b/model/wine/wine.bin old mode 100755 new mode 100644 index 625312829e..c43dfb43a3 Binary files a/model/wine/wine.bin and b/model/wine/wine.bin differ diff --git a/model/wine/wine.json b/model/wine/wine.gltf old mode 100755 new mode 100644 similarity index 94% rename from model/wine/wine.json rename to model/wine/wine.gltf index be0c400023..47475b0db2 --- a/model/wine/wine.json +++ b/model/wine/wine.gltf @@ -1,15 +1,129 @@ { "accessors": { - "accessor_118": { - "bufferView": "bufferView_395", - "byteOffset": 8208, + "accessor_10": { + "bufferView": "bufferView_428", + "byteOffset": 9272, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_101": { + "bufferView": "bufferView_429", + "byteOffset": 20400, + "byteStride": 12, + "count": 720, + "max": [ + 16.8, + 19.5, + 0.75 + ], + "min": [ + 1.4, + -0, + 0 + ], + "type": 35665 + }, + "accessor_103": { + "bufferView": "bufferView_429", + "byteOffset": 29040, + "byteStride": 12, + "count": 720, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_12": { + "bufferView": "bufferView_429", + "byteOffset": 47344, + "byteStride": 12, + "count": 2, + "max": [ + 24.7369, + 1.5, + 3.5 + ], + "min": [ + 24.7369, + 1, + 3.5 + ], + "type": 35665 + }, + "accessor_124": { + "bufferView": "bufferView_428", + "byteOffset": 8120, + "byteStride": 0, + "count": 48, + "type": 5123 + }, + "accessor_126": { + "bufferView": "bufferView_429", + "byteOffset": 37680, + "byteStride": 12, + "count": 30, + "max": [ + 0.5, + 21, + 46.6166 + ], + "min": [ + -0.5, + 0, + 2.5 + ], + "type": 35665 + }, + "accessor_128": { + "bufferView": "bufferView_429", + "byteOffset": 38040, + "byteStride": 12, + "count": 30, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": 35665 + }, + "accessor_130": { + "bufferView": "bufferView_429", + "byteOffset": 38400, + "byteStride": 8, + "count": 30, + "max": [ + 0.291667, + 1 + ], + "min": [ + -0.291667, + 0.352547 + ], + "type": 35664 + }, + "accessor_151": { + "bufferView": "bufferView_428", + "byteOffset": 8216, "byteStride": 0, "count": 360, "type": 5123 }, - "accessor_120": { - "bufferView": "bufferView_396", - "byteOffset": 38592, + "accessor_153": { + "bufferView": "bufferView_429", + "byteOffset": 38640, "byteStride": 12, "count": 176, "max": [ @@ -24,9 +138,9 @@ ], "type": 35665 }, - "accessor_122": { - "bufferView": "bufferView_396", - "byteOffset": 40704, + "accessor_155": { + "bufferView": "bufferView_429", + "byteOffset": 40752, "byteStride": 12, "count": 176, "max": [ @@ -41,9 +155,9 @@ ], "type": 35665 }, - "accessor_124": { - "bufferView": "bufferView_396", - "byteOffset": 42816, + "accessor_157": { + "bufferView": "bufferView_429", + "byteOffset": 42864, "byteStride": 8, "count": 176, "max": [ @@ -56,16 +170,16 @@ ], "type": 35664 }, - "accessor_145": { - "bufferView": "bufferView_395", - "byteOffset": 8928, + "accessor_178": { + "bufferView": "bufferView_428", + "byteOffset": 8936, "byteStride": 0, "count": 168, "type": 5123 }, - "accessor_147": { - "bufferView": "bufferView_396", - "byteOffset": 44224, + "accessor_180": { + "bufferView": "bufferView_429", + "byteOffset": 44272, "byteStride": 12, "count": 96, "max": [ @@ -80,9 +194,9 @@ ], "type": 35665 }, - "accessor_149": { - "bufferView": "bufferView_396", - "byteOffset": 45376, + "accessor_182": { + "bufferView": "bufferView_429", + "byteOffset": 45424, "byteStride": 12, "count": 96, "max": [ @@ -97,9 +211,9 @@ ], "type": 35665 }, - "accessor_151": { - "bufferView": "bufferView_396", - "byteOffset": 46528, + "accessor_184": { + "bufferView": "bufferView_429", + "byteOffset": 46576, "byteStride": 8, "count": 96, "max": [ @@ -112,16 +226,16 @@ ], "type": 35664 }, - "accessor_172": { - "bufferView": "bufferView_395", - "byteOffset": 9264, + "accessor_205": { + "bufferView": "bufferView_428", + "byteOffset": 9276, "byteStride": 0, "count": 4740, "type": 5123 }, - "accessor_174": { - "bufferView": "bufferView_396", - "byteOffset": 47296, + "accessor_207": { + "bufferView": "bufferView_429", + "byteOffset": 47368, "byteStride": 12, "count": 1968, "max": [ @@ -136,9 +250,9 @@ ], "type": 35665 }, - "accessor_176": { - "bufferView": "bufferView_396", - "byteOffset": 70912, + "accessor_209": { + "bufferView": "bufferView_429", + "byteOffset": 70984, "byteStride": 12, "count": 1968, "max": [ @@ -153,9 +267,9 @@ ], "type": 35665 }, - "accessor_178": { - "bufferView": "bufferView_396", - "byteOffset": 94528, + "accessor_211": { + "bufferView": "bufferView_429", + "byteOffset": 94600, "byteStride": 8, "count": 1968, "max": [ @@ -168,23 +282,47 @@ ], "type": 35664 }, - "accessor_216": { - "bufferView": "bufferView_395", - "byteOffset": 18744, + "accessor_22": { + "bufferView": "bufferView_428", + "byteOffset": 0, + "byteStride": 0, + "count": 2, + "type": 5123 + }, + "accessor_24": { + "bufferView": "bufferView_429", + "byteOffset": 0, + "byteStride": 12, + "count": 2, + "max": [ + 19.7369, + 1.5, + 3.5 + ], + "min": [ + 19.7369, + 1, + 3.5 + ], + "type": 35665 + }, + "accessor_249": { + "bufferView": "bufferView_428", + "byteOffset": 18756, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_219": { - "bufferView": "bufferView_395", - "byteOffset": 18876, + "accessor_252": { + "bufferView": "bufferView_428", + "byteOffset": 18888, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_221": { - "bufferView": "bufferView_396", - "byteOffset": 110272, + "accessor_254": { + "bufferView": "bufferView_429", + "byteOffset": 110344, "byteStride": 12, "count": 48, "max": [ @@ -199,9 +337,9 @@ ], "type": 35665 }, - "accessor_223": { - "bufferView": "bufferView_396", - "byteOffset": 110848, + "accessor_256": { + "bufferView": "bufferView_429", + "byteOffset": 110920, "byteStride": 12, "count": 48, "max": [ @@ -216,9 +354,9 @@ ], "type": 35665 }, - "accessor_225": { - "bufferView": "bufferView_396", - "byteOffset": 111424, + "accessor_258": { + "bufferView": "bufferView_429", + "byteOffset": 111496, "byteStride": 8, "count": 48, "max": [ @@ -231,23 +369,16 @@ ], "type": 35664 }, - "accessor_24": { - "bufferView": "bufferView_395", - "byteOffset": 0, - "byteStride": 0, - "count": 168, - "type": 5123 - }, - "accessor_246": { - "bufferView": "bufferView_395", - "byteOffset": 19008, + "accessor_279": { + "bufferView": "bufferView_428", + "byteOffset": 19020, "byteStride": 0, "count": 360, "type": 5123 }, - "accessor_248": { - "bufferView": "bufferView_396", - "byteOffset": 111808, + "accessor_281": { + "bufferView": "bufferView_429", + "byteOffset": 111880, "byteStride": 12, "count": 176, "max": [ @@ -262,9 +393,9 @@ ], "type": 35665 }, - "accessor_250": { - "bufferView": "bufferView_396", - "byteOffset": 113920, + "accessor_283": { + "bufferView": "bufferView_429", + "byteOffset": 113992, "byteStride": 12, "count": 176, "max": [ @@ -279,9 +410,9 @@ ], "type": 35665 }, - "accessor_252": { - "bufferView": "bufferView_396", - "byteOffset": 116032, + "accessor_285": { + "bufferView": "bufferView_429", + "byteOffset": 116104, "byteStride": 8, "count": 176, "max": [ @@ -294,33 +425,16 @@ ], "type": 35664 }, - "accessor_26": { - "bufferView": "bufferView_396", - "byteOffset": 0, - "byteStride": 12, - "count": 96, - "max": [ - 2, - 21, - 38 - ], - "min": [ - 0, - 0, - 5.5 - ], - "type": 35665 - }, - "accessor_268": { - "bufferView": "bufferView_395", - "byteOffset": 19728, + "accessor_301": { + "bufferView": "bufferView_428", + "byteOffset": 19740, "byteStride": 0, "count": 600, "type": 5123 }, - "accessor_270": { - "bufferView": "bufferView_396", - "byteOffset": 117440, + "accessor_303": { + "bufferView": "bufferView_429", + "byteOffset": 117512, "byteStride": 12, "count": 224, "max": [ @@ -335,9 +449,9 @@ ], "type": 35665 }, - "accessor_272": { - "bufferView": "bufferView_396", - "byteOffset": 120128, + "accessor_305": { + "bufferView": "bufferView_429", + "byteOffset": 120200, "byteStride": 12, "count": 224, "max": [ @@ -352,33 +466,16 @@ ], "type": 35665 }, - "accessor_28": { - "bufferView": "bufferView_396", - "byteOffset": 1152, - "byteStride": 12, - "count": 96, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_293": { - "bufferView": "bufferView_395", - "byteOffset": 20928, + "accessor_326": { + "bufferView": "bufferView_428", + "byteOffset": 20940, "byteStride": 0, "count": 6918, "type": 5123 }, - "accessor_295": { - "bufferView": "bufferView_396", - "byteOffset": 122816, + "accessor_328": { + "bufferView": "bufferView_429", + "byteOffset": 122888, "byteStride": 12, "count": 2933, "max": [ @@ -393,9 +490,9 @@ ], "type": 35665 }, - "accessor_297": { - "bufferView": "bufferView_396", - "byteOffset": 158012, + "accessor_330": { + "bufferView": "bufferView_429", + "byteOffset": 158084, "byteStride": 12, "count": 2933, "max": [ @@ -410,9 +507,9 @@ ], "type": 35665 }, - "accessor_299": { - "bufferView": "bufferView_396", - "byteOffset": 193208, + "accessor_332": { + "bufferView": "bufferView_429", + "byteOffset": 193280, "byteStride": 8, "count": 2933, "max": [ @@ -425,31 +522,23 @@ ], "type": 35664 }, - "accessor_30": { - "bufferView": "bufferView_396", - "byteOffset": 2304, - "byteStride": 8, - "count": 96, - "max": [ - 4.15963, - 1.11374 - ], - "min": [ - -1.14777, - -0.08885 - ], - "type": 35664 + "accessor_34": { + "bufferView": "bufferView_428", + "byteOffset": 4, + "byteStride": 0, + "count": 2, + "type": 5123 }, - "accessor_315": { - "bufferView": "bufferView_395", - "byteOffset": 34764, + "accessor_348": { + "bufferView": "bufferView_428", + "byteOffset": 34776, "byteStride": 0, "count": 216, "type": 5123 }, - "accessor_317": { - "bufferView": "bufferView_396", - "byteOffset": 216672, + "accessor_350": { + "bufferView": "bufferView_429", + "byteOffset": 216744, "byteStride": 12, "count": 120, "max": [ @@ -464,9 +553,9 @@ ], "type": 35665 }, - "accessor_319": { - "bufferView": "bufferView_396", - "byteOffset": 218112, + "accessor_352": { + "bufferView": "bufferView_429", + "byteOffset": 218184, "byteStride": 12, "count": 120, "max": [ @@ -481,16 +570,33 @@ ], "type": 35665 }, - "accessor_340": { - "bufferView": "bufferView_395", - "byteOffset": 35196, + "accessor_36": { + "bufferView": "bufferView_429", + "byteOffset": 24, + "byteStride": 12, + "count": 2, + "max": [ + 119, + -0, + 34.625 + ], + "min": [ + 118, + -0, + 34.625 + ], + "type": 35665 + }, + "accessor_373": { + "bufferView": "bufferView_428", + "byteOffset": 35208, "byteStride": 0, "count": 4740, "type": 5123 }, - "accessor_342": { - "bufferView": "bufferView_396", - "byteOffset": 219552, + "accessor_375": { + "bufferView": "bufferView_429", + "byteOffset": 219624, "byteStride": 12, "count": 1968, "max": [ @@ -505,9 +611,9 @@ ], "type": 35665 }, - "accessor_344": { - "bufferView": "bufferView_396", - "byteOffset": 243168, + "accessor_377": { + "bufferView": "bufferView_429", + "byteOffset": 243240, "byteStride": 12, "count": 1968, "max": [ @@ -522,9 +628,9 @@ ], "type": 35665 }, - "accessor_346": { - "bufferView": "bufferView_396", - "byteOffset": 266784, + "accessor_379": { + "bufferView": "bufferView_429", + "byteOffset": 266856, "byteStride": 8, "count": 1968, "max": [ @@ -537,23 +643,23 @@ ], "type": 35664 }, - "accessor_384": { - "bufferView": "bufferView_395", - "byteOffset": 44676, + "accessor_417": { + "bufferView": "bufferView_428", + "byteOffset": 44688, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_387": { - "bufferView": "bufferView_395", - "byteOffset": 44808, + "accessor_420": { + "bufferView": "bufferView_428", + "byteOffset": 44820, "byteStride": 0, "count": 66, "type": 5123 }, - "accessor_389": { - "bufferView": "bufferView_396", - "byteOffset": 282528, + "accessor_422": { + "bufferView": "bufferView_429", + "byteOffset": 282600, "byteStride": 12, "count": 48, "max": [ @@ -568,9 +674,9 @@ ], "type": 35665 }, - "accessor_391": { - "bufferView": "bufferView_396", - "byteOffset": 283104, + "accessor_424": { + "bufferView": "bufferView_429", + "byteOffset": 283176, "byteStride": 12, "count": 48, "max": [ @@ -585,9 +691,9 @@ ], "type": 35665 }, - "accessor_393": { - "bufferView": "bufferView_396", - "byteOffset": 283680, + "accessor_426": { + "bufferView": "bufferView_429", + "byteOffset": 283752, "byteStride": 8, "count": 48, "max": [ @@ -600,35 +706,35 @@ ], "type": 35664 }, - "accessor_46": { - "bufferView": "bufferView_395", - "byteOffset": 336, + "accessor_57": { + "bufferView": "bufferView_428", + "byteOffset": 8, "byteStride": 0, - "count": 1944, + "count": 168, "type": 5123 }, - "accessor_48": { - "bufferView": "bufferView_396", - "byteOffset": 3072, + "accessor_59": { + "bufferView": "bufferView_429", + "byteOffset": 48, "byteStride": 12, - "count": 720, + "count": 96, "max": [ - 16.8, - 19.5, - 0.75 + 2, + 21, + 38 ], "min": [ - 1.4, - -0, - 0 + 0, + 0, + 5.5 ], "type": 35665 }, - "accessor_50": { - "bufferView": "bufferView_396", - "byteOffset": 11712, + "accessor_61": { + "bufferView": "bufferView_429", + "byteOffset": 1200, "byteStride": 12, - "count": 720, + "count": 96, "max": [ 1, 1, @@ -641,16 +747,31 @@ ], "type": 35665 }, - "accessor_66": { - "bufferView": "bufferView_395", - "byteOffset": 4224, + "accessor_63": { + "bufferView": "bufferView_429", + "byteOffset": 2352, + "byteStride": 8, + "count": 96, + "max": [ + 4.15963, + 1.11374 + ], + "min": [ + -1.14777, + -0.08885 + ], + "type": 35664 + }, + "accessor_79": { + "bufferView": "bufferView_428", + "byteOffset": 344, "byteStride": 0, "count": 1944, "type": 5123 }, - "accessor_68": { - "bufferView": "bufferView_396", - "byteOffset": 20352, + "accessor_81": { + "bufferView": "bufferView_429", + "byteOffset": 3120, "byteStride": 12, "count": 720, "max": [ @@ -665,9 +786,9 @@ ], "type": 35665 }, - "accessor_70": { - "bufferView": "bufferView_396", - "byteOffset": 28992, + "accessor_83": { + "bufferView": "bufferView_429", + "byteOffset": 11760, "byteStride": 12, "count": 720, "max": [ @@ -682,89 +803,40 @@ ], "type": 35665 }, - "accessor_91": { - "bufferView": "bufferView_395", - "byteOffset": 8112, + "accessor_99": { + "bufferView": "bufferView_428", + "byteOffset": 4232, "byteStride": 0, - "count": 48, + "count": 1944, "type": 5123 - }, - "accessor_93": { - "bufferView": "bufferView_396", - "byteOffset": 37632, - "byteStride": 12, - "count": 30, - "max": [ - 0.5, - 21, - 46.6166 - ], - "min": [ - -0.5, - 0, - 2.5 - ], - "type": 35665 - }, - "accessor_95": { - "bufferView": "bufferView_396", - "byteOffset": 37992, - "byteStride": 12, - "count": 30, - "max": [ - 1, - 1, - 1 - ], - "min": [ - -1, - -1, - -1 - ], - "type": 35665 - }, - "accessor_97": { - "bufferView": "bufferView_396", - "byteOffset": 38352, - "byteStride": 8, - "count": 30, - "max": [ - 0.291667, - 1 - ], - "min": [ - -0.291667, - 0.352547 - ], - "type": 35664 } }, "animations": {}, "asset": { - "generator": "collada2gltf@53bdd01c320c249c36ae9fbc439ae2cdee39acc8", + "generator": "collada2gltf@506d909430e3f033e2a84c31b1d41270f7c6eb67", "premultipliedAlpha": true, "profile": "WebGL 1.0.2", - "version": 0.6 + "version": 0.7 }, "bufferViews": { - "bufferView_395": { + "bufferView_428": { "buffer": "wine", - "byteLength": 44940, + "byteLength": 44952, "byteOffset": 0, "target": 34963 }, - "bufferView_396": { + "bufferView_429": { "buffer": "wine", - "byteLength": 284064, - "byteOffset": 44940, + "byteLength": 284136, + "byteOffset": 44952, "target": 34962 } }, "buffers": { "wine": { - "byteLength": 329004, - "path": "wine.bin", - "type": "arraybuffer" + "byteLength": 329088, + "type": "arraybuffer", + "uri": "wine.bin" } }, "cameras": { @@ -779,13 +851,13 @@ }, "images": { "ID140": { - "path": "artezin_bottle.jpg" + "uri": "artezin_bottle.jpg" }, "ID7": { - "path": "Wood_Cherry_Original_.jpg" + "uri": "Wood_Cherry_Original_.jpg" }, "ID78": { - "path": "_2004_old_vine_zinfandel_btl_xlg.jpg" + "uri": "_2004_old_vine_zinfandel_btl_xlg.jpg" } }, "materials": { @@ -825,6 +897,20 @@ }, "name": "material_5" }, + "ID217": { + "instanceTechnique": { + "technique": "technique3", + "values": {} + }, + "name": "edge_color683818255" + }, + "ID227": { + "instanceTechnique": { + "technique": "technique3", + "values": {} + }, + "name": "edge_color353535255" + }, "ID6": { "instanceTechnique": { "technique": "technique1", @@ -857,7 +943,7 @@ }, "ID89": { "instanceTechnique": { - "technique": "technique3", + "technique": "technique4", "values": { "ambient": [ 0.2, @@ -877,16 +963,42 @@ } }, "meshes": { + "geometry10": { + "name": "geometry10", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_24" + }, + "indices": "accessor_22", + "material": "ID217", + "primitive": 1 + } + ] + }, + "geometry13": { + "name": "geometry13", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_36" + }, + "indices": "accessor_34", + "material": "ID227", + "primitive": 1 + } + ] + }, "geometry16": { "name": "geometry16", "primitives": [ { "attributes": { - "NORMAL": "accessor_28", - "POSITION": "accessor_26", - "TEXCOORD_0": "accessor_30" + "NORMAL": "accessor_61", + "POSITION": "accessor_59", + "TEXCOORD_0": "accessor_63" }, - "indices": "accessor_24", + "indices": "accessor_57", "material": "ID6", "primitive": 4 } @@ -897,10 +1009,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_50", - "POSITION": "accessor_48" + "NORMAL": "accessor_83", + "POSITION": "accessor_81" }, - "indices": "accessor_46", + "indices": "accessor_79", "material": "ID21", "primitive": 4 } @@ -911,10 +1023,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_70", - "POSITION": "accessor_68" + "NORMAL": "accessor_103", + "POSITION": "accessor_101" }, - "indices": "accessor_66", + "indices": "accessor_99", "material": "ID21", "primitive": 4 } @@ -925,11 +1037,11 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_95", - "POSITION": "accessor_93", - "TEXCOORD_0": "accessor_97" + "NORMAL": "accessor_128", + "POSITION": "accessor_126", + "TEXCOORD_0": "accessor_130" }, - "indices": "accessor_91", + "indices": "accessor_124", "material": "ID6", "primitive": 4 } @@ -940,11 +1052,11 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_122", - "POSITION": "accessor_120", - "TEXCOORD_0": "accessor_124" + "NORMAL": "accessor_155", + "POSITION": "accessor_153", + "TEXCOORD_0": "accessor_157" }, - "indices": "accessor_118", + "indices": "accessor_151", "material": "ID6", "primitive": 4 } @@ -955,26 +1067,39 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_149", - "POSITION": "accessor_147", - "TEXCOORD_0": "accessor_151" + "NORMAL": "accessor_182", + "POSITION": "accessor_180", + "TEXCOORD_0": "accessor_184" }, - "indices": "accessor_145", + "indices": "accessor_178", "material": "ID6", "primitive": 4 } ] }, + "geometry5": { + "name": "geometry5", + "primitives": [ + { + "attributes": { + "POSITION": "accessor_12" + }, + "indices": "accessor_10", + "material": "ID217", + "primitive": 1 + } + ] + }, "geometry51": { "name": "geometry51", "primitives": [ { "attributes": { - "NORMAL": "accessor_176", - "POSITION": "accessor_174", - "TEXCOORD_0": "accessor_178" + "NORMAL": "accessor_209", + "POSITION": "accessor_207", + "TEXCOORD_0": "accessor_211" }, - "indices": "accessor_172", + "indices": "accessor_205", "material": "ID77", "primitive": 4 } @@ -985,21 +1110,21 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_223", - "POSITION": "accessor_221", - "TEXCOORD_0": "accessor_225" + "NORMAL": "accessor_256", + "POSITION": "accessor_254", + "TEXCOORD_0": "accessor_258" }, - "indices": "accessor_216", + "indices": "accessor_249", "material": "ID89", "primitive": 4 }, { "attributes": { - "NORMAL": "accessor_223", - "POSITION": "accessor_221", - "TEXCOORD_0": "accessor_225" + "NORMAL": "accessor_256", + "POSITION": "accessor_254", + "TEXCOORD_0": "accessor_258" }, - "indices": "accessor_219", + "indices": "accessor_252", "material": "ID77", "primitive": 4 } @@ -1010,11 +1135,11 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_250", - "POSITION": "accessor_248", - "TEXCOORD_0": "accessor_252" + "NORMAL": "accessor_283", + "POSITION": "accessor_281", + "TEXCOORD_0": "accessor_285" }, - "indices": "accessor_246", + "indices": "accessor_279", "material": "ID6", "primitive": 4 } @@ -1025,10 +1150,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_272", - "POSITION": "accessor_270" + "NORMAL": "accessor_305", + "POSITION": "accessor_303" }, - "indices": "accessor_268", + "indices": "accessor_301", "material": "ID21", "primitive": 4 } @@ -1039,11 +1164,11 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_297", - "POSITION": "accessor_295", - "TEXCOORD_0": "accessor_299" + "NORMAL": "accessor_330", + "POSITION": "accessor_328", + "TEXCOORD_0": "accessor_332" }, - "indices": "accessor_293", + "indices": "accessor_326", "material": "ID139", "primitive": 4 } @@ -1054,10 +1179,10 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_319", - "POSITION": "accessor_317" + "NORMAL": "accessor_352", + "POSITION": "accessor_350" }, - "indices": "accessor_315", + "indices": "accessor_348", "material": "ID21", "primitive": 4 } @@ -1068,11 +1193,11 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_344", - "POSITION": "accessor_342", - "TEXCOORD_0": "accessor_346" + "NORMAL": "accessor_377", + "POSITION": "accessor_375", + "TEXCOORD_0": "accessor_379" }, - "indices": "accessor_340", + "indices": "accessor_373", "material": "ID77", "primitive": 4 } @@ -1083,21 +1208,21 @@ "primitives": [ { "attributes": { - "NORMAL": "accessor_391", - "POSITION": "accessor_389", - "TEXCOORD_0": "accessor_393" + "NORMAL": "accessor_424", + "POSITION": "accessor_422", + "TEXCOORD_0": "accessor_426" }, - "indices": "accessor_384", + "indices": "accessor_417", "material": "ID89", "primitive": 4 }, { "attributes": { - "NORMAL": "accessor_391", - "POSITION": "accessor_389", - "TEXCOORD_0": "accessor_393" + "NORMAL": "accessor_424", + "POSITION": "accessor_422", + "TEXCOORD_0": "accessor_426" }, - "indices": "accessor_387", + "indices": "accessor_420", "material": "ID77", "primitive": 4 } @@ -3007,6 +3132,9 @@ 0, 1 ], + "meshes": [ + "geometry5" + ], "name": "ID215" }, "ID221": { @@ -3029,6 +3157,9 @@ 0, 1 ], + "meshes": [ + "geometry10" + ], "name": "ID221" }, "ID225": { @@ -3051,6 +3182,9 @@ 0, 1 ], + "meshes": [ + "geometry13" + ], "name": "ID225" }, "ID28": { @@ -11591,6 +11725,31 @@ "geometry58" ], "name": "ID88" + }, + "node_424": { + "children": [ + "SketchUp", + "default_camera" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + -1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" } }, "programs": { @@ -11613,11 +11772,18 @@ }, "program_2": { "attributes": [ - "a_normal", "a_position" ], "fragmentShader": "wine2FS", "vertexShader": "wine2VS" + }, + "program_3": { + "attributes": [ + "a_normal", + "a_position" + ], + "fragmentShader": "wine3FS", + "vertexShader": "wine3VS" } }, "samplers": { @@ -11632,35 +11798,42 @@ "scenes": { "defaultScene": { "nodes": [ - "SketchUp", - "default_camera" + "node_424" ] } }, "shaders": { "wine0FS": { - "path": "wine0FS.glsl", - "type": 35632 + "type": 35632, + "uri": "wine0FS.glsl" }, "wine0VS": { - "path": "wine0VS.glsl", - "type": 35633 + "type": 35633, + "uri": "wine0VS.glsl" }, "wine1FS": { - "path": "wine1FS.glsl", - "type": 35632 + "type": 35632, + "uri": "wine1FS.glsl" }, "wine1VS": { - "path": "wine1VS.glsl", - "type": 35633 + "type": 35633, + "uri": "wine1VS.glsl" }, "wine2FS": { - "path": "wine2FS.glsl", - "type": 35632 + "type": 35632, + "uri": "wine2FS.glsl" }, "wine2VS": { - "path": "wine2VS.glsl", - "type": 35633 + "type": 35633, + "uri": "wine2VS.glsl" + }, + "wine3FS": { + "type": 35632, + "uri": "wine3FS.glsl" + }, + "wine3VS": { + "type": 35633, + "uri": "wine3VS.glsl" } }, "skins": {}, @@ -11826,6 +11999,56 @@ } }, "technique3": { + "parameters": { + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + } + }, + "pass": "defaultPass", + "passes": { + "defaultPass": { + "details": { + "commonProfile": { + "extras": { + "doubleSided": false + }, + "lightingModel": "Constant", + "parameters": [ + "modelViewMatrix", + "projectionMatrix" + ] + }, + "type": "COLLADA-1.4.1/commonProfile" + }, + "instanceProgram": { + "attributes": { + "a_position": "position" + }, + "program": "program_2", + "uniforms": { + "u_modelViewMatrix": "modelViewMatrix", + "u_projectionMatrix": "projectionMatrix" + } + }, + "states": { + "blendEnable": 0, + "cullFaceEnable": 1, + "depthMask": 1, + "depthTestEnable": 1 + } + } + } + }, + "technique4": { "parameters": { "ambient": { "type": 35666 @@ -11878,7 +12101,7 @@ "a_normal": "normal", "a_position": "position" }, - "program": "program_2", + "program": "program_3", "uniforms": { "u_ambient": "ambient", "u_diffuse": "diffuse", diff --git a/model/wine/wine0VS.glsl b/model/wine/wine0VS.glsl index e4192f822c..cacc9ed997 100644 --- a/model/wine/wine0VS.glsl +++ b/model/wine/wine0VS.glsl @@ -9,7 +9,7 @@ attribute vec2 a_texcoord0; varying vec2 v_texcoord0; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); +v_normal = u_normalMatrix * a_normal; v_texcoord0 = a_texcoord0; gl_Position = u_projectionMatrix * pos; } diff --git a/model/wine/wine1FS.glsl b/model/wine/wine1FS.glsl new file mode 100644 index 0000000000..d490b4ee7d --- /dev/null +++ b/model/wine/wine1FS.glsl @@ -0,0 +1,17 @@ +precision highp float; +varying vec3 v_normal; +uniform vec4 u_ambient; +uniform vec4 u_diffuse; +uniform float u_transparency; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +vec4 ambient; +ambient = u_ambient; +diffuse = u_diffuse; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a * u_transparency); +gl_FragColor = color; +} diff --git a/model/wine/wine1VS.glsl b/model/wine/wine1VS.glsl new file mode 100644 index 0000000000..9e3592280a --- /dev/null +++ b/model/wine/wine1VS.glsl @@ -0,0 +1,12 @@ +precision highp float; +attribute vec3 a_position; +attribute vec3 a_normal; +varying vec3 v_normal; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +void main(void) { +vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); +v_normal = u_normalMatrix * a_normal; +gl_Position = u_projectionMatrix * pos; +} diff --git a/model/wine/wine2FS.glsl b/model/wine/wine2FS.glsl index 79082198cc..b41a6d5fc6 100644 --- a/model/wine/wine2FS.glsl +++ b/model/wine/wine2FS.glsl @@ -1,15 +1,7 @@ precision highp float; -varying vec3 v_normal; -uniform vec4 u_ambient; -uniform vec4 u_diffuse; void main(void) { -vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); vec4 diffuse = vec4(0., 0., 0., 1.); -vec4 ambient; -ambient = u_ambient; -diffuse = u_diffuse; -diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); color.xyz += diffuse.xyz; color = vec4(color.rgb * diffuse.a, diffuse.a); gl_FragColor = color; diff --git a/model/wine/wine2VS.glsl b/model/wine/wine2VS.glsl index 999140ee9e..17237bfea9 100644 --- a/model/wine/wine2VS.glsl +++ b/model/wine/wine2VS.glsl @@ -1,12 +1,8 @@ precision highp float; attribute vec3 a_position; -attribute vec3 a_normal; -varying vec3 v_normal; -uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); gl_Position = u_projectionMatrix * pos; } diff --git a/model/wine/wine4FS.glsl b/model/wine/wine3FS.glsl similarity index 100% rename from model/wine/wine4FS.glsl rename to model/wine/wine3FS.glsl diff --git a/model/wine/wine3VS.glsl b/model/wine/wine3VS.glsl new file mode 100644 index 0000000000..9e3592280a --- /dev/null +++ b/model/wine/wine3VS.glsl @@ -0,0 +1,12 @@ +precision highp float; +attribute vec3 a_position; +attribute vec3 a_normal; +varying vec3 v_normal; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +void main(void) { +vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); +v_normal = u_normalMatrix * a_normal; +gl_Position = u_projectionMatrix * pos; +}