2
0
Эх сурвалжийг харах

Added glTF Loader. Still need to put in model credits

Tony Parisi 11 жил өмнө
parent
commit
2187adfd9c
45 өөрчлөгдсөн 89493 нэмэгдсэн , 0 устгасан
  1. 1 0
      examples/index.html
  2. 392 0
      examples/js/loaders/gltf/glTF-parser.js
  3. 247 0
      examples/js/loaders/gltf/glTFAnimation.js
  4. 1643 0
      examples/js/loaders/gltf/glTFLoader.js
  5. 223 0
      examples/js/loaders/gltf/glTFLoaderUtils.js
  6. BIN
      examples/models/gltf/SuperMurdoch/SuperMurdoch.bin
  7. 2576 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch.dae
  8. 14102 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch.json
  9. 13 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch0FS.glsl
  10. 12 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch0VS.glsl
  11. 14 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch2FS.glsl
  12. 12 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch2VS.glsl
  13. 14 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch4FS.glsl
  14. 12 0
      examples/models/gltf/SuperMurdoch/SuperMurdoch4VS.glsl
  15. BIN
      examples/models/gltf/duck/duck.bin
  16. 122 0
      examples/models/gltf/duck/duck.dae
  17. 397 0
      examples/models/gltf/duck/duck.json
  18. 41 0
      examples/models/gltf/duck/duck0FS.glsl
  19. 18 0
      examples/models/gltf/duck/duck0VS.glsl
  20. BIN
      examples/models/gltf/duck/duckCM.png
  21. BIN
      examples/models/gltf/monster/monster.bin
  22. 64 0
      examples/models/gltf/monster/monster.dae
  23. BIN
      examples/models/gltf/monster/monster.jpg
  24. 3587 0
      examples/models/gltf/monster/monster.json
  25. 23 0
      examples/models/gltf/monster/monster0FS.glsl
  26. 24 0
      examples/models/gltf/monster/monster0VS.glsl
  27. 1 0
      examples/models/gltf/monster/readme.txt
  28. BIN
      examples/models/gltf/rambler/Rambler.bin
  29. 9595 0
      examples/models/gltf/rambler/Rambler.dae
  30. 43337 0
      examples/models/gltf/rambler/Rambler.json
  31. 13 0
      examples/models/gltf/rambler/Rambler0FS.glsl
  32. 12 0
      examples/models/gltf/rambler/Rambler0VS.glsl
  33. BIN
      examples/models/gltf/wine/Wood_Cherry_Original_.jpg
  34. BIN
      examples/models/gltf/wine/_2004_old_vine_zinfandel_btl_xlg.jpg
  35. BIN
      examples/models/gltf/wine/artezin_bottle.jpg
  36. BIN
      examples/models/gltf/wine/wine.bin
  37. 471 0
      examples/models/gltf/wine/wine.dae
  38. 11904 0
      examples/models/gltf/wine/wine.json
  39. 17 0
      examples/models/gltf/wine/wine0FS.glsl
  40. 15 0
      examples/models/gltf/wine/wine0VS.glsl
  41. 17 0
      examples/models/gltf/wine/wine2FS.glsl
  42. 12 0
      examples/models/gltf/wine/wine2VS.glsl
  43. 16 0
      examples/models/gltf/wine/wine4FS.glsl
  44. 12 0
      examples/models/gltf/wine/wine4VS.glsl
  45. 534 0
      examples/webgl_loader_gltf.html

+ 1 - 0
examples/index.html

@@ -168,6 +168,7 @@
 				"webgl_loader_collada_skinning",
 				"webgl_loader_ctm",
 				"webgl_loader_ctm_materials",
+				"webgl_loader_gltf",
 				"webgl_loader_json_blender",
 				"webgl_loader_json_objconverter",
 				"webgl_loader_obj",

+ 392 - 0
examples/js/loaders/gltf/glTF-parser.js

@@ -0,0 +1,392 @@
+// Copyright (c) 2013 Fabrice Robinet
+// 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 <COPYRIGHT HOLDER> 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.
+
+/*
+    The Abstract Loader has two modes:
+        #1: [static] load all the JSON at once [as of now]
+        #2: [stream] stream and parse JSON progressively [not yet supported]
+
+    Whatever is the mechanism used to parse the JSON (#1 or #2),
+    The loader starts by resolving the paths to binaries and referenced json files (by replace the value of the path property with an absolute path if it was relative).
+
+    In case #1: it is guaranteed to call the concrete loader implementation methods in a order that solves the dependencies between the entries.
+    only the nodes requires an extra pass to set up the hirerarchy.
+    In case #2: the concrete implementation will have to solve the dependencies. no order is guaranteed.
+
+    When case #1 is used the followed dependency order is:
+
+    scenes -> nodes -> meshes -> materials -> techniques -> shaders
+                    -> buffers
+                    -> cameras
+                    -> lights
+
+    The readers starts with the leafs, i.e:
+        shaders, techniques, materials, meshes, buffers, cameras, lights, nodes, scenes
+
+    For each called handle method called the client should return true if the next handle can be call right after returning,
+    or false if a callback on client side will notify the loader that the next handle method can be called.
+
+*/
+var global = window;
+(function (root, factory) {
+    if (typeof exports === 'object') {
+        // Node. Does not work with strict CommonJS, but
+        // only CommonJS-like enviroments that support module.exports,
+        // like Node.
+        factory(module.exports);
+    } else if (typeof define === 'function' && define.amd) {
+        // AMD. Register as an anonymous module.
+        define([], function () {
+            return factory(root);
+        });
+    } else {
+        // Browser globals
+        factory(root);
+    }
+}(this, function (root) {
+    "use strict";
+
+    var categoriesDepsOrder = ["buffers", "bufferViews", "images",  "videos", "samplers", "textures", "shaders", "programs", "techniques", "materials", "accessors", "meshes", "cameras", "lights", "skins", "nodes", "scenes", "animations"];
+
+    var glTFParser = Object.create(Object.prototype, {
+
+        _rootDescription: { value: null, writable: true },
+
+        rootDescription: {
+            set: function(value) {
+                this._rootDescription = value;
+            },
+            get: function() {
+                return this._rootDescription;
+            }
+        },
+
+        baseURL: { value: null, writable: true },
+
+        //detect absolute path following the same protocol than window.location
+        _isAbsolutePath: {
+            value: function(path) {
+                var isAbsolutePathRegExp = new RegExp("^"+window.location.protocol, "i");
+
+                return path.match(isAbsolutePathRegExp) ? true : false;
+            }
+        },
+
+        resolvePathIfNeeded: {
+            value: function(path) {
+                if (this._isAbsolutePath(path)) {
+                    return path;
+                }
+
+                return this.baseURL + path;
+            }
+        },
+
+        _resolvePathsForCategories: {
+            value: function(categories) {
+                categories.forEach( function(category) {
+                    var descriptions = this.json[category];
+                    if (descriptions) {
+                        var descriptionKeys = Object.keys(descriptions);
+                        descriptionKeys.forEach( function(descriptionKey) {
+                            var description = descriptions[descriptionKey];
+                            description.path = this.resolvePathIfNeeded(description.path);
+                        }, this);
+                    }
+                }, this);
+            }
+        },
+
+        _json: {
+            value: null,
+            writable: true
+        },
+
+        json: {
+            enumerable: true,
+            get: function() {
+                return this._json;
+            },
+            set: function(value) {
+                if (this._json !== value) {
+                    this._json = value;
+                    this._resolvePathsForCategories(["buffers", "shaders", "images", "videos"]);
+                }
+            }
+        },
+
+        _path: {
+            value: null,
+            writable: true
+        },
+
+        getEntryDescription: {
+            value: function (entryID, entryType) {
+                var entries = null;
+
+                var category = entryType;
+                entries = this.rootDescription[category];
+                if (!entries) {
+                    console.log("ERROR:CANNOT find expected category named:"+category);
+                    return null;
+                }
+
+                return entries ? entries[entryID] : null;
+            }
+        },
+
+        _stepToNextCategory: {
+            value: function() {
+                this._state.categoryIndex = this.getNextCategoryIndex(this._state.categoryIndex + 1);
+                if (this._state.categoryIndex !== -1) {
+                    this._state.categoryState.index = 0;
+                    return true;
+                }
+
+                return false;
+            }
+        },
+
+        _stepToNextDescription: {
+            enumerable: false,
+            value: function() {
+                var categoryState = this._state.categoryState;
+                var keys = categoryState.keys;
+                if (!keys) {
+                    console.log("INCONSISTENCY ERROR");
+                    return false;
+                }
+
+                categoryState.index++;
+                categoryState.keys = null;
+                if (categoryState.index >= keys.length) {
+                    return this._stepToNextCategory();
+                }
+                return false;
+            }
+        },
+
+        hasCategory: {
+            value: function(category) {
+                return this.rootDescription[category] ? true : false;
+            }
+        },
+
+        _handleState: {
+            value: function() {
+
+                var methodForType = {
+                    "buffers" : this.handleBuffer,
+                    "bufferViews" : this.handleBufferView,
+                    "shaders" : this.handleShader,
+                    "programs" : this.handleProgram,
+                    "techniques" : this.handleTechnique,
+                    "materials" : this.handleMaterial,
+                    "meshes" : this.handleMesh,
+                    "cameras" : this.handleCamera,
+                    "lights" : this.handleLight,
+                    "nodes" : this.handleNode,
+                    "scenes" : this.handleScene,
+                    "images" : this.handleImage,
+                    "animations" : this.handleAnimation,
+                    "accessors" : this.handleAccessor,
+                    "skins" : this.handleSkin,
+                    "samplers" : this.handleSampler,
+                    "textures" : this.handleTexture,
+                    "videos" : this.handleVideo
+
+                };
+
+                var success = true;
+                while (this._state.categoryIndex !== -1) {
+                    var category = categoriesDepsOrder[this._state.categoryIndex];
+                    var categoryState = this._state.categoryState;
+                    var keys = categoryState.keys;
+                    if (!keys) {
+                        categoryState.keys = keys = Object.keys(this.rootDescription[category]);
+                        if (keys) {
+                            if (keys.length == 0) {
+                                this._stepToNextDescription();
+                                continue;
+                            }
+                        }
+                    }
+
+                    var type = category;
+                    var entryID = keys[categoryState.index];
+                    var description = this.getEntryDescription(entryID, type);
+                    if (!description) {
+                        if (this.handleError) {
+                            this.handleError("INCONSISTENCY ERROR: no description found for entry "+entryID);
+                            success = false;
+                            break;
+                        }
+                    } else {
+
+                        if (methodForType[type]) {
+                            if (methodForType[type].call(this, entryID, description, this._state.userInfo) === false) {
+                                success = false;
+                                break;
+                            }
+                        }
+
+                        this._stepToNextDescription();
+                    }
+                }
+
+                if (this.handleLoadCompleted) {
+                    this.handleLoadCompleted(success);
+                }
+
+            }
+        },
+
+        _loadJSONIfNeeded: {
+            enumerable: true,
+            value: function(callback) {
+                var self = this;
+                //FIXME: handle error
+                if (!this._json)  {
+                    var jsonPath = this._path;
+                    var i = jsonPath.lastIndexOf("/");
+                    this.baseURL = (i !== 0) ? jsonPath.substring(0, i + 1) : '';
+                    var jsonfile = new XMLHttpRequest();
+                    jsonfile.open("GET", jsonPath, true);
+                    jsonfile.onreadystatechange = function() {
+                        if (jsonfile.readyState == 4) {
+                            if (jsonfile.status == 200) {
+                                self.json = JSON.parse(jsonfile.responseText);
+                                if (callback) {
+                                    callback(self.json);
+                                }
+                            }
+                        }
+                    };
+                    jsonfile.send(null);
+               } else {
+                    if (callback) {
+                        callback(this.json);
+                    }
+                }
+            }
+        },
+
+        /* load JSON and assign it as description to the reader */
+        _buildLoader: {
+            value: function(callback) {
+                var self = this;
+                function JSONReady(json) {
+                    self.rootDescription = json;
+                    if (callback)
+                        callback(this);
+                }
+
+                this._loadJSONIfNeeded(JSONReady);
+            }
+        },
+
+        _state: { value: null, writable: true },
+
+        _getEntryType: {
+            value: function(entryID) {
+                var rootKeys = categoriesDepsOrder;
+                for (var i = 0 ;  i < rootKeys.length ; i++) {
+                    var rootValues = this.rootDescription[rootKeys[i]];
+                    if (rootValues) {
+                        return rootKeys[i];
+                    }
+                }
+                return null;
+            }
+        },
+
+        getNextCategoryIndex: {
+            value: function(currentIndex) {
+                for (var i = currentIndex ; i < categoriesDepsOrder.length ; i++) {
+                    if (this.hasCategory(categoriesDepsOrder[i])) {
+                        return i;
+                    }
+                }
+
+                return -1;
+            }
+        },
+
+        load: {
+            enumerable: true,
+            value: function(userInfo, options) {
+                var self = this;
+                this._buildLoader(function loaderReady(reader) {
+                    var startCategory = self.getNextCategoryIndex.call(self,0);
+                    if (startCategory !== -1) {
+                        self._state = { "userInfo" : userInfo,
+                                        "options" : options,
+                                        "categoryIndex" : startCategory,
+                                        "categoryState" : { "index" : "0" } };
+                        self._handleState();
+                    }
+                });
+            }
+        },
+
+        initWithPath: {
+            value: function(path) {
+                this._path = path;
+                this._json = null;
+                return this;
+            }
+        },
+
+        //this is meant to be global and common for all instances
+        _knownURLs: { writable: true, value: {} },
+
+        //to be invoked by subclass, so that ids can be ensured to not overlap
+        loaderContext: {
+            value: function() {
+                if (typeof this._knownURLs[this._path] === "undefined") {
+                    this._knownURLs[this._path] = Object.keys(this._knownURLs).length;
+                }
+                return "__" + this._knownURLs[this._path];
+            }
+        },
+
+        initWithJSON: {
+            value: function(json, baseURL) {
+                this.json = json;
+                this.baseURL = baseURL;
+                if (!baseURL) {
+                    console.log("WARNING: no base URL passed to Reader:initWithJSON");
+                }
+                return this;
+            }
+        }
+
+    });
+
+    if(root) {
+        root.glTFParser = glTFParser;
+    }
+
+    return glTFParser;
+
+}));

+ 247 - 0
examples/js/loaders/gltf/glTFAnimation.js

@@ -0,0 +1,247 @@
+/**
+ * @author Tony Parisi / http://www.tonyparisi.com/
+ */
+
+THREE.glTFAnimator = ( function () {
+
+	var animators = [];
+
+	return	{
+		add : function(animator)
+		{
+			animators.push(animator);
+		},
+
+		remove: function(animator)
+		{
+
+			var i = animators.indexOf(animator);
+
+			if ( i !== -1 ) {
+				animators.splice( i, 1 );
+			}
+		},
+
+		update : function()
+		{
+			for (i = 0; i < animators.length; i++)
+			{
+				animators[i].update();
+			}
+		},
+	};
+})();
+
+// Construction/initialization
+THREE.glTFAnimation = function(interps)
+{
+	this.running = false;
+	this.loop = false;
+	this.duration = 0;
+	this.startTime = 0;
+	this.interps = [];
+	
+	if (interps)
+	{
+		this.createInterpolators(interps);
+	}
+}
+
+THREE.glTFAnimation.prototype.createInterpolators = function(interps)
+{
+	var i, len = interps.length;
+	for (i = 0; i < len; i++)
+	{
+		var interp = new THREE.glTFInterpolator(interps[i]);
+		this.interps.push(interp);
+		this.duration = Math.max(this.duration, interp.duration);
+	}
+}
+
+// Start/stop
+THREE.glTFAnimation.prototype.play = function()
+{
+	if (this.running)
+		return;
+	
+	this.startTime = Date.now();
+	this.running = true;
+	THREE.glTFAnimator.add(this);
+}
+
+THREE.glTFAnimation.prototype.stop = function()
+{
+	this.running = false;
+	THREE.glTFAnimator.remove(this);
+}
+
+// Update - drive key frame evaluation
+THREE.glTFAnimation.prototype.update = function()
+{
+	if (!this.running)
+		return;
+	
+	var now = Date.now();
+	var deltat = (now - this.startTime) / 1000;
+	var t = deltat % this.duration;
+	var nCycles = Math.floor(deltat / this.duration);
+	
+	if (nCycles >= 1 && !this.loop)
+	{
+		this.running = false;
+		var i, len = this.interps.length;
+		for (i = 0; i < len; i++)
+		{
+			this.interps[i].interp(this.duration);
+		}
+		this.stop();
+		return;
+	}
+	else
+	{
+		var i, len = this.interps.length;
+		for (i = 0; i < len; i++)
+		{
+			this.interps[i].interp(t);
+		}
+	}
+}
+
+//Interpolator class
+//Construction/initialization
+THREE.glTFInterpolator = function(param) 
+{	    		
+	this.keys = param.keys;
+	this.values = param.values;
+	this.count = param.count;
+	this.type = param.type;
+	this.path = param.path;
+	this.isRot = false;
+	
+	var node = param.target;
+	node.matrixAutoUpdate = true;
+	this.targetNode = node;
+	
+	switch (param.path) {
+		case "translation" :
+			this.target = node.position;
+			break;
+		case "rotation" :
+			this.target = node.quaternion;
+			this.isRot = true;
+			break;
+		case "scale" :
+			this.target = node.scale;
+			break;
+	}
+	
+	this.duration = this.keys[this.count - 1];
+	
+	this.vec1 = new THREE.Vector3;
+	this.vec2 = new THREE.Vector3;
+	this.vec3 = new THREE.Vector3;
+	this.quat1 = new THREE.Quaternion;
+	this.quat2 = new THREE.Quaternion;
+	this.quat3 = new THREE.Quaternion;
+}
+
+//Interpolation and tweening methods
+THREE.glTFInterpolator.prototype.interp = function(t)
+{
+	var i, j;
+	if (t == this.keys[0])
+	{
+		if (this.isRot) {
+			this.quat3.set(this.values[0], this.values[1], this.values[2], this.values[3]);
+		}
+		else {
+			this.vec3.set(this.values[0], this.values[1], this.values[2]);
+		}
+	}
+	else if (t < this.keys[0])
+	{
+		if (this.isRot) {
+			this.quat1.set(this.values[0],
+					this.values[1],
+					this.values[2],
+					this.values[3]);
+			this.quat2.set(this.values[4],
+					this.values[5],
+					this.values[6],
+					this.values[7]);
+			THREE.Quaternion.slerp(this.quat1, this.quat2, this.quat3, t / this.keys[0]);
+		}
+		else {
+			this.vec3.set(this.values[0],
+					this.values[1],
+					this.values[2]);
+			this.vec2.set(this.values[3],
+					this.values[4],
+					this.values[5]);
+
+			this.vec3.lerp(this.vec2, t / this.keys[0]);
+		}
+	}
+	else if (t >= this.keys[this.count - 1])
+	{
+		if (this.isRot) {
+			this.quat3.set(this.values[(this.count - 1) * 4], 
+					this.values[(this.count - 1) * 4 + 1],
+					this.values[(this.count - 1) * 4 + 2],
+					this.values[(this.count - 1) * 4 + 3]);
+		}
+		else {
+			this.vec3.set(this.values[(this.count - 1) * 3], 
+					this.values[(this.count - 1) * 3 + 1],
+					this.values[(this.count - 1) * 3 + 2]);
+		}
+	}
+	else
+	{
+		for (i = 0; i < this.count - 1; i++)
+		{
+			var key1 = this.keys[i];
+			var key2 = this.keys[i + 1];
+	
+			if (t >= key1 && t <= key2)
+			{
+				if (this.isRot) {
+					this.quat1.set(this.values[i * 4],
+							this.values[i * 4 + 1],
+							this.values[i * 4 + 2],
+							this.values[i * 4 + 3]);
+					this.quat2.set(this.values[(i + 1) * 4],
+							this.values[(i + 1) * 4 + 1],
+							this.values[(i + 1) * 4 + 2],
+							this.values[(i + 1) * 4 + 3]);
+					THREE.Quaternion.slerp(this.quat1, this.quat2, this.quat3, (t - key1) / (key2 - key1));
+				}
+				else {
+					this.vec3.set(this.values[i * 3],
+							this.values[i * 3 + 1],
+							this.values[i * 3 + 2]);
+					this.vec2.set(this.values[(i + 1) * 3],
+							this.values[(i + 1) * 3 + 1],
+							this.values[(i + 1) * 3 + 2]);
+	
+					this.vec3.lerp(this.vec2, (t - key1) / (key2 - key1));
+				}
+			}
+		}
+	}
+	
+	if (this.target)
+	{
+		this.copyValue(this.target);
+	}
+}
+
+THREE.glTFInterpolator.prototype.copyValue = function(target) {
+	
+	if (this.isRot) {
+		target.copy(this.quat3);
+	}
+	else {
+		target.copy(this.vec3);
+	}		
+}

+ 1643 - 0
examples/js/loaders/gltf/glTFLoader.js

@@ -0,0 +1,1643 @@
+/**
+ * @author Tony Parisi / http://www.tonyparisi.com/
+ */
+
+
+THREE.glTFLoader = function (showStatus) {
+	this.useBufferGeometry = (THREE.glTFLoader.useBufferGeometry !== undefined ) ?
+			THREE.glTFLoader.useBufferGeometry : true;
+    this.meshesRequested = 0;
+    this.meshesLoaded = 0;
+    this.pendingMeshes = [];
+    this.animationsRequested = 0;
+    this.animationsLoaded = 0;
+    this.animations = [];
+    this.shadersRequested = 0;
+    this.shadersLoaded = 0;
+    this.shaders = {};
+    THREE.Loader.call( this, showStatus );
+}
+
+THREE.glTFLoader.prototype = new THREE.Loader();
+THREE.glTFLoader.prototype.constructor = THREE.glTFLoader;
+
+THREE.glTFLoader.prototype.load = function( url, callback ) {
+	
+	var theLoader = this;
+	// Utilities
+
+    function RgbArraytoHex(colorArray) {
+        if(!colorArray) return 0xFFFFFFFF;
+        var r = Math.floor(colorArray[0] * 255),
+            g = Math.floor(colorArray[1] * 255),
+            b = Math.floor(colorArray[2] * 255),
+            a = 255;
+
+        var color = (a << 24) + (r << 16) + (g << 8) + b;
+
+        return color;
+    }
+    
+    function convertAxisAngleToQuaternion(rotations, count)
+    {
+    	var q = new THREE.Quaternion;
+    	var axis = new THREE.Vector3;
+    	var euler = new THREE.Vector3;
+    	
+    	var i;
+    	for (i = 0; i < count; i++) {
+    		axis.set(rotations[i * 4], rotations[i * 4 + 1],
+    				rotations[i * 4 + 2]).normalize();
+    		var angle = rotations[i * 4 + 3];
+    		q.setFromAxisAngle(axis, angle);
+    		rotations[i * 4] = q.x;
+    		rotations[i * 4 + 1] = q.y;
+    		rotations[i * 4 + 2] = q.z;
+    		rotations[i * 4 + 3] = q.w;
+    	}
+    }
+
+    function componentsPerElementForGLType(glType) {
+        switch (glType) {
+            case WebGLRenderingContext.FLOAT :
+            case WebGLRenderingContext.UNSIGNED_BYTE :
+            case WebGLRenderingContext.UNSIGNED_SHORT :
+                return 1;
+            case WebGLRenderingContext.FLOAT_VEC2 :
+                return 2;
+            case WebGLRenderingContext.FLOAT_VEC3 :
+                return 3;
+            case WebGLRenderingContext.FLOAT_VEC4 :
+                return 4;
+            case WebGLRenderingContext.FLOAT_MAT4 :
+                return 16;
+            default:
+                return null;
+        }
+    }
+
+
+    function LoadTexture(src) {
+        if(!src) { return null; }
+        return THREE.ImageUtils.loadTexture(src);
+    }
+
+    // Geometry processing
+
+    var ClassicGeometry = function() {
+
+    	if (theLoader.useBufferGeometry) {
+    		this.geometry = new THREE.BufferGeometry;
+    	}
+    	else {
+    		this.geometry = new THREE.Geometry;
+    	}
+        this.totalAttributes = 0;
+        this.loadedAttributes = 0;
+        this.indicesLoaded = false;
+        this.finished = false;
+
+        this.onload = null;
+
+        this.uvs = null;
+        this.indexArray = null;
+    };
+
+    ClassicGeometry.prototype.constructor = ClassicGeometry;
+
+    ClassicGeometry.prototype.buildArrayGeometry = function() {
+
+    	// Build indexed mesh
+        var geometry = this.geometry;
+        var normals = geometry.normals;
+        var indexArray = this.indexArray;
+        var uvs = this.uvs;
+        var a, b, c;
+        var i, l;
+        var faceNormals = null;
+        var faceTexcoords = null;
+        
+        for(i = 0, l = this.indexArray.length; i < l; i += 3) {
+            a = indexArray[i];
+            b = indexArray[i+1];
+            c = indexArray[i+2];
+            if(normals) {
+                faceNormals = [normals[a], normals[b], normals[c]];
+            }
+            geometry.faces.push( new THREE.Face3( a, b, c, faceNormals, null, null ) );
+            if(uvs) {
+                geometry.faceVertexUvs[0].push([ uvs[a], uvs[b], uvs[c] ]);
+            }
+        }
+
+        // Allow Three.js to calculate some values for us
+        geometry.computeBoundingBox();
+        geometry.computeBoundingSphere();
+        geometry.computeCentroids();
+        geometry.computeFaceNormals();
+        if(!normals) {
+            geometry.computeVertexNormals();
+        }
+
+    }
+
+    ClassicGeometry.prototype.buildBufferGeometry = function() {
+        // Build indexed mesh
+        var geometry = this.geometry;
+        geometry.attributes.index = {
+        		itemSize: 1,
+        		array : this.indexArray
+        };
+
+		var offset = {
+				start: 0,
+				index: 0,
+				count: this.indexArray.length
+			};
+
+		geometry.offsets.push( offset );
+
+        geometry.computeBoundingSphere();
+    }
+    
+    ClassicGeometry.prototype.checkFinished = function() {
+        if(this.indexArray && this.loadedAttributes === this.totalAttributes) {
+        	
+        	if (theLoader.useBufferGeometry) {
+        		this.buildBufferGeometry();
+        	}
+        	else {
+        		this.buildArrayGeometry();
+        	}
+        	
+            this.finished = true;
+
+            if(this.onload) {
+                this.onload();
+            }
+        }
+    };
+
+    // Delegate for processing index buffers
+    var IndicesDelegate = function() {};
+
+    IndicesDelegate.prototype.handleError = function(errorCode, info) {
+        // FIXME: report error
+        console.log("ERROR(IndicesDelegate):"+errorCode+":"+info);
+    };
+
+    IndicesDelegate.prototype.convert = function(resource, ctx) {
+        return new Uint16Array(resource, 0, ctx.indices.count);
+    };
+
+    IndicesDelegate.prototype.resourceAvailable = function(glResource, ctx) {
+        var geometry = ctx.geometry;
+        geometry.indexArray = glResource;
+        geometry.checkFinished();
+        return true;
+    };
+
+    var indicesDelegate = new IndicesDelegate();
+
+    var IndicesContext = function(indices, geometry) {
+        this.indices = indices;
+        this.geometry = geometry;
+    };
+    
+    // Delegate for processing vertex attribute buffers
+    var VertexAttributeDelegate = function() {};
+
+    VertexAttributeDelegate.prototype.handleError = function(errorCode, info) {
+        // FIXME: report error
+        console.log("ERROR(VertexAttributeDelegate):"+errorCode+":"+info);
+    };
+
+    VertexAttributeDelegate.prototype.convert = function(resource, ctx) {
+        return resource;
+    };
+
+
+
+    VertexAttributeDelegate.prototype.arrayResourceAvailable = function(glResource, ctx) {
+        var geom = ctx.geometry;
+        var attribute = ctx.attribute;
+        var semantic = ctx.semantic;
+        var floatArray;
+        var i, l;
+        //FIXME: Float32 is assumed here, but should be checked.
+
+        if(semantic == "POSITION") {
+            // TODO: Should be easy to take strides into account here
+            floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type));
+            for(i = 0, l = floatArray.length; i < l; i += 3) {
+                geom.geometry.vertices.push( new THREE.Vector3( floatArray[i], floatArray[i+1], floatArray[i+2] ) );
+            }
+        } else if(semantic == "NORMAL") {
+            geom.geometry.normals = [];
+            floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type));
+            for(i = 0, l = floatArray.length; i < l; i += 3) {
+                geom.geometry.normals.push( new THREE.Vector3( floatArray[i], floatArray[i+1], floatArray[i+2] ) );
+            }
+        } else if ((semantic == "TEXCOORD_0") || (semantic == "TEXCOORD" )) {
+        	geom.uvs = [];
+            floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type));
+            for(i = 0, l = floatArray.length; i < l; i += 2) {
+                geom.uvs.push( new THREE.Vector2( floatArray[i], 1.0 - floatArray[i+1] ) );
+            }
+        }
+        else if (semantic == "WEIGHT") {
+        	nComponents = componentsPerElementForGLType(attribute.type);
+            floatArray = new Float32Array(glResource, 0, attribute.count * nComponents);
+            for(i = 0, l = floatArray.length; i < l; i += 4) {
+            	geom.geometry.skinWeights.push( new THREE.Vector4( floatArray[i], floatArray[i+1], floatArray[i+2], floatArray[i+3] ) );
+            }
+        }
+        else if (semantic == "JOINT") {
+        	nComponents = componentsPerElementForGLType(attribute.type);
+            floatArray = new Float32Array(glResource, 0, attribute.count * nComponents);
+            for(i = 0, l = floatArray.length; i < l; i += 4) {
+            	geom.geometry.skinIndices.push( new THREE.Vector4( floatArray[i], floatArray[i+1], floatArray[i+2], floatArray[i+3] ) );
+            }
+        }
+    }
+    
+    VertexAttributeDelegate.prototype.bufferResourceAvailable = function(glResource, ctx) {
+        var geom = ctx.geometry;
+        var attribute = ctx.attribute;
+        var semantic = ctx.semantic;
+        var floatArray;
+        var i, l;
+        var nComponents;
+        //FIXME: Float32 is assumed here, but should be checked.
+
+        if(semantic == "POSITION") {
+            // TODO: Should be easy to take strides into account here
+            floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type));
+            geom.geometry.attributes.position = {
+            		itemSize: 3,
+            		array : floatArray
+            };
+        } else if(semantic == "NORMAL") {
+            floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type));
+            geom.geometry.attributes.normal = {
+            		itemSize: 3,
+            		array : floatArray
+            };
+        } else if ((semantic == "TEXCOORD_0") || (semantic == "TEXCOORD" )) {
+        	
+        	nComponents = componentsPerElementForGLType(attribute.type);
+            floatArray = new Float32Array(glResource, 0, attribute.count * nComponents);
+            // N.B.: flip Y value... should we just set texture.flipY everywhere?
+            for (i = 0; i < floatArray.length / 2; i++) {
+            	floatArray[i*2+1] = 1.0 - floatArray[i*2+1];
+            }
+            geom.geometry.attributes.uv = {
+            		itemSize: nComponents,
+            		array : floatArray
+            };
+        }
+        else if (semantic == "WEIGHT") {
+        	nComponents = componentsPerElementForGLType(attribute.type);
+            floatArray = new Float32Array(glResource, 0, attribute.count * nComponents);
+            geom.geometry.attributes.skinWeight = {
+            		itemSize: nComponents,
+            		array : floatArray
+            };        	
+        }
+        else if (semantic == "JOINT") {
+        	nComponents = componentsPerElementForGLType(attribute.type);
+            floatArray = new Float32Array(glResource, 0, attribute.count * nComponents);
+            geom.geometry.attributes.skinIndex = {
+            		itemSize: nComponents,
+            		array : floatArray
+            };        	
+        }
+    }
+    
+    VertexAttributeDelegate.prototype.resourceAvailable = function(glResource, ctx) {
+    	if (theLoader.useBufferGeometry) {
+    		this.bufferResourceAvailable(glResource, ctx);
+    	}
+    	else {
+    		this.arrayResourceAvailable(glResource, ctx);
+    	}
+    	
+        var geom = ctx.geometry;
+        geom.loadedAttributes++;
+        geom.checkFinished();
+        return true;
+    };
+
+    var vertexAttributeDelegate = new VertexAttributeDelegate();
+
+    var VertexAttributeContext = function(attribute, semantic, geometry) {
+        this.attribute = attribute;
+        this.semantic = semantic;
+        this.geometry = geometry;
+    };
+
+    var Mesh = function() {
+        this.primitives = [];
+        this.materialsPending = [];
+        this.loadedGeometry = 0;
+        this.onCompleteCallbacks = [];
+    };
+
+    Mesh.prototype.addPrimitive = function(geometry, material) {
+        
+    	var self = this;
+        geometry.onload = function() {
+            self.loadedGeometry++;
+            self.checkComplete();
+        };
+        
+        this.primitives.push({
+            geometry: geometry,
+            material: material,
+            mesh: null
+        });
+    };
+
+    Mesh.prototype.onComplete = function(callback) {
+        this.onCompleteCallbacks.push(callback);
+        this.checkComplete();
+    };
+
+    Mesh.prototype.checkComplete = function() {
+        var self = this;
+        if(this.onCompleteCallbacks.length && this.primitives.length == this.loadedGeometry) {
+            this.onCompleteCallbacks.forEach(function(callback) {
+                callback(self);
+            });
+            this.onCompleteCallbacks = [];
+        }
+    };
+
+    Mesh.prototype.attachToNode = function(threeNode) {
+        // Assumes that the geometry is complete
+        this.primitives.forEach(function(primitive) {
+            /*if(!primitive.mesh) {
+                primitive.mesh = new THREE.Mesh(primitive.geometry, primitive.material);
+            }*/
+        	var material = primitive.material;
+        	if (!(material instanceof THREE.Material)) {
+        		material = theLoader.createShaderMaterial(material);
+        	}
+
+        	var threeMesh = new THREE.Mesh(primitive.geometry.geometry, material);
+            threeMesh.castShadow = true;
+            threeNode.add(threeMesh);
+        });
+    };
+
+    // Delayed-loaded material
+    var Material = function(params) {
+    	this.params = params;
+    };
+    
+    // Delegate for processing animation parameter buffers
+    var AnimationParameterDelegate = function() {};
+
+    AnimationParameterDelegate.prototype.handleError = function(errorCode, info) {
+        // FIXME: report error
+        console.log("ERROR(AnimationParameterDelegate):"+errorCode+":"+info);
+    };
+
+    AnimationParameterDelegate.prototype.convert = function(resource, ctx) {
+    	var parameter = ctx.parameter;
+
+    	var glResource = null;
+    	switch (parameter.type) {
+	        case WebGLRenderingContext.FLOAT :
+	        case WebGLRenderingContext.FLOAT_VEC2 :
+	        case WebGLRenderingContext.FLOAT_VEC3 :
+	        case WebGLRenderingContext.FLOAT_VEC4 :
+	        	glResource = new Float32Array(resource, 0, parameter.count * componentsPerElementForGLType(parameter.type));
+	        	break;
+	        default:
+	        	break;
+    	}
+    	
+        return glResource;
+    };
+
+    AnimationParameterDelegate.prototype.resourceAvailable = function(glResource, ctx) {
+    	var animation = ctx.animation;
+    	var parameter = ctx.parameter;
+    	parameter.data = glResource;
+    	animation.handleParameterLoaded(parameter);
+        return true;
+    };
+
+    var animationParameterDelegate = new AnimationParameterDelegate();
+
+    var AnimationParameterContext = function(parameter, animation) {
+        this.parameter = parameter;
+        this.animation = animation;
+    };
+
+    // Animations
+    var Animation = function() {
+
+    	// create Three.js keyframe here
+        this.totalParameters = 0;
+        this.loadedParameters = 0;
+        this.parameters = {};
+        this.finishedLoading = false;
+        this.onload = null;
+
+    };
+
+    Animation.prototype.constructor = Animation;
+
+    Animation.prototype.handleParameterLoaded = function(parameter) {
+    	this.parameters[parameter.name] = parameter;
+    	this.loadedParameters++;
+    	this.checkFinished();
+    };
+    
+    Animation.prototype.checkFinished = function() {
+        if(this.loadedParameters === this.totalParameters) {
+            // Build animation
+            this.finishedLoading = true;
+
+            if (this.onload) {
+                this.onload();
+            }
+        }
+    };
+    
+    // Delegate for processing inverse bind matrices buffer
+    var InverseBindMatricesDelegate = function() {};
+
+    InverseBindMatricesDelegate.prototype.handleError = function(errorCode, info) {
+        // FIXME: report error
+        console.log("ERROR(InverseBindMatricesDelegate):"+errorCode+":"+info);
+    };
+
+    InverseBindMatricesDelegate.prototype.convert = function(resource, ctx) {
+    	var parameter = ctx.parameter;
+
+    	var glResource = null;
+    	switch (parameter.type) {
+	        case WebGLRenderingContext.FLOAT_MAT4 :
+	        	glResource = new Float32Array(resource, 0, parameter.count * componentsPerElementForGLType(parameter.type));
+	        	break;
+	        default:
+	        	break;
+    	}
+    	
+        return glResource;
+    };
+
+    InverseBindMatricesDelegate.prototype.resourceAvailable = function(glResource, ctx) {
+    	var skin = ctx.skin;
+    	skin.inverseBindMatrices = glResource;
+        return true;
+    };
+
+    var inverseBindMatricesDelegate = new InverseBindMatricesDelegate();
+
+    var InverseBindMatricesContext = function(param, skin) {
+    	this.parameter = param;
+        this.skin = skin;
+    };
+
+    // Delegate for processing shaders from external files
+    var ShaderDelegate = function() {};
+
+    ShaderDelegate.prototype.handleError = function(errorCode, info) {
+        // FIXME: report error
+        console.log("ERROR(ShaderDelegate):"+errorCode+":"+info);
+    };
+
+    ShaderDelegate.prototype.convert = function(resource, ctx) {
+    	return resource; 
+    }
+    
+    ShaderDelegate.prototype.resourceAvailable = function(data, ctx) {
+        theLoader.shadersLoaded++;
+        theLoader.shaders[ctx.id] = data;
+        return true;
+    };
+
+    var shaderDelegate = new ShaderDelegate();
+
+    var ShaderContext = function(id, path) {
+    	this.id = id;
+    	this.path = path;
+    };
+    
+    // Resource management
+
+    var ResourceEntry = function(entryID, object, description) {
+        this.entryID = entryID;
+        this.object = object;
+        this.description = description;
+    };
+
+    var Resources = function() {
+        this._entries = {};
+    };
+
+    Resources.prototype.setEntry = function(entryID, object, description) {
+        if (!entryID) {
+            console.error("No EntryID provided, cannot store", description);
+            return;
+        }
+
+        if (this._entries[entryID]) {
+            console.warn("entry["+entryID+"] is being overwritten");
+        }
+    
+        this._entries[entryID] = new ResourceEntry(entryID, object, description );
+    };
+    
+    Resources.prototype.getEntry = function(entryID) {
+        return this._entries[entryID];
+    };
+
+    Resources.prototype.clearEntries = function() {
+        this._entries = {};
+    };
+
+    LoadDelegate = function() {
+    }
+    
+    LoadDelegate.prototype.loadCompleted = function(callback, obj) {
+    	callback.call(Window, obj);
+    }
+    
+    // Loader
+
+    var ThreeGLTFLoader = Object.create(glTFParser, {
+
+        load: {
+            enumerable: true,
+            value: function(userInfo, options) {
+                this.resources = new Resources();
+                this.cameras = [];
+                this.lights = [];
+                this.animations = [];
+                this.joints = {};
+                this.skeltons = {};
+                THREE.GLTFLoaderUtils.init();
+                glTFParser.load.call(this, userInfo, options);
+            }
+        },
+
+        cameras: {
+        	enumerable: true,
+        	writable: true,
+        	value : []
+        },
+
+        lights: {
+        	enumerable: true,
+        	writable: true,
+        	value : []
+        },
+        
+        animations: {
+        	enumerable: true,
+        	writable: true,
+        	value : []
+        },
+        
+        // Implement WebGLTFLoader handlers
+
+        handleBuffer: {
+            value: function(entryID, description, userInfo) {
+                this.resources.setEntry(entryID, null, description);
+                description.type = "ArrayBuffer";
+                return true;
+            }
+        },
+
+        handleBufferView: {
+            value: function(entryID, description, userInfo) {
+                this.resources.setEntry(entryID, null, description);
+
+                var buffer =  this.resources.getEntry(description.buffer);
+                description.type = "ArrayBufferView";
+
+                var bufferViewEntry = this.resources.getEntry(entryID);
+                bufferViewEntry.buffer = buffer;
+                return true;
+            }
+        },
+
+        handleShader: {
+            value: function(entryID, description, userInfo) {
+        		this.resources.setEntry(entryID, null, description);
+        		var shaderRequest = {
+        				id : entryID,
+        				path : description.path,
+        		};
+
+                var shaderContext = new ShaderContext(entryID, description.path);
+
+                theLoader.shadersRequested++;
+        		THREE.GLTFLoaderUtils.getFile(shaderRequest, shaderDelegate, shaderContext);
+        		
+                return true;
+            }
+        },
+
+        handleProgram: {
+            value: function(entryID, description, userInfo) {
+        		this.resources.setEntry(entryID, null, description);
+                return true;
+            }
+        },
+
+        handleTechnique: {
+            value: function(entryID, description, userInfo) {
+        		this.resources.setEntry(entryID, null, description);
+                return true;
+            }
+        },
+
+        createShaderMaterial : {
+        	value: function(material) {
+        		
+        		var fragmentShader = theLoader.shaders[material.params.fragmentShader];
+        		if (!fragmentShader) {
+                    console.log("ERROR: Missing fragment shader definition:", material.params.fragmentShader);
+            		return new THREE.MeshPhongMaterial;
+        		}
+        		
+        		var vertexShader = theLoader.shaders[material.params.vertexShader];
+        		if (!fragmentShader) {
+                    console.log("ERROR: Missing vertex shader definition:", material.params.vertexShader);
+            		return new THREE.MeshPhongMaterial;
+        		}
+        		
+        		var uniforms = {};
+        		var shaderMaterial = new THREE.ShaderMaterial( {
+
+        			fragmentShader: fragmentShader,
+        			vertexShader: vertexShader,
+        			uniforms: uniforms,
+
+        		} );
+
+        		return new THREE.MeshPhongMaterial(material.params);
+        	}
+        },
+        
+        createShaderParams : {
+        	value: function(materialId, values, params, instanceProgram) {
+				var program = this.resources.getEntry(instanceProgram.program);
+				
+				if (program) {
+					params.fragmentShader = program.description.fragmentShader;
+					params.vertexShader = program.description.vertexShader;
+					params.attributes = instanceProgram.attributes;
+					params.uniforms = instanceProgram.uniforms;
+				}
+        	}
+        },
+        
+        threeJSMaterialType : {
+            value: function(materialId, technique, values, params) {
+        	
+        		var materialType = THREE.MeshPhongMaterial;
+        		var defaultPass = null;
+        		if (technique && technique.description && technique.description.passes)
+        			defaultPass = technique.description.passes.defaultPass;
+        		
+        		if (defaultPass) {
+        			if (defaultPass.details && defaultPass.details.commonProfile) {
+	            		var profile = technique.description.passes.defaultPass.details.commonProfile;
+	            		if (profile)
+	            		{
+		            		switch (profile.lightingModel)
+		            		{
+		            			case 'Blinn' :
+		            			case 'Phong' :
+		            				materialType = THREE.MeshPhongMaterial;
+		            				break;
+	
+		            			case 'Lambert' :
+		            				materialType = THREE.MeshLambertMaterial;
+		            				break;
+		            				
+		            			default :
+		            				materialType = THREE.MeshBasicMaterial;
+		            				break;
+		            		}
+		            		
+		            		if (profile.extras && profile.extras.doubleSided)
+		            		{
+		            			params.side = THREE.DoubleSide;
+		            		}
+	            		}
+        			}
+        			else if (defaultPass.instanceProgram) {
+        				
+        				var instanceProgram = defaultPass.instanceProgram;
+
+    					this.createShaderParams(materialId, values, params, instanceProgram);
+    					
+    					var loadshaders = true;
+    					
+    					if (loadshaders) {
+    						materialType = Material;
+    					}
+        			}
+        		}
+        		
+                var texturePath = null;
+                var textureParams = null;
+                var diffuse = values.diffuse;
+                if (diffuse)
+                {
+                	var texture = diffuse;
+                    if (texture) {
+                        var textureEntry = this.resources.getEntry(texture);
+                        if (textureEntry) {
+                        	{
+                        		var imageEntry = this.resources.getEntry(textureEntry.description.source);
+                        		if (imageEntry) {
+                        			texturePath = imageEntry.description.path;
+                        		}
+                        		
+                        		var samplerEntry = this.resources.getEntry(textureEntry.description.sampler);
+                        		if (samplerEntry) {
+                        			textureParams = samplerEntry.description;
+                        		}
+                        	}
+                        }
+                    }                    
+                }
+
+                var texture = LoadTexture(texturePath);
+                if (texture && textureParams) {
+                	
+                	if (textureParams.wrapS == WebGLRenderingContext.REPEAT)
+                		texture.wrapS = THREE.RepeatWrapping;
+
+                	if (textureParams.wrapT == WebGLRenderingContext.REPEAT)
+                		texture.wrapT = THREE.RepeatWrapping;
+                	
+                	if (textureParams.magFilter == WebGLRenderingContext.LINEAR)
+                		texture.magFilter = THREE.LinearFilter;
+
+//                	if (textureParams.minFilter == "LINEAR")
+//               		texture.minFilter = THREE.LinearFilter;
+                	
+                    params.map = texture;
+                }
+
+                var envMapPath = null;
+                var envMapParams = null;
+                var reflective = values.reflective;
+                if (reflective)
+                {
+                	var texture = reflective;
+                    if (texture) {
+                        var textureEntry = this.resources.getEntry(texture);
+                        if (textureEntry) {
+                        	{
+                        		var imageEntry = this.resources.getEntry(textureEntry.description.source);
+                        		if (imageEntry) {
+                        			envMapPath = imageEntry.description.path;
+                        		}
+                        		
+                        		var samplerEntry = this.resources.getEntry(textureEntry.description.sampler);
+                        		if (samplerEntry) {
+                        			envMapParams = samplerEntry.description;
+                        		}
+                        	}
+                        }
+                    }                    
+                }
+
+                var texture = LoadTexture(envMapPath);
+                if (texture && envMapParams) {
+                	
+                	if (envMapParams.wrapS == WebGLRenderingContext.REPEAT)
+                		texture.wrapS = THREE.RepeatWrapping;
+
+                	if (envMapParams.wrapT == WebGLRenderingContext.REPEAT)
+                		texture.wrapT = THREE.RepeatWrapping;
+                	
+                	if (envMapParams.magFilter == WebGLRenderingContext.LINEAR)
+                		texture.magFilter = THREE.LinearFilter;
+
+//                	if (envMapParams.minFilter == WebGLRenderingContext.LINEAR)
+//               		texture.minFilter = THREE.LinearFilter;
+                	
+                    params.envMap = texture;
+                }
+                
+                var shininess = values.shininesss || values.shininess; // N.B.: typo in converter!
+                if (shininess)
+                {
+                	shininess = shininess;
+                }
+                
+                var diffuseColor = !texturePath ? diffuse : null;
+                var opacity = 1.0;
+                if (values.hasOwnProperty("transparency"))
+                {
+                	var USE_A_ONE = true; // for now, hack because file format isn't telling us
+                	opacity =  USE_A_ONE ? values.transparency : (1.0 - values.transparency);
+                }
+                
+                // if (diffuseColor) diffuseColor = [0, 1, 0];
+                                    
+                params.color = RgbArraytoHex(diffuseColor);
+                params.opacity = opacity;
+                params.transparent = opacity < 1.0;
+                // hack hack hack
+                if (texturePath && texturePath.toLowerCase().indexOf(".png") != -1)
+                	params.transparent = true;
+                
+                if (!(shininess === undefined))
+                {
+                	params.shininess = shininess;
+                }
+                
+                if (!(values.ambient === undefined) && !(typeof(values.ambient) == 'string'))
+                {
+                	params.ambient = RgbArraytoHex(values.ambient);
+                }
+
+                if (!(values.emission === undefined))
+                {
+                	params.emissive = RgbArraytoHex(values.emission);
+                }
+                
+                if (!(values.specular === undefined))
+                {
+                	params.specular = RgbArraytoHex(values.specular);
+                }
+
+        		return materialType;
+        		
+        	}
+        },
+        
+        handleMaterial: {
+            value: function(entryID, description, userInfo) {
+                //this should be rewritten using the meta datas that actually create the shader.
+                //here we will infer what needs to be pass to Three.js by looking inside the technique parameters.
+                var technique = this.resources.getEntry(description.instanceTechnique.technique);
+                var materialParams = {};
+                var values = description.instanceTechnique.values;
+                
+                var materialType = this.threeJSMaterialType(entryID, technique, values, materialParams);
+
+                var material = new materialType(materialParams);
+                
+                this.resources.setEntry(entryID, material, description);
+
+                return true;
+            }
+        },
+
+        handleMesh: {
+            value: function(entryID, description, userInfo) {
+                var mesh = new Mesh();
+                this.resources.setEntry(entryID, mesh, description);
+                var primitivesDescription = description.primitives;
+                if (!primitivesDescription) {
+                    //FIXME: not implemented in delegate
+                    console.log("MISSING_PRIMITIVES for mesh:"+ entryID);
+                    return false;
+                }
+
+                for (var i = 0 ; i < primitivesDescription.length ; i++) {
+                    var primitiveDescription = primitivesDescription[i];
+                    
+                    if (primitiveDescription.primitive === WebGLRenderingContext.TRIANGLES) {
+
+                        var geometry = new ClassicGeometry();
+                        var materialEntry = this.resources.getEntry(primitiveDescription.material);
+
+                        mesh.addPrimitive(geometry, materialEntry.object);
+
+                        var indices = this.resources.getEntry(primitiveDescription.indices);
+                        var bufferEntry = this.resources.getEntry(indices.description.bufferView);
+                        var indicesObject = {
+                        		bufferView : bufferEntry,
+                        		byteOffset : indices.description.byteOffset,
+                        		count : indices.description.count,
+                        		id : indices.entryID,
+                        		type : indices.description.type
+                        };
+                        
+                        var indicesContext = new IndicesContext(indicesObject, geometry);
+                        var alreadyProcessedIndices = THREE.GLTFLoaderUtils.getBuffer(indicesObject, indicesDelegate, indicesContext);
+                        /*if(alreadyProcessedIndices) {
+                            indicesDelegate.resourceAvailable(alreadyProcessedIndices, indicesContext);
+                        }*/
+
+                        // Load Vertex Attributes
+                        var allAttributes = Object.keys(primitiveDescription.attributes);
+                        allAttributes.forEach( function(semantic) {
+                            geometry.totalAttributes++;
+
+                            var attribute;
+                            var attributeID = primitiveDescription.attributes[semantic];
+                            var attributeEntry = this.resources.getEntry(attributeID);
+                            if (!attributeEntry) {
+                                //let's just use an anonymous object for the attribute
+                                attribute = description.attributes[attributeID];
+                                attribute.id = attributeID;
+                                this.resources.setEntry(attributeID, attribute, attribute);
+            
+                                var bufferEntry = this.resources.getEntry(attribute.bufferView);
+                                attributeEntry = this.resources.getEntry(attributeID);
+
+                            } else {
+                                attribute = attributeEntry.object;
+                                attribute.id = attributeID;
+                                var bufferEntry = this.resources.getEntry(attribute.bufferView);
+                            }
+
+                            var attributeObject = {
+                            		bufferView : bufferEntry,
+                            		byteOffset : attribute.byteOffset,
+                            		byteStride : attribute.byteStride,
+                            		count : attribute.count,
+                            		max : attribute.max,
+                            		min : attribute.min,
+                            		type : attribute.type,
+                            		id : attributeID             
+                            };
+                            
+                            var attribContext = new VertexAttributeContext(attributeObject, semantic, geometry);
+
+                            var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(attributeObject, vertexAttributeDelegate, attribContext);
+                            /*if(alreadyProcessedAttribute) {
+                                vertexAttributeDelegate.resourceAvailable(alreadyProcessedAttribute, attribContext);
+                            }*/
+                        }, this);
+                    }
+                }
+                return true;
+            }
+        },
+
+        handleCamera: {
+            value: function(entryID, description, userInfo) {
+                var camera;
+                if (description.type == "perspective")
+                {
+            		var znear = description.perspective.znear;
+            		var zfar = description.perspective.zfar;
+                	var yfov = description.perspective.yfov;                	
+                	var xfov = description.perspective.xfov;
+            		var aspect_ratio = description.perspective.aspect_ratio;
+
+            		if (!aspect_ratio)
+            			aspect_ratio = 1; 
+            		
+                	if (yfov === undefined)
+                	{
+                		if (xfov)
+                		{
+                			// According to COLLADA spec...
+                			// aspect_ratio = xfov / yfov
+                			yfov = xfov / aspect_ratio;
+                		}
+                		
+                	}
+                	
+                	if (yfov)
+                	{
+                		camera = new THREE.PerspectiveCamera(yfov, aspect_ratio, znear, zfar);
+                	}
+                }
+                else
+                {
+    				camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, znear, zfar );
+                }
+                
+                if (camera)
+                {
+                	this.resources.setEntry(entryID, camera, description);
+                }
+                
+                return true;
+            }
+        },
+
+        handleLight: {
+            value: function(entryID, description, userInfo) {
+
+        		var light = null;
+        		var type = description.type;
+        		if (type && description[type])
+        		{
+        			var lparams = description[type];
+            		var color = RgbArraytoHex(lparams.color);
+            		
+            		switch (type) {
+            			case "directional" :
+            				light = new THREE.DirectionalLight(color);
+    						light.position.set(0, 0, 1);
+            			break;
+            			
+            			case "point" :
+            				light = new THREE.PointLight(color);
+            			break;
+            			
+            			case "spot " :
+            				light = new THREE.SpotLight(color);
+    						light.position.set(0, 0, 1);
+            			break;
+            			
+            			case "ambient" : 
+            				light = new THREE.AmbientLight(color);
+            			break;
+            		}
+        		}
+
+        		if (light)
+        		{
+                	this.resources.setEntry(entryID, light, description);	
+        		}
+        		
+        		return true;
+            }
+        },
+
+        addPendingMesh: {
+            value: function(mesh, threeNode) {
+        		theLoader.pendingMeshes.push({
+        			mesh: mesh,
+        			node: threeNode
+        		});
+        	}
+        },
+        
+        handleNode: {
+            value: function(entryID, description, userInfo) {
+
+        		var threeNode = null;
+	            if (description.jointId) {
+	                threeNode = new THREE.Bone();
+	                threeNode.jointId = description.jointId;
+	                this.joints[description.jointId] = entryID;
+	            }
+	            else {
+	                threeNode = new THREE.Object3D();
+	            }
+	            
+                threeNode.name = description.name;
+                
+                this.resources.setEntry(entryID, threeNode, description);
+
+                var m = description.matrix;
+                if(m) {
+                    threeNode.matrixAutoUpdate = false;
+                    threeNode.applyMatrix(new THREE.Matrix4(
+                        m[0],  m[4],  m[8],  m[12],
+                        m[1],  m[5],  m[9],  m[13],
+                        m[2],  m[6],  m[10], m[14],
+                        m[3],  m[7],  m[11], m[15]
+                    ));                    
+                }
+                else {
+                	var t = description.translation;
+                	var r = description.rotation;
+                	var s = description.scale;
+                	
+                	var position = t ? new THREE.Vector3(t[0], t[1], t[2]) :
+                		new THREE.Vector3;
+                	if (r) {
+                		convertAxisAngleToQuaternion(r, 1);
+                	}
+                	var rotation = r ? new THREE.Quaternion(r[0], r[1], r[2], r[3]) :
+                		new THREE.Quaternion;
+                	var scale = s ? new THREE.Vector3(s[0], s[1], s[2]) :
+                		new THREE.Vector3;
+                	
+                	var matrix = new THREE.Matrix4;
+                	matrix.compose(position, rotation, scale);
+                    threeNode.matrixAutoUpdate = false;
+                    threeNode.applyMatrix(matrix);                    
+                }
+
+                var self = this;
+                
+                // Iterate through all node meshes and attach the appropriate objects
+                //FIXME: decision needs to be made between these 2 ways, probably meshes will be discarded.
+                var meshEntry;
+                if (description.mesh) {
+                    meshEntry = this.resources.getEntry(description.mesh);
+                    theLoader.meshesRequested++;
+                    meshEntry.object.onComplete(function(mesh) {
+                    	self.addPendingMesh(mesh, threeNode);
+                        theLoader.meshesLoaded++;
+                        theLoader.checkComplete();
+                    });
+                }
+
+                if (description.meshes) {
+                    description.meshes.forEach( function(meshID) {
+                        meshEntry = this.resources.getEntry(meshID);
+                        theLoader.meshesRequested++;
+                        meshEntry.object.onComplete(function(mesh) {
+                        	self.addPendingMesh(mesh, threeNode);
+                            theLoader.meshesLoaded++;
+                            theLoader.checkComplete();
+                        });
+                    }, this);
+                }
+
+                if (description.instanceSkin) {
+
+                	var skinEntry =  this.resources.getEntry(description.instanceSkin.skin);
+                	
+                	if (skinEntry) {
+
+                		var skin = skinEntry.object;
+                		description.instanceSkin.skin = skin;
+                        threeNode.instanceSkin = description.instanceSkin;
+
+                		var sources = description.instanceSkin.sources;
+                		skin.meshes = [];
+                        sources.forEach( function(meshID) {
+                            meshEntry = this.resources.getEntry(meshID);
+                            theLoader.meshesRequested++;
+                            meshEntry.object.onComplete(function(mesh) {
+                            	
+                            	skin.meshes.push(mesh);
+                                theLoader.meshesLoaded++;
+                                theLoader.checkComplete();
+                            });
+                        }, this);
+                        
+                	}
+                }
+                                
+                if (description.camera) {
+                    var cameraEntry = this.resources.getEntry(description.camera);
+                    if (cameraEntry) {
+                    	threeNode.add(cameraEntry.object);
+                    	this.cameras.push(cameraEntry.object);
+                    }
+                }
+
+                if (description.light) {
+                    var lightEntry = this.resources.getEntry(description.light);
+                    if (lightEntry) {
+                    	threeNode.add(lightEntry.object);
+                    	this.lights.push(lightEntry.object);
+                    }
+                }
+                
+                return true;
+            }
+        },
+        
+        buildNodeHirerachy: {
+            value: function(nodeEntryId, parentThreeNode) {
+                var nodeEntry = this.resources.getEntry(nodeEntryId);
+                var threeNode = nodeEntry.object;
+                parentThreeNode.add(threeNode);
+
+                var children = nodeEntry.description.children;
+                if (children) {
+                    children.forEach( function(childID) {
+                        this.buildNodeHirerachy(childID, threeNode);
+                    }, this);
+                }
+
+                return threeNode;
+            }
+        },
+
+        buildSkin: {
+            value: function(node) {
+        	
+                var skin = node.instanceSkin.skin;
+                if (skin) {
+                    node.instanceSkin.skeletons.forEach(function(skeleton) {
+                        var nodeEntry = this.resources.getEntry(skeleton);
+                        if (nodeEntry) {
+
+                        	var rootSkeleton = nodeEntry.object;
+
+                            var dobones = true;
+
+                            var i, len = skin.meshes.length;
+                            for (i = 0; i < len; i++) {
+                            	var mesh = skin.meshes[i];
+                            	var threeMesh = null;
+                                mesh.primitives.forEach(function(primitive) {
+
+                                	var material = primitive.material;
+                                	if (!(material instanceof THREE.Material)) {
+                                		material = this.createShaderMaterial(material);
+                                	}
+
+                                	threeMesh = new THREE.SkinnedMesh(primitive.geometry.geometry, material, false);
+                            		threeMesh.add(rootSkeleton);
+                                	
+                                    var geometry = primitive.geometry.geometry;
+                                    var j;
+                                    if (geometry.vertices) {
+	                            		for ( j = 0; j < geometry.vertices.length; j ++ ) {
+	                            			geometry.vertices[j].applyMatrix4( skin.bindShapeMatrix );	
+	                            		}
+                                    }
+                                    else if (geometry.attributes.position) {
+                                    	var a = geometry.attributes.position.array;
+                                    	var v = new THREE.Vector3;
+	                            		for ( j = 0; j < a.length / 3; j++ ) {
+	                            			v.set(a[j * 3], a[j * 3 + 1], a[j * 3 + 2]);
+	                            			v.applyMatrix4( skin.bindShapeMatrix );
+	                            			a[j * 3] = v.x;
+	                            			a[j * 3 + 1] = v.y;
+	                            			a[j * 3 + 2] = v.z;
+	                            		}
+                                    }
+
+                                    if (threeMesh && dobones) {
+
+                                    	material.skinning = true;
+        	                            
+                                    	threeMesh.boneInverses = [];
+        	                            var jointsIds = skin.jointsIds;
+        	                            var joints = [];
+        	                            var i, len = jointsIds.length;
+        	                            for (i = 0; i < len; i++) {
+        	                            	var jointId = jointsIds[i];
+        	                                var nodeForJoint = this.joints[jointId];
+        	                                var joint = this.resources.getEntry(nodeForJoint).object;
+        	                                if (joint) {
+        	                                	
+        	                                	joint.skin = threeMesh;
+        	                                    joints.push(joint);
+        	                                    threeMesh.bones.push(joint);
+        	                                    
+        	                                    var m = skin.inverseBindMatrices;
+        	                    	            var mat = new THREE.Matrix4(
+        	                                            m[i * 16 + 0],  m[i * 16 + 4],  m[i * 16 + 8],  m[i * 16 + 12],
+        	                                            m[i * 16 + 1],  m[i * 16 + 5],  m[i * 16 + 9],  m[i * 16 + 13],
+        	                                            m[i * 16 + 2],  m[i * 16 + 6],  m[i * 16 + 10], m[i * 16 + 14],
+        	                                            m[i * 16 + 3],  m[i * 16 + 7],  m[i * 16 + 11], m[i * 16 + 15]
+        	                                        );
+        	                                    threeMesh.boneInverses.push(mat);
+        	                                    threeMesh.pose();
+        	                                    
+        	                                } else {
+        	                                    console.log("WARNING: jointId:"+jointId+" cannot be found in skeleton:"+skeleton);
+        	                                }
+        	                            }
+                                    }
+                                    
+                                    if (threeMesh) {
+                                    	threeMesh.castShadow = true;
+                                    	node.add(threeMesh);
+                                    }
+                                    
+                                }, this);                            	
+                            }
+                            
+                        }
+
+                    
+                    }, this);
+                    
+                }
+            }
+        },
+         
+        buildSkins: {
+            value: function(node) {
+
+        		if (node.instanceSkin)
+        			this.buildSkin(node);
+        		
+                var children = node.children;
+                if (children) {
+                    children.forEach( function(child) {
+                        this.buildSkins(child);
+                    }, this);
+                }
+            }
+        },
+        
+        createMeshAnimations : {
+        	value : function(root) {
+        			this.buildSkins(root);
+        		}
+        },        
+
+        handleScene: {
+            value: function(entryID, description, userInfo) {
+
+                if (!description.nodes) {
+                    console.log("ERROR: invalid file required nodes property is missing from scene");
+                    return false;
+                }
+
+                description.nodes.forEach( function(nodeUID) {
+                    this.buildNodeHirerachy(nodeUID, userInfo.rootObj);
+                }, this);
+
+                if (this.delegate) {
+                    this.delegate.loadCompleted(userInfo.callback, userInfo.rootObj);
+                }
+
+                return true;
+            }
+        },
+
+        handleImage: {
+            value: function(entryID, description, userInfo) {
+                this.resources.setEntry(entryID, null, description);
+                return true;
+            }
+        },
+        
+        addNodeAnimationChannel : {
+        	value : function(name, channel, interp) {
+        		if (!this.nodeAnimationChannels)
+        			this.nodeAnimationChannels = {};
+        		
+        		if (!this.nodeAnimationChannels[name]) {
+        			this.nodeAnimationChannels[name] = [];
+        		}
+        		
+        		this.nodeAnimationChannels[name].push(interp);
+        	},
+        },
+        
+        createAnimations : {
+        	value : function() {
+        		for (var name in this.nodeAnimationChannels) {
+        			var nodeAnimationChannels = this.nodeAnimationChannels[name];
+        			var i, len = nodeAnimationChannels.length;
+        			//console.log(" animation channels for node " + name);
+        			//for (i = 0; i < len; i++) {
+        			//	console.log(nodeAnimationChannels[i]);
+        			//}
+	            	var anim = new THREE.glTFAnimation(nodeAnimationChannels);
+	            	anim.name = "animation_" + name;
+	            	this.animations.push(anim);        				
+        		}
+        	}
+        },
+        
+        buildAnimation: {
+        	value : function(animation) {
+        	
+        		var interps = [];
+	            var i, len = animation.channels.length;
+	            for (i = 0; i < len; i++) {
+	            	
+	            	var channel = animation.channels[i];
+	            	var sampler = animation.samplers[channel.sampler];
+	            	if (sampler) {
+	
+	            		var input = animation.parameters[sampler.input];
+	            		if (input && input.data) {
+	            			
+	            			var output = animation.parameters[sampler.output];
+	            			if (output && output.data) {
+	            				
+	            				var target = channel.target;
+	            				var node = this.resources.getEntry(target.id);
+	            				if (node) {
+
+	            					var path = target.path;
+		            				
+		            				if (path == "rotation")
+		            				{
+		            					convertAxisAngleToQuaternion(output.data, output.count);
+		            				}
+		            				
+			            			var interp = {
+			            					keys : input.data,
+			            					values : output.data,
+			            					count : input.count,
+			            					target : node.object,
+			            					path : path,
+			            					type : sampler.interpolation
+			            			};
+			            			
+			            			this.addNodeAnimationChannel(target.id, channel, interp);
+			            			interps.push(interp);
+	            				}
+	            			}
+	            		}
+	            	}
+	            }	            
+        	}
+        },
+        
+        handleAnimation: {
+            value: function(entryID, description, userInfo) {
+        	
+        		var self = this;
+	            theLoader.animationsRequested++;
+	            var animation = new Animation();
+                animation.name = entryID;
+	            animation.onload = function() {
+	            	// self.buildAnimation(animation);
+	            	theLoader.animationsLoaded++;
+	            	theLoader.animations.push(animation);
+                    theLoader.checkComplete();
+	            };	            
+	            
+	            animation.channels = description.channels;
+	            animation.samplers = description.samplers;
+	            this.resources.setEntry(entryID, animation, description);
+	            var parameters = description.parameters;
+	            if (!parameters) {
+	                //FIXME: not implemented in delegate
+	                console.log("MISSING_PARAMETERS for animation:"+ entryID);
+	                return false;
+	            }
+	
+                // Load parameter buffers
+                var params = Object.keys(parameters);
+                params.forEach( function(param) {
+
+                	animation.totalParameters++;
+                    var parameter = parameters[param];
+                    var accessor = this.resources.getEntry(parameter);
+                    if (!accessor)
+                    	debugger;
+                    accessor = accessor.object;
+                    var bufferView = this.resources.getEntry(accessor.bufferView);
+                    var paramObject = {
+                    		bufferView : bufferView,
+                    		byteOffset : accessor.byteOffset,
+                    		count : accessor.count,
+                    		type : accessor.type,
+                    		id : accessor.bufferView,
+                    		name : param             
+                    };
+                    
+                    var paramContext = new AnimationParameterContext(paramObject, animation);
+
+                    var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(paramObject, animationParameterDelegate, paramContext);
+                    /*if(alreadyProcessedAttribute) {
+                        vertexAttributeDelegate.resourceAvailable(alreadyProcessedAttribute, attribContext);
+                    }*/
+                }, this);
+
+	            return true;
+            }
+        },
+
+        handleAccessor: {
+            value: function(entryID, description, userInfo) {
+	    		// Save attribute entry
+	    		this.resources.setEntry(entryID, description, description);
+                return true;
+            }
+        },
+
+        handleSkin: {
+            value: function(entryID, description, userInfo) {
+	    		// Save skin entry
+        	
+        		var skin = {
+        		};
+        		
+                var m = description.bindShapeMatrix;
+	            skin.bindShapeMatrix = new THREE.Matrix4(
+                        m[0],  m[4],  m[8],  m[12],
+                        m[1],  m[5],  m[9],  m[13],
+                        m[2],  m[6],  m[10], m[14],
+                        m[3],  m[7],  m[11], m[15]
+                    );
+	            
+	            skin.jointsIds = description.joints;
+	            var inverseBindMatricesDescription = description.inverseBindMatrices;
+	            skin.inverseBindMatricesDescription = inverseBindMatricesDescription;
+	            skin.inverseBindMatricesDescription.id = entryID + "_inverseBindMatrices";
+
+                var bufferEntry = this.resources.getEntry(inverseBindMatricesDescription.bufferView);
+
+                var paramObject = {
+                		bufferView : bufferEntry,
+                		byteOffset : inverseBindMatricesDescription.byteOffset,
+                		count : inverseBindMatricesDescription.count,
+                		type : inverseBindMatricesDescription.type,
+                		id : inverseBindMatricesDescription.bufferView,
+                		name : skin.inverseBindMatricesDescription.id             
+                };
+                
+	            var context = new InverseBindMatricesContext(paramObject, skin);
+
+                var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(paramObject, inverseBindMatricesDelegate, context);
+
+	            var bufferView = this.resources.getEntry(skin.inverseBindMatricesDescription.bufferView);
+	            skin.inverseBindMatricesDescription.bufferView = 
+	            	bufferView.object;
+	    		this.resources.setEntry(entryID, skin, description);
+                return true;
+            }
+        },
+
+        handleSampler: {
+            value: function(entryID, description, userInfo) {
+	    		// Save attribute entry
+	    		this.resources.setEntry(entryID, description, description);
+                return true;
+            }
+        },
+
+        handleTexture: {
+            value: function(entryID, description, userInfo) {
+	    		// Save attribute entry
+	    		this.resources.setEntry(entryID, null, description);
+                return true;
+            }
+        },
+        
+        handleError: {
+            value: function(msg) {
+
+        		throw new Error(msg);
+        		return true;
+        	}
+        },
+        
+        _delegate: {
+            value: new LoadDelegate,
+            writable: true
+        },
+
+        delegate: {
+            enumerable: true,
+            get: function() {
+                return this._delegate;
+            },
+            set: function(value) {
+                this._delegate = value;
+            }
+        }
+    });
+
+
+    // Loader
+
+    var Context = function(rootObj, callback) {
+        this.rootObj = rootObj;
+        this.callback = callback;
+    };
+
+    var rootObj = new THREE.Object3D();
+
+    var self = this;
+    
+    var loader = Object.create(ThreeGLTFLoader);
+    loader.initWithPath(url);
+    loader.load(new Context(rootObj, 
+    					function(obj) {
+    					}), 
+    			null);
+
+    this.loader = loader;
+    this.callback = callback;
+    this.rootObj = rootObj;
+    return rootObj;
+}
+
+THREE.glTFLoader.prototype.callLoadedCallback = function() {
+	var result = {
+			scene : this.rootObj,
+			cameras : this.loader.cameras,
+			animations : this.loader.animations,
+	};
+	
+	this.callback(result);
+}
+
+THREE.glTFLoader.prototype.checkComplete = function() {
+	if (this.meshesLoaded == this.meshesRequested 
+			&& this.shadersLoaded == this.shadersRequested
+			&& this.animationsLoaded == this.animationsRequested)
+	{
+		
+		for (var i = 0; i < this.pendingMeshes.length; i++) {
+			var pending = this.pendingMeshes[i];
+			pending.mesh.attachToNode(pending.node);
+		}
+		
+		for (var i = 0; i < this.animationsLoaded; i++) {
+			var animation = this.animations[i];
+			this.loader.buildAnimation(animation);
+		}
+
+		this.loader.createAnimations();
+		this.loader.createMeshAnimations(this.rootObj);
+        
+		this.callLoadedCallback();
+	}
+}
+
+
+

+ 223 - 0
examples/js/loaders/gltf/glTFLoaderUtils.js

@@ -0,0 +1,223 @@
+/**
+ * @author Tony Parisi / http://www.tonyparisi.com/
+ */
+
+THREE.GLTFLoaderUtils = Object.create(Object, {
+
+    // errors
+    MISSING_DESCRIPTION: { value: "MISSING_DESCRIPTION" },
+    INVALID_PATH: { value: "INVALID_PATH" },
+    INVALID_TYPE: { value: "INVALID_TYPE" },
+    XMLHTTPREQUEST_STATUS_ERROR: { value: "XMLHTTPREQUEST_STATUS_ERROR" },
+    NOT_FOUND: { value: "NOT_FOUND" },
+    // misc constants
+    ARRAY_BUFFER: { value: "ArrayBuffer" },
+
+    _streams : { value:{}, writable: true },
+
+    _streamsStatus: { value: {}, writable: true },
+    
+    _resources: { value: {}, writable: true },
+
+    _resourcesStatus: { value: {}, writable: true },
+
+    // initialization
+    init: {
+        value: function() {
+	        this._streams = {};
+	        this._streamsStatus = {};
+            this._resources = {};
+            this._resourcesStatus = {};
+        }
+    },
+
+    //manage entries
+    _containsResource: {
+        enumerable: false,
+        value: function(resourceID) {
+            return this._resources[resourceID] ? true : false;
+        }
+    },
+
+    _storeResource: {
+        enumerable: false,
+        value: function(resourceID, resource) {
+            if (!resourceID) {
+                console.log("ERROR: entry does not contain id, cannot store");
+                return;
+            }
+
+            if (this._containsResource[resourceID]) {
+                console.log("WARNING: resource:"+resourceID+" is already stored, overriding");
+            }
+
+           this._resources[resourceID] = resource;
+        }
+    },
+
+    _getResource: {
+        enumerable: false,
+        value: function(resourceID) {
+            return this._resources[resourceID];
+        }
+    },
+
+    _loadStream: {
+        value: function(path, type, delegate) {
+            var self = this;
+
+            if (!type) {
+                delegate.handleError(THREE.GLTFLoaderUtils.INVALID_TYPE, null);
+                return;
+            }
+
+            if (!path) {
+                delegate.handleError(THREE.GLTFLoaderUtils.INVALID_PATH);
+                return;
+            }
+
+            var xhr = new XMLHttpRequest();
+            xhr.open('GET', path, true);
+            xhr.responseType = (type === this.ARRAY_BUFFER) ? "arraybuffer" : "text";
+
+            //if this is not specified, 1 "big blob" scenes fails to load.
+            xhr.setRequestHeader("If-Modified-Since", "Sat, 01 Jan 1970 00:00:00 GMT");
+            xhr.onload = function(e) {
+                if ((xhr.status == 200) || (xhr.status == 206)) {
+
+                    delegate.streamAvailable(path, xhr.response);
+
+                } else {
+                    delegate.handleError(THREE.GLTFLoaderUtils.XMLHTTPREQUEST_STATUS_ERROR, this.status);
+                }
+            };
+            xhr.send(null);
+        }
+    },
+
+    send: { value: 0, writable: true },
+    requested: { value: 0, writable: true },
+
+    _handleRequest: {
+        value: function(request) {
+            var resourceStatus = this._resourcesStatus[request.id];
+            if (resourceStatus)
+            {
+            	this._resourcesStatus[request.id]++;
+            }
+            else
+            {
+            	this._resourcesStatus[request.id] = 1;
+            }
+            
+            var streamStatus = this._streamsStatus[request.path];
+            if (streamStatus && streamStatus.status === "loading" )
+            {
+            	streamStatus.requests.push(request);
+                return;
+            }
+            
+            this._streamsStatus[request.path] = { status : "loading", requests : [request] };
+    		
+            var self = this;
+            var processResourceDelegate = {};
+
+            processResourceDelegate.streamAvailable = function(path, res_) {
+            	var streamStatus = self._streamsStatus[path];
+            	var requests = streamStatus.requests;
+                requests.forEach( function(req_) {
+                    var subArray = res_.slice(req_.range[0], req_.range[1]);
+                    var convertedResource = req_.delegate.convert(subArray, req_.ctx);
+                    self._storeResource(req_.id, convertedResource);
+                    req_.delegate.resourceAvailable(convertedResource, req_.ctx);
+                    --self._resourcesStatus[req_.id];
+
+                }, this);
+            	
+                delete self._streamsStatus[path];
+
+            };
+
+            processResourceDelegate.handleError = function(errorCode, info) {
+                request.delegate.handleError(errorCode, info);
+            }
+
+            this._loadStream(request.path, request.type, processResourceDelegate);
+        }
+    },
+
+
+    _elementSizeForGLType: {
+        value: function(glType) {
+            switch (glType) {
+                case WebGLRenderingContext.FLOAT :
+                    return Float32Array.BYTES_PER_ELEMENT;
+                case WebGLRenderingContext.UNSIGNED_BYTE :
+                    return Uint8Array.BYTES_PER_ELEMENT;
+                case WebGLRenderingContext.UNSIGNED_SHORT :
+                    return Uint16Array.BYTES_PER_ELEMENT;
+                case WebGLRenderingContext.FLOAT_VEC2 :
+                    return Float32Array.BYTES_PER_ELEMENT * 2;
+                case WebGLRenderingContext.FLOAT_VEC3 :
+                    return Float32Array.BYTES_PER_ELEMENT * 3;
+                case WebGLRenderingContext.FLOAT_VEC4 :
+                    return Float32Array.BYTES_PER_ELEMENT * 4;
+                case WebGLRenderingContext.FLOAT_MAT3 :
+                    return Float32Array.BYTES_PER_ELEMENT * 9;
+                case WebGLRenderingContext.FLOAT_MAT4 :
+                    return Float32Array.BYTES_PER_ELEMENT * 16;
+                default:
+                    return null;
+            }
+        }
+    },
+
+    _handleWrappedBufferViewResourceLoading: {
+        value: function(wrappedBufferView, delegate, ctx) {
+            var bufferView = wrappedBufferView.bufferView;
+            var buffer = bufferView.buffer;
+            var byteOffset = wrappedBufferView.byteOffset + bufferView.description.byteOffset;
+            var range = [byteOffset , (this._elementSizeForGLType(wrappedBufferView.type) * wrappedBufferView.count) + byteOffset];
+
+            this._handleRequest({   "id" : wrappedBufferView.id,
+                                    "range" : range,
+                                    "type" : buffer.description.type,
+                                    "path" : buffer.description.path,
+                                    "delegate" : delegate,
+                                    "ctx" : ctx }, null);
+        }
+    },
+    
+    getBuffer: {
+    	
+            value: function(wrappedBufferView, delegate, ctx) {
+
+            var savedBuffer = this._getResource(wrappedBufferView.id);
+            if (savedBuffer) {
+                return savedBuffer;
+            } else {
+                this._handleWrappedBufferViewResourceLoading(wrappedBufferView, delegate, ctx);
+            }
+
+            return null;
+        }
+    },
+
+    getFile: {
+    	
+        value: function(request, delegate, ctx) {
+
+    		request.delegate = delegate;
+    		request.ctx = ctx;
+
+            this._handleRequest({   "id" : request.id,
+                "path" : request.path,
+                "range" : [0],
+                "type" : "text",
+                "delegate" : delegate,
+                "ctx" : ctx }, null);
+    	
+            return null;
+	    }
+	},    
+});

BIN
examples/models/gltf/SuperMurdoch/SuperMurdoch.bin


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 2576 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch.dae


+ 14102 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch.json

@@ -0,0 +1,14102 @@
+{
+    "accessors": {
+        "attribute_100": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 3168,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1000": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363288,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_1018": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363336,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                114.036,
+                418.633,
+                59.1894
+            ],
+            "min": [
+                114.036,
+                368.715,
+                38.3036
+            ],
+            "type": 35665
+        },
+        "attribute_1020": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363408,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1038": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363480,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                116.095,
+                425.567,
+                78.0785
+            ],
+            "min": [
+                114.036,
+                295.596,
+                63.7716
+            ],
+            "type": 35665
+        },
+        "attribute_1040": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363780,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1058": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 364080,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                97.4956,
+                424.016,
+                88.6204
+            ],
+            "min": [
+                22.3983,
+                271.597,
+                88.6204
+            ],
+            "type": 35665
+        },
+        "attribute_1060": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 364128,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_1084": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 364176,
+            "byteStride": 12,
+            "count": 80,
+            "max": [
+                84.1272,
+                113.249,
+                11.4213
+            ],
+            "min": [
+                -0,
+                13.2862,
+                5.28346
+            ],
+            "type": 35665
+        },
+        "attribute_1086": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 365136,
+            "byteStride": 12,
+            "count": 80,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1104": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 366096,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                155.059,
+                110.057,
+                108.24
+            ],
+            "min": [
+                74.9688,
+                16.4785,
+                -3.05278
+            ],
+            "type": 35665
+        },
+        "attribute_1106": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 368520,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.998214,
+                0.991927,
+                0.999922
+            ],
+            "min": [
+                -0.999918,
+                -0.991927,
+                -0.999207
+            ],
+            "type": 35665
+        },
+        "attribute_1124": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 370944,
+            "byteStride": 12,
+            "count": 7,
+            "max": [
+                152.611,
+                91.3843,
+                99.9819
+            ],
+            "min": [
+                141.872,
+                35.1511,
+                84.3742
+            ],
+            "type": 35665
+        },
+        "attribute_1126": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371028,
+            "byteStride": 12,
+            "count": 7,
+            "max": [
+                0.82381,
+                -0,
+                -0.566866
+            ],
+            "min": [
+                0.82381,
+                -0,
+                -0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_1144": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371112,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                138.666,
+                104.241,
+                79.716
+            ],
+            "min": [
+                84.8631,
+                22.2944,
+                1.52523
+            ],
+            "type": 35665
+        },
+        "attribute_1146": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371160,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.82381,
+                0,
+                -0.566866
+            ],
+            "min": [
+                0.82381,
+                0,
+                -0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_1164": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371208,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                140.934,
+                89.9439,
+                97.0579
+            ],
+            "min": [
+                112.637,
+                36.5915,
+                55.9354
+            ],
+            "type": 35665
+        },
+        "attribute_1166": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371256,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "min": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_118": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 3936,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                130.824,
+                26.8217,
+                46.5503
+            ],
+            "min": [
+                48.8649,
+                26.8217,
+                23.5876
+            ],
+            "type": 35665
+        },
+        "attribute_1184": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371304,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                107.787,
+                96.3254,
+                48.8865
+            ],
+            "min": [
+                84.341,
+                30.21,
+                14.813
+            ],
+            "type": 35665
+        },
+        "attribute_1186": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371352,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "min": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_120": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 3984,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1204": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 371400,
+            "byteStride": 12,
+            "count": 328,
+            "max": [
+                119.894,
+                440.781,
+                88.6204
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1206": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 375336,
+            "byteStride": 12,
+            "count": 328,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1224": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 379272,
+            "byteStride": 12,
+            "count": 259,
+            "max": [
+                119.894,
+                263.946,
+                88.6204
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1226": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 382380,
+            "byteStride": 12,
+            "count": 259,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_1244": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385488,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                93.8884,
+                155.242,
+                83.9995
+            ],
+            "min": [
+                70.7752,
+                155.242,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_1246": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385536,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1264": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385584,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                93.8884,
+                155.242,
+                9.53144
+            ],
+            "min": [
+                70.7752,
+                0,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_1266": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385632,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_1284": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385680,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                49.1186,
+                155.242,
+                83.9995
+            ],
+            "min": [
+                26.0055,
+                155.242,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_1286": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385728,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1304": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385776,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                49.1186,
+                155.242,
+                9.53144
+            ],
+            "min": [
+                26.0055,
+                0,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_1306": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385824,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_1324": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385872,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                114.036,
+                418.633,
+                59.1894
+            ],
+            "min": [
+                114.036,
+                368.715,
+                38.3036
+            ],
+            "type": 35665
+        },
+        "attribute_1326": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 385944,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1344": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386016,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                116.095,
+                425.567,
+                78.0785
+            ],
+            "min": [
+                114.036,
+                295.596,
+                63.7716
+            ],
+            "type": 35665
+        },
+        "attribute_1346": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386316,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1364": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386616,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                97.4956,
+                424.016,
+                88.6204
+            ],
+            "min": [
+                22.3983,
+                271.597,
+                88.6204
+            ],
+            "type": 35665
+        },
+        "attribute_1366": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386664,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_138": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 4032,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                155.941,
+                56.8819,
+                53.5872
+            ],
+            "min": [
+                23.7484,
+                26.8217,
+                16.5506
+            ],
+            "type": 35665
+        },
+        "attribute_1390": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386712,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                9.7184,
+                82.709,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1392": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386760,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_140": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 4224,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0.767387,
+                0.641184,
+                0.973677
+            ],
+            "min": [
+                -0.767387,
+                0.227933,
+                -0.973677
+            ],
+            "type": 35665
+        },
+        "attribute_1410": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386808,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                29.0178,
+                126.512,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                82.709,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1412": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386856,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "min": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1430": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386904,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                9.7184,
+                82.709,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1432": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 386952,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1450": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 387000,
+            "byteStride": 12,
+            "count": 45,
+            "max": [
+                31.2402,
+                245.505,
+                99.2805
+            ],
+            "min": [
+                7.49606,
+                19.2331,
+                7.77774
+            ],
+            "type": 35665
+        },
+        "attribute_1452": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 387540,
+            "byteStride": 12,
+            "count": 45,
+            "max": [
+                1,
+                0.39943,
+                0.720153
+            ],
+            "min": [
+                0.663506,
+                -0.403196,
+                -0.720153
+            ],
+            "type": 35665
+        },
+        "attribute_1470": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388080,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                29.0178,
+                126.512,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1472": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388224,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1490": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388368,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                29.0178,
+                126.512,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1492": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388512,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1510": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388656,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                29.0178,
+                126.512,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                82.709,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1512": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388704,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "min": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1530": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388752,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                9.7184,
+                82.709,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1532": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388800,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1550": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388848,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                29.0178,
+                126.512,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                82.709,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1552": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388896,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "min": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1570": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388944,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                9.7184,
+                82.709,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1572": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 388992,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_158": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 4416,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                179.689,
+                56.8819,
+                70.1378
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1590": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 389040,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                31.2402,
+                245.505,
+                99.2805
+            ],
+            "min": [
+                7.49606,
+                19.2331,
+                7.77774
+            ],
+            "type": 35665
+        },
+        "attribute_1592": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 389616,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0.39943,
+                0.720153
+            ],
+            "min": [
+                0.663506,
+                -0.403196,
+                -0.720153
+            ],
+            "type": 35665
+        },
+        "attribute_160": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 5184,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1610": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390192,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                29.0178,
+                126.512,
+                48.0173
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                36.1652
+            ],
+            "type": 35665
+        },
+        "attribute_1612": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390336,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1630": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390480,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                29.0178,
+                126.512,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                24.277,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1632": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390624,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1650": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390768,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                29.0178,
+                126.512,
+                70.893
+            ],
+            "min": [
+                9.7184,
+                82.709,
+                59.0409
+            ],
+            "type": 35665
+        },
+        "attribute_1652": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 390816,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "min": [
+                0.915114,
+                -0.403196,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1670": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 8064,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                628.113,
+                883.238,
+                212.797
+            ],
+            "min": [
+                626.215,
+                876.434,
+                204.273
+            ],
+            "type": 35665
+        },
+        "attribute_1672": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 8112,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_1690": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 8160,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                600.884,
+                1409.32,
+                163.036
+            ],
+            "min": [
+                436.213,
+                1196.67,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_1692": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 9024,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1710": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 9888,
+            "byteStride": 12,
+            "count": 304,
+            "max": [
+                769.697,
+                873.919,
+                201.991
+            ],
+            "min": [
+                627.43,
+                822.213,
+                199.882
+            ],
+            "type": 35665
+        },
+        "attribute_1712": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 13536,
+            "byteStride": 12,
+            "count": 304,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.987568
+            ],
+            "type": 35665
+        },
+        "attribute_1730": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 17184,
+            "byteStride": 12,
+            "count": 6678,
+            "max": [
+                1120.03,
+                1812.29,
+                296.689
+            ],
+            "min": [
+                277.093,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1732": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 97320,
+            "byteStride": 12,
+            "count": 6678,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1750": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 177456,
+            "byteStride": 12,
+            "count": 66,
+            "max": [
+                618.085,
+                654.282,
+                107.472
+            ],
+            "min": [
+                508.418,
+                505.491,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_1752": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 178248,
+            "byteStride": 12,
+            "count": 66,
+            "max": [
+                0.998636,
+                0.0522107,
+                1
+            ],
+            "min": [
+                -1,
+                -0.0522107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1770": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 179040,
+            "byteStride": 12,
+            "count": 68,
+            "max": [
+                605.346,
+                1763.96,
+                159.768
+            ],
+            "min": [
+                421.615,
+                1737.14,
+                19.4928
+            ],
+            "type": 35665
+        },
+        "attribute_1772": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 179856,
+            "byteStride": 12,
+            "count": 68,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_178": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 5952,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                130.824,
+                26.8217,
+                46.5503
+            ],
+            "min": [
+                48.8649,
+                26.8217,
+                23.5876
+            ],
+            "type": 35665
+        },
+        "attribute_1790": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 180672,
+            "byteStride": 12,
+            "count": 189,
+            "max": [
+                618.085,
+                661.693,
+                107.472
+            ],
+            "min": [
+                510.919,
+                527.251,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_1792": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 182940,
+            "byteStride": 12,
+            "count": 189,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.798082,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_18": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 0,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                155.941,
+                56.8819,
+                53.5872
+            ],
+            "min": [
+                23.7484,
+                26.8217,
+                16.5506
+            ],
+            "type": 35665
+        },
+        "attribute_180": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 6000,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1810": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 185208,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                699.915,
+                1152.9,
+                316.839
+            ],
+            "min": [
+                697.212,
+                1055.27,
+                244.003
+            ],
+            "type": 35665
+        },
+        "attribute_1812": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 187584,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                1,
+                0.902941,
+                1
+            ],
+            "min": [
+                -1,
+                -0.822243,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1830": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 189960,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                305.791,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                282.158,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_1832": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 190008,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1850": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 190056,
+            "byteStride": 12,
+            "count": 68,
+            "max": [
+                975.513,
+                1763.96,
+                159.768
+            ],
+            "min": [
+                791.781,
+                1737.14,
+                19.4928
+            ],
+            "type": 35665
+        },
+        "attribute_1852": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 190872,
+            "byteStride": 12,
+            "count": 68,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1870": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 191688,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                931.418,
+                1207.91,
+                170.281
+            ],
+            "min": [
+                922.344,
+                1142.62,
+                168.797
+            ],
+            "type": 35665
+        },
+        "attribute_1872": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 191928,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1905": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 192168,
+            "byteStride": 12,
+            "count": 158,
+            "max": [
+                277.093,
+                1777.33,
+                134.554
+            ],
+            "min": [
+                0,
+                1391.72,
+                105.862
+            ],
+            "type": 35665
+        },
+        "attribute_1907": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 194064,
+            "byteStride": 12,
+            "count": 158,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.816473,
+                -0.998241
+            ],
+            "type": 35665
+        },
+        "attribute_1925": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 195960,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                268.08,
+                1750.88,
+                133.435
+            ],
+            "min": [
+                35.5641,
+                1685.1,
+                106.398
+            ],
+            "type": 35665
+        },
+        "attribute_1927": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 196104,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                -0,
+                1,
+                1
+            ],
+            "min": [
+                -0.0564245,
+                0,
+                -0.993631
+            ],
+            "type": 35665
+        },
+        "attribute_1945": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 196248,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                373.315,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                349.682,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_1947": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 196296,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -1,
+                0
+            ],
+            "min": [
+                -0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_198": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 6048,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                155.941,
+                56.8819,
+                53.5872
+            ],
+            "min": [
+                23.7484,
+                26.8217,
+                16.5506
+            ],
+            "type": 35665
+        },
+        "attribute_1980": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 196344,
+            "byteStride": 12,
+            "count": 158,
+            "max": [
+                1397.13,
+                1777.33,
+                134.554
+            ],
+            "min": [
+                1120.03,
+                1391.72,
+                105.862
+            ],
+            "type": 35665
+        },
+        "attribute_1982": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 198240,
+            "byteStride": 12,
+            "count": 158,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.816473,
+                -0.998241
+            ],
+            "type": 35665
+        },
+        "attribute_20": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 192,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0.767387,
+                0.641184,
+                0.973677
+            ],
+            "min": [
+                -0.767387,
+                0.227933,
+                -0.973677
+            ],
+            "type": 35665
+        },
+        "attribute_200": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 6240,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0.767387,
+                0.641184,
+                0.973677
+            ],
+            "min": [
+                -0.767387,
+                0.227933,
+                -0.973677
+            ],
+            "type": 35665
+        },
+        "attribute_2000": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 200136,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                571.387,
+                1207.91,
+                170.281
+            ],
+            "min": [
+                562.313,
+                1142.62,
+                168.797
+            ],
+            "type": 35665
+        },
+        "attribute_2002": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 200376,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_2020": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 200616,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                373.315,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                349.682,
+                1149.65,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2022": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 200784,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2040": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 200952,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                899.959,
+                657.191,
+                117.407
+            ],
+            "min": [
+                497.169,
+                505.491,
+                7.74088
+            ],
+            "type": 35665
+        },
+        "attribute_2042": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 203208,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                1,
+                -0,
+                1
+            ],
+            "min": [
+                -1,
+                -0.798082,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2060": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 205464,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                407.077,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                383.444,
+                1117.53,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2062": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 205524,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2080": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 205584,
+            "byteStride": 12,
+            "count": 50,
+            "max": [
+                671.469,
+                1129.4,
+                179.034
+            ],
+            "min": [
+                615.386,
+                653.326,
+                131.914
+            ],
+            "type": 35665
+        },
+        "attribute_2082": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 206184,
+            "byteStride": 12,
+            "count": 50,
+            "max": [
+                0,
+                -0,
+                0.925901
+            ],
+            "min": [
+                -0.983932,
+                -0.377765,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_2100": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 206784,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                407.077,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                383.444,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2102": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 206832,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2120": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 206880,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1114.97,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1091.34,
+                1215.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2122": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207048,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2140": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207216,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                305.791,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                282.158,
+                1215.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2142": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207384,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2160": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207552,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1081.21,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1057.57,
+                1182.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2162": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207720,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_218": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 6432,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                179.689,
+                56.8819,
+                70.1378
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2180": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207888,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                305.791,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                282.158,
+                1215.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2182": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207936,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_220": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 7200,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2200": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 207984,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1047.45,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1023.81,
+                1149.65,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2202": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208152,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2220": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208320,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                407.077,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                383.444,
+                1117.53,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2222": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208476,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2240": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208632,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                960.915,
+                1139.52,
+                166.052
+            ],
+            "min": [
+                796.243,
+                1122.14,
+                163.036
+            ],
+            "type": 35665
+        },
+        "attribute_2242": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208728,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                0,
+                0,
+                0.783358
+            ],
+            "min": [
+                0,
+                -0.621571,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2260": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208824,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                1361.56,
+                1750.88,
+                133.435
+            ],
+            "min": [
+                1129.05,
+                1685.1,
+                106.398
+            ],
+            "type": 35665
+        },
+        "attribute_2262": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 208968,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.0564245,
+                1,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                -0.993631
+            ],
+            "type": 35665
+        },
+        "attribute_2280": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209112,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1081.21,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1057.57,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2282": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209160,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -1,
+                0
+            ],
+            "min": [
+                -0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2300": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209208,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                867.62,
+                818.629,
+                116.019
+            ],
+            "min": [
+                808.763,
+                682.534,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2302": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209304,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                0,
+                -0,
+                1
+            ],
+            "min": [
+                0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2320": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209400,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1013.68,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                990.05,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2322": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209448,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -1,
+                0
+            ],
+            "min": [
+                -0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2340": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209496,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                862.274,
+                1192.11,
+                116.019
+            ],
+            "min": [
+                802.042,
+                1067.45,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2342": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209568,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2360": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 209640,
+            "byteStride": 12,
+            "count": 75,
+            "max": [
+                960.915,
+                1405.6,
+                163.036
+            ],
+            "min": [
+                796.243,
+                1062.89,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2362": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 210540,
+            "byteStride": 12,
+            "count": 75,
+            "max": [
+                1,
+                -0,
+                1
+            ],
+            "min": [
+                -1,
+                -0,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_238": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 7968,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                130.824,
+                26.8217,
+                46.5503
+            ],
+            "min": [
+                48.8649,
+                26.8217,
+                23.5876
+            ],
+            "type": 35665
+        },
+        "attribute_2380": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211440,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                894.884,
+                1076.35,
+                116.019
+            ],
+            "min": [
+                862.274,
+                938.934,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2382": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211548,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                -0,
+                -0,
+                1
+            ],
+            "min": [
+                -0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_240": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 8016,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2400": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211656,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                728.786,
+                350.536,
+                1.23535
+            ],
+            "min": [
+                702.955,
+                126.455,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_2402": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211704,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2420": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211752,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                758.466,
+                377.288,
+                1.23535
+            ],
+            "min": [
+                742.698,
+                362.281,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_2422": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211800,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2440": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 211848,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                834.814,
+                1207.91,
+                170.281
+            ],
+            "min": [
+                825.74,
+                1142.62,
+                168.797
+            ],
+            "type": 35665
+        },
+        "attribute_2442": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 212088,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_2460": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 212328,
+            "byteStride": 12,
+            "count": 189,
+            "max": [
+                886.208,
+                661.693,
+                107.472
+            ],
+            "min": [
+                779.042,
+                527.251,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_2462": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 214596,
+            "byteStride": 12,
+            "count": 189,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.798082,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2480": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 216864,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                969.703,
+                1104.05,
+                10.4646
+            ],
+            "min": [
+                883.726,
+                1066.94,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_2482": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 216912,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2500": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 216960,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                873.432,
+                1104.05,
+                10.4646
+            ],
+            "min": [
+                787.455,
+                1066.94,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_2502": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217008,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2520": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217056,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                955.392,
+                1051.09,
+                10.4646
+            ],
+            "min": [
+                797.313,
+                950.736,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_2522": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217164,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                -0,
+                0,
+                -1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2540": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217272,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                497.565,
+                648.511,
+                104.754
+            ],
+            "min": [
+                497.169,
+                602.996,
+                20.394
+            ],
+            "type": 35665
+        },
+        "attribute_2542": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217512,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                -0,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2560": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217752,
+            "byteStride": 12,
+            "count": 19,
+            "max": [
+                961.109,
+                1054.33,
+                10.4646
+            ],
+            "min": [
+                793.191,
+                947.494,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_2562": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 217980,
+            "byteStride": 12,
+            "count": 19,
+            "max": [
+                -0,
+                0,
+                -1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_258": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 280968,
+            "byteStride": 12,
+            "count": 334,
+            "max": [
+                168.92,
+                85.1591,
+                7.67717
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2580": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 218208,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                1013.68,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                990.05,
+                1117.53,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2582": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 218268,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_260": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 284976,
+            "byteStride": 12,
+            "count": 334,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.982692,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2600": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 218328,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                732.224,
+                1305,
+                190.758
+            ],
+            "min": [
+                664.903,
+                1217.91,
+                190.758
+            ],
+            "type": 35665
+        },
+        "attribute_2602": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 218400,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2620": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 218472,
+            "byteStride": 12,
+            "count": 50,
+            "max": [
+                781.741,
+                1129.4,
+                179.034
+            ],
+            "min": [
+                725.66,
+                653.326,
+                131.914
+            ],
+            "type": 35665
+        },
+        "attribute_2622": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 219072,
+            "byteStride": 12,
+            "count": 50,
+            "max": [
+                0.983932,
+                0,
+                0.925901
+            ],
+            "min": [
+                -0,
+                -0.377765,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_2640": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 219672,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                894.884,
+                1151.61,
+                116.019
+            ],
+            "min": [
+                889.048,
+                1095.42,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2642": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 219720,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -0,
+                1
+            ],
+            "min": [
+                0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2660": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 219768,
+            "byteStride": 12,
+            "count": 28,
+            "max": [
+                975.513,
+                1737.14,
+                159.768
+            ],
+            "min": [
+                791.781,
+                1737.14,
+                19.4928
+            ],
+            "type": 35665
+        },
+        "attribute_2662": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 220104,
+            "byteStride": 12,
+            "count": 28,
+            "max": [
+                0,
+                1,
+                -0
+            ],
+            "min": [
+                0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_2680": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 220440,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                960.915,
+                1409.32,
+                163.036
+            ],
+            "min": [
+                796.243,
+                1196.67,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2682": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 221304,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2700": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222168,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1047.45,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1023.81,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2702": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222216,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2720": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222264,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                1013.68,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                990.05,
+                1117.53,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_2722": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222420,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2740": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222576,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                864.936,
+                816.058,
+                116.019
+            ],
+            "min": [
+                811.447,
+                685.105,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2742": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222624,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -0,
+                1
+            ],
+            "min": [
+                0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2760": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222672,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                1091.45,
+                1719.04,
+                126.569
+            ],
+            "min": [
+                1013.57,
+                1719.04,
+                76.7926
+            ],
+            "type": 35665
+        },
+        "attribute_2762": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222732,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                0,
+                1,
+                -0
+            ],
+            "min": [
+                0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_278": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 288984,
+            "byteStride": 12,
+            "count": 15,
+            "max": [
+                159.318,
+                76.4099,
+                0
+            ],
+            "min": [
+                5.53284,
+                9.82736,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2780": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222792,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                796.243,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                794.792,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_2782": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 222984,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0,
+                0.621571,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_280": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 289164,
+            "byteStride": 12,
+            "count": 15,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2800": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223176,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                497.565,
+                651.581,
+                108.399
+            ],
+            "min": [
+                497.169,
+                599.926,
+                16.7492
+            ],
+            "type": 35665
+        },
+        "attribute_2802": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223464,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                0,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2820": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223752,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                794.792,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                794.792,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_2822": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223800,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                1,
+                -0,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_2840": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223848,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                960.915,
+                1196.67,
+                163.036
+            ],
+            "min": [
+                796.243,
+                1139.52,
+                163.036
+            ],
+            "type": 35665
+        },
+        "attribute_2842": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223896,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -0,
+                -1
+            ],
+            "min": [
+                -0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2860": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223944,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                868.11,
+                1151.61,
+                116.019
+            ],
+            "min": [
+                862.274,
+                1095.42,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_2862": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 223992,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_2880": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 224040,
+            "byteStride": 12,
+            "count": 56,
+            "max": [
+                766.89,
+                869.697,
+                212.023
+            ],
+            "min": [
+                630.237,
+                834.833,
+                203.585
+            ],
+            "type": 35665
+        },
+        "attribute_2882": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 224712,
+            "byteStride": 12,
+            "count": 56,
+            "max": [
+                0.984813,
+                -0.0737163,
+                0.904896
+            ],
+            "min": [
+                -0.984813,
+                -0.424362,
+                0.15719
+            ],
+            "type": 35665
+        },
+        "attribute_2900": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 225384,
+            "byteStride": 12,
+            "count": 11,
+            "max": [
+                406.008,
+                1739.99,
+                143.498
+            ],
+            "min": [
+                283.227,
+                1739.99,
+                59.8634
+            ],
+            "type": 35665
+        },
+        "attribute_2902": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 225516,
+            "byteStride": 12,
+            "count": 11,
+            "max": [
+                -0,
+                1,
+                -0
+            ],
+            "min": [
+                -0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_2920": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 225648,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                629.86,
+                884.13,
+                213.732
+            ],
+            "min": [
+                625.617,
+                875.623,
+                203.164
+            ],
+            "type": 35665
+        },
+        "attribute_2922": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 225864,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.208894,
+                0.998159,
+                0.977834
+            ],
+            "min": [
+                -0.208894,
+                -0.998159,
+                -0.977834
+            ],
+            "type": 35665
+        },
+        "attribute_2940": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226080,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                624.087,
+                1812.29,
+                231.164
+            ],
+            "min": [
+                624.087,
+                1537.87,
+                66.7596
+            ],
+            "type": 35665
+        },
+        "attribute_2942": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226284,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                -1,
+                0,
+                0
+            ],
+            "min": [
+                -1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2960": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226488,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                397.244,
+                1739.99,
+                135.313
+            ],
+            "min": [
+                291.991,
+                1719.04,
+                68.0481
+            ],
+            "type": 35665
+        },
+        "attribute_2962": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226632,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.837237,
+                0.606805,
+                0.622951
+            ],
+            "min": [
+                -0.585506,
+                0.546839,
+                -0.622951
+            ],
+            "type": 35665
+        },
+        "attribute_298": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 289344,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                157.439,
+                38.4633,
+                0
+            ],
+            "min": [
+                157.409,
+                38.4515,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2980": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226776,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                383.561,
+                1719.04,
+                126.569
+            ],
+            "min": [
+                305.674,
+                1719.04,
+                76.7926
+            ],
+            "type": 35665
+        },
+        "attribute_2982": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226836,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                -0,
+                1,
+                -0
+            ],
+            "min": [
+                -0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_300": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 289380,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3000": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226896,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                585.681,
+                816.058,
+                116.019
+            ],
+            "min": [
+                532.191,
+                685.105,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_3002": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226944,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -0,
+                1
+            ],
+            "min": [
+                -0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3020": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 226992,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                406.008,
+                1750.88,
+                143.498
+            ],
+            "min": [
+                283.227,
+                1739.99,
+                59.8634
+            ],
+            "type": 35665
+        },
+        "attribute_3022": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 227280,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                1,
+                -0,
+                1
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3040": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 227568,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                629.86,
+                884.13,
+                213.573
+            ],
+            "min": [
+                626.019,
+                875.638,
+                203.164
+            ],
+            "type": 35665
+        },
+        "attribute_3042": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 227784,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.164928,
+                0.997723,
+                0.986241
+            ],
+            "min": [
+                -0.164928,
+                -0.997723,
+                -0.986241
+            ],
+            "type": 35665
+        },
+        "attribute_3060": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228000,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                628.299,
+                884.023,
+                213.573
+            ],
+            "min": [
+                626.019,
+                875.638,
+                203.426
+            ],
+            "type": 35665
+        },
+        "attribute_3062": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228072,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_3080": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228144,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                474.784,
+                1207.91,
+                170.281
+            ],
+            "min": [
+                465.71,
+                1142.62,
+                168.797
+            ],
+            "type": 35665
+        },
+        "attribute_3082": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228384,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_3100": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228624,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                654.429,
+                377.288,
+                1.23535
+            ],
+            "min": [
+                638.661,
+                362.281,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3102": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228672,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3120": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228720,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                694.172,
+                350.536,
+                1.23535
+            ],
+            "min": [
+                668.341,
+                126.455,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3122": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228768,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                -1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3140": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228816,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                645.778,
+                19.6105,
+                1.23535
+            ],
+            "min": [
+                645.702,
+                19.5844,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3142": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228876,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3160": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 228936,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                618.085,
+                661.693,
+                107.472
+            ],
+            "min": [
+                510.044,
+                639.72,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_3162": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 230112,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                0.993722,
+                0.111874,
+                1
+            ],
+            "min": [
+                -0.993722,
+                -0.997583,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_318": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 289416,
+            "byteStride": 12,
+            "count": 334,
+            "max": [
+                168.92,
+                85.1591,
+                7.67717
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3180": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 231288,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                696.89,
+                353.122,
+                1.23535
+            ],
+            "min": [
+                630.368,
+                19.6105,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3182": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 231576,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                -0,
+                -0,
+                -1
+            ],
+            "min": [
+                -0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_320": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 293424,
+            "byteStride": 12,
+            "count": 334,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -0.982692,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3200": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 231864,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                339.553,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                315.92,
+                1182.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3202": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 231912,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3220": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 231960,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                339.553,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                315.92,
+                1182.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3222": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 232128,
+            "byteStride": 12,
+            "count": 14,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3240": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 232296,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                655.151,
+                927.554,
+                1.23535
+            ],
+            "min": [
+                636.738,
+                627.133,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3242": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 232440,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                -0,
+                -0,
+                -1
+            ],
+            "min": [
+                -0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3260": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 232584,
+            "byteStride": 12,
+            "count": 38,
+            "max": [
+                397.86,
+                1730.5,
+                44.0336
+            ],
+            "min": [
+                291.375,
+                1403.36,
+                43.0611
+            ],
+            "type": 35665
+        },
+        "attribute_3262": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233040,
+            "byteStride": 12,
+            "count": 38,
+            "max": [
+                1,
+                1,
+                -0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3280": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233496,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                1361.56,
+                1685.1,
+                134.554
+            ],
+            "min": [
+                1361.56,
+                1571.3,
+                120.208
+            ],
+            "type": 35665
+        },
+        "attribute_3282": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233688,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                1,
+                -0,
+                -0
+            ],
+            "min": [
+                1,
+                -0,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_3300": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233880,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1081.21,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                1057.57,
+                1182.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3302": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233928,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3320": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 233976,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                373.315,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                349.682,
+                1149.65,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3322": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234024,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3340": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234072,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1114.97,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                1091.34,
+                1215.64,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3342": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234120,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3360": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234168,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                600.884,
+                1139.52,
+                166.052
+            ],
+            "min": [
+                436.213,
+                1122.14,
+                163.036
+            ],
+            "type": 35665
+        },
+        "attribute_3362": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234264,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                -0,
+                0,
+                0.783358
+            ],
+            "min": [
+                -0,
+                -0.621571,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_338": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 297432,
+            "byteStride": 12,
+            "count": 15,
+            "max": [
+                159.318,
+                76.4099,
+                0
+            ],
+            "min": [
+                5.53284,
+                9.82736,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3380": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234360,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                339.553,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                315.92,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3382": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234408,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_340": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 297612,
+            "byteStride": 12,
+            "count": 15,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3400": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234456,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                35.5641,
+                1685.1,
+                134.554
+            ],
+            "min": [
+                35.5641,
+                1571.3,
+                120.208
+            ],
+            "type": 35665
+        },
+        "attribute_3402": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234648,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                -1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_3420": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234840,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                397.86,
+                1380.89,
+                44.0336
+            ],
+            "min": [
+                291.375,
+                1135.9,
+                44.0336
+            ],
+            "type": 35665
+        },
+        "attribute_3422": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234888,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -0,
+                -1
+            ],
+            "min": [
+                0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3440": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234936,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1114.97,
+                1390.67,
+                144.385
+            ],
+            "min": [
+                1091.34,
+                1390.67,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3442": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 234984,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -1,
+                0
+            ],
+            "min": [
+                -0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3460": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235032,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                261.907,
+                1673.16,
+                134.554
+            ],
+            "min": [
+                50.7501,
+                1433.85,
+                134.554
+            ],
+            "type": 35665
+        },
+        "attribute_3462": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235128,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3480": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235224,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                618.085,
+                661.693,
+                107.472
+            ],
+            "min": [
+                511.684,
+                654.282,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_3482": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235272,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.06948,
+                -0.997583,
+                0
+            ],
+            "min": [
+                -0.06948,
+                -0.997583,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3500": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235320,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                510.854,
+                645.823,
+                107.472
+            ],
+            "min": [
+                508.616,
+                603.015,
+                107.472
+            ],
+            "type": 35665
+        },
+        "attribute_3502": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235356,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                0,
+                -0,
+                -1
+            ],
+            "min": [
+                0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3520": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235392,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                534.854,
+                1076.35,
+                116.019
+            ],
+            "min": [
+                502.243,
+                938.934,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_3522": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235500,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                0,
+                -0,
+                1
+            ],
+            "min": [
+                0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3540": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 235608,
+            "byteStride": 12,
+            "count": 174,
+            "max": [
+                777.282,
+                652.947,
+                118.293
+            ],
+            "min": [
+                619.845,
+                537.693,
+                117.407
+            ],
+            "type": 35665
+        },
+        "attribute_3542": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 237696,
+            "byteStride": 12,
+            "count": 174,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_3560": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 239784,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                771.097,
+                884.023,
+                213.573
+            ],
+            "min": [
+                768.83,
+                875.648,
+                203.497
+            ],
+            "type": 35665
+        },
+        "attribute_3562": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 239880,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_358": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 297792,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                157.439,
+                38.4633,
+                0
+            ],
+            "min": [
+                157.409,
+                38.4515,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3580": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 239976,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                733.498,
+                354.715,
+                1.23535
+            ],
+            "min": [
+                663.629,
+                122.276,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3582": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 240132,
+            "byteStride": 12,
+            "count": 13,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_360": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 297828,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3600": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 240288,
+            "byteStride": 12,
+            "count": 102,
+            "max": [
+                769.6,
+                873.919,
+                214.514
+            ],
+            "min": [
+                627.527,
+                857.854,
+                200.174
+            ],
+            "type": 35665
+        },
+        "attribute_3602": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 241512,
+            "byteStride": 12,
+            "count": 102,
+            "max": [
+                0.630319,
+                0.997279,
+                0.987568
+            ],
+            "min": [
+                -0.630319,
+                0.0117334,
+                0.0116191
+            ],
+            "type": 35665
+        },
+        "attribute_3620": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 242736,
+            "byteStride": 12,
+            "count": 183,
+            "max": [
+                769.6,
+                873.911,
+                214.514
+            ],
+            "min": [
+                627.527,
+                827.009,
+                200.469
+            ],
+            "type": 35665
+        },
+        "attribute_3622": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 244932,
+            "byteStride": 12,
+            "count": 183,
+            "max": [
+                0.984813,
+                0.90288,
+                0.987568
+            ],
+            "min": [
+                -0.984813,
+                -0.424591,
+                0.15719
+            ],
+            "type": 35665
+        },
+        "attribute_3640": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 247128,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                767.008,
+                869.697,
+                212.131
+            ],
+            "min": [
+                630.119,
+                852.773,
+                203.585
+            ],
+            "type": 35665
+        },
+        "attribute_3642": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 247896,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                0.630319,
+                -0.0217798,
+                -0.0124681
+            ],
+            "min": [
+                -0.630319,
+                -0.996902,
+                -0.979972
+            ],
+            "type": 35665
+        },
+        "attribute_3660": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 248664,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                962.366,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                962.366,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_3662": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 248712,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -1,
+                0,
+                0
+            ],
+            "min": [
+                -1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3680": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 248760,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                758.275,
+                917.698,
+                235.617
+            ],
+            "min": [
+                755.098,
+                906.363,
+                234.25
+            ],
+            "type": 35665
+        },
+        "attribute_3682": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 249000,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                0.995903,
+                0.995903
+            ],
+            "min": [
+                -1,
+                -0.995903,
+                -0.0904292
+            ],
+            "type": 35665
+        },
+        "attribute_3700": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 249240,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                642.03,
+                917.698,
+                235.617
+            ],
+            "min": [
+                638.852,
+                906.363,
+                234.25
+            ],
+            "type": 35665
+        },
+        "attribute_3702": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 249480,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                0.995903,
+                0.995903
+            ],
+            "min": [
+                -1,
+                -0.995903,
+                -0.0904292
+            ],
+            "type": 35665
+        },
+        "attribute_3720": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 249720,
+            "byteStride": 12,
+            "count": 108,
+            "max": [
+                769.697,
+                872.337,
+                200.174
+            ],
+            "min": [
+                627.43,
+                822.213,
+                199.882
+            ],
+            "type": 35665
+        },
+        "attribute_3722": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 251016,
+            "byteStride": 12,
+            "count": 108,
+            "max": [
+                0.997659,
+                1,
+                0
+            ],
+            "min": [
+                -0.997659,
+                0.0683892,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3740": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 252312,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                753.098,
+                280.718,
+                107.36
+            ],
+            "min": [
+                644.029,
+                36.8759,
+                37.0136
+            ],
+            "type": 35665
+        },
+        "attribute_3742": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 252516,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                -0,
+                -0.185465,
+                0.982651
+            ],
+            "min": [
+                -0,
+                -0.398896,
+                0.916996
+            ],
+            "type": 35665
+        },
+        "attribute_3760": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 252720,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                1113.9,
+                1750.88,
+                143.498
+            ],
+            "min": [
+                991.119,
+                1739.99,
+                59.8634
+            ],
+            "type": 35665
+        },
+        "attribute_3762": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253008,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                1,
+                -0,
+                1
+            ],
+            "min": [
+                -1,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_378": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 297864,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                117.756,
+                26.5453,
+                117.756
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3780": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253296,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                751.425,
+                19.6105,
+                1.23535
+            ],
+            "min": [
+                751.349,
+                19.5844,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_3782": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253356,
+            "byteStride": 12,
+            "count": 5,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_38": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 384,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                179.689,
+                56.8819,
+                70.1378
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_380": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 298728,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3800": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253416,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1047.45,
+                1390.67,
+                84.0246
+            ],
+            "min": [
+                1023.81,
+                1149.65,
+                84.0246
+            ],
+            "type": 35665
+        },
+        "attribute_3802": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253464,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3820": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 253512,
+            "byteStride": 12,
+            "count": 73,
+            "max": [
+                600.884,
+                1405.6,
+                163.036
+            ],
+            "min": [
+                436.213,
+                1062.89,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_3822": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 254388,
+            "byteStride": 12,
+            "count": 73,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3840": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255264,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                588.364,
+                818.629,
+                116.019
+            ],
+            "min": [
+                529.507,
+                682.534,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_3842": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255360,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                -0,
+                -0,
+                1
+            ],
+            "min": [
+                -0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_3860": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255456,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                513.401,
+                1104.05,
+                10.4646
+            ],
+            "min": [
+                427.425,
+                1066.94,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_3862": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255504,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                -1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3880": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255552,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                609.672,
+                1104.05,
+                10.4646
+            ],
+            "min": [
+                523.696,
+                1066.94,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_3882": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255600,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                -1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3900": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255648,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                599.815,
+                1051.09,
+                10.4646
+            ],
+            "min": [
+                441.736,
+                950.736,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_3902": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255756,
+            "byteStride": 12,
+            "count": 9,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3920": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 255864,
+            "byteStride": 12,
+            "count": 19,
+            "max": [
+                603.937,
+                1054.33,
+                10.4646
+            ],
+            "min": [
+                436.018,
+                947.494,
+                10.4646
+            ],
+            "type": 35665
+        },
+        "attribute_3922": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 256092,
+            "byteStride": 12,
+            "count": 19,
+            "max": [
+                0,
+                0,
+                -1
+            ],
+            "min": [
+                0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3940": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 256320,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                436.213,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                434.761,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_3942": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 256512,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0,
+                0.621571,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3960": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 256704,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                962.366,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                960.915,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_3962": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 256896,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                -0,
+                0.621571,
+                1
+            ],
+            "min": [
+                -0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_398": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 299592,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                97.1849,
+                169.926,
+                97.1849
+            ],
+            "min": [
+                20.571,
+                165.851,
+                20.571
+            ],
+            "type": 35665
+        },
+        "attribute_3980": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257088,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                434.761,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                434.761,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_3982": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257136,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_40": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 1152,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_400": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 300168,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4000": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257184,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                602.336,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                600.884,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_4002": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257376,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                -0,
+                0.621571,
+                1
+            ],
+            "min": [
+                -0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4020": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257568,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                600.884,
+                1196.67,
+                163.036
+            ],
+            "min": [
+                436.213,
+                1139.52,
+                163.036
+            ],
+            "type": 35665
+        },
+        "attribute_4022": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257616,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -0,
+                -1
+            ],
+            "min": [
+                0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4040": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257664,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                602.336,
+                1193.55,
+                159.334
+            ],
+            "min": [
+                602.336,
+                1073.16,
+                119.721
+            ],
+            "type": 35665
+        },
+        "attribute_4042": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257712,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -1,
+                -0,
+                -0
+            ],
+            "min": [
+                -1,
+                -0,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_4060": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257760,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                508.079,
+                1151.61,
+                116.019
+            ],
+            "min": [
+                502.243,
+                1095.42,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4062": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257808,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -0,
+                1
+            ],
+            "min": [
+                -0,
+                -0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4080": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257856,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                502.243,
+                1192.11,
+                116.019
+            ],
+            "min": [
+                442.012,
+                1067.45,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4082": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 257928,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4100": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258000,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                595.085,
+                1192.11,
+                116.019
+            ],
+            "min": [
+                534.854,
+                1067.45,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4102": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258072,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4120": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258144,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                534.854,
+                1151.61,
+                116.019
+            ],
+            "min": [
+                529.018,
+                1095.42,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4122": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258192,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4140": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258240,
+            "byteStride": 12,
+            "count": 11,
+            "max": [
+                1113.9,
+                1739.99,
+                143.498
+            ],
+            "min": [
+                991.119,
+                1739.99,
+                59.8634
+            ],
+            "type": 35665
+        },
+        "attribute_4142": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258372,
+            "byteStride": 12,
+            "count": 11,
+            "max": [
+                0,
+                1,
+                -0
+            ],
+            "min": [
+                0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_4160": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 258504,
+            "byteStride": 12,
+            "count": 99,
+            "max": [
+                887.083,
+                661.693,
+                107.472
+            ],
+            "min": [
+                779.042,
+                639.72,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_4162": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 259692,
+            "byteStride": 12,
+            "count": 99,
+            "max": [
+                0.993722,
+                0.111874,
+                1
+            ],
+            "min": [
+                -0.993722,
+                -0.997583,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_418": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 300744,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                117.756,
+                26.5453,
+                117.756
+            ],
+            "min": [
+                0,
+                26.5453,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4180": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 260880,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                888.511,
+                645.823,
+                107.472
+            ],
+            "min": [
+                886.273,
+                603.015,
+                107.472
+            ],
+            "type": 35665
+        },
+        "attribute_4182": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 260916,
+            "byteStride": 12,
+            "count": 3,
+            "max": [
+                -0,
+                -0,
+                -1
+            ],
+            "min": [
+                -0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_420": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 301320,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4200": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 260952,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                885.444,
+                661.693,
+                107.472
+            ],
+            "min": [
+                779.042,
+                654.282,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_4202": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 261000,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.06948,
+                -0.997583,
+                0
+            ],
+            "min": [
+                0.06948,
+                -0.997583,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4220": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 261048,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                760.39,
+                927.554,
+                1.23535
+            ],
+            "min": [
+                741.977,
+                627.133,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_4222": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 261192,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0,
+                -0,
+                -1
+            ],
+            "min": [
+                0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4240": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 261336,
+            "byteStride": 12,
+            "count": 38,
+            "max": [
+                1105.75,
+                1730.5,
+                44.0336
+            ],
+            "min": [
+                999.267,
+                1403.36,
+                43.0611
+            ],
+            "type": 35665
+        },
+        "attribute_4242": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 261792,
+            "byteStride": 12,
+            "count": 38,
+            "max": [
+                1,
+                1,
+                -0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4260": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262248,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                1346.38,
+                1673.16,
+                134.554
+            ],
+            "min": [
+                1135.22,
+                1433.85,
+                134.554
+            ],
+            "type": 35665
+        },
+        "attribute_4262": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262344,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4280": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262440,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                1105.75,
+                1380.89,
+                44.0336
+            ],
+            "min": [
+                999.267,
+                1135.9,
+                44.0336
+            ],
+            "type": 35665
+        },
+        "attribute_4282": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262488,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                -0,
+                -1
+            ],
+            "min": [
+                -0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4300": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262536,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                899.959,
+                648.511,
+                104.754
+            ],
+            "min": [
+                899.562,
+                602.996,
+                20.394
+            ],
+            "type": 35665
+        },
+        "attribute_4302": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 262776,
+            "byteStride": 12,
+            "count": 20,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4320": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 263016,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                899.959,
+                651.581,
+                108.399
+            ],
+            "min": [
+                899.562,
+                599.926,
+                16.7492
+            ],
+            "type": 35665
+        },
+        "attribute_4322": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 263304,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                0,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4340": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 263592,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                1105.14,
+                1739.99,
+                135.313
+            ],
+            "min": [
+                999.883,
+                1719.04,
+                68.0481
+            ],
+            "type": 35665
+        },
+        "attribute_4342": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 263736,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.585506,
+                0.606805,
+                0.622951
+            ],
+            "min": [
+                -0.837237,
+                0.546839,
+                -0.622951
+            ],
+            "type": 35665
+        },
+        "attribute_4360": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 263880,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                773.04,
+                1812.29,
+                231.164
+            ],
+            "min": [
+                773.04,
+                1537.87,
+                66.7596
+            ],
+            "type": 35665
+        },
+        "attribute_4362": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 264084,
+            "byteStride": 12,
+            "count": 17,
+            "max": [
+                1,
+                0,
+                0
+            ],
+            "min": [
+                1,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_438": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 301896,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                113.185,
+                86.2146,
+                113.185
+            ],
+            "min": [
+                4.57067,
+                38.1988,
+                4.57067
+            ],
+            "type": 35665
+        },
+        "attribute_4380": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 264288,
+            "byteStride": 12,
+            "count": 66,
+            "max": [
+                888.709,
+                654.282,
+                107.472
+            ],
+            "min": [
+                779.042,
+                505.491,
+                16.2887
+            ],
+            "type": 35665
+        },
+        "attribute_4382": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 265080,
+            "byteStride": 12,
+            "count": 66,
+            "max": [
+                1,
+                0.0522107,
+                1
+            ],
+            "min": [
+                -0.998636,
+                -0.0522107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_440": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 302472,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4400": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 265872,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                771.108,
+                884.13,
+                213.573
+            ],
+            "min": [
+                767.268,
+                875.638,
+                203.164
+            ],
+            "type": 35665
+        },
+        "attribute_4402": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 266088,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.164928,
+                0.997723,
+                0.986241
+            ],
+            "min": [
+                -0.164928,
+                -0.997723,
+                -0.986241
+            ],
+            "type": 35665
+        },
+        "attribute_4420": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 266304,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                771.108,
+                884.023,
+                213.573
+            ],
+            "min": [
+                768.829,
+                875.638,
+                203.426
+            ],
+            "type": 35665
+        },
+        "attribute_4422": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 266376,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_4440": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 266448,
+            "byteStride": 12,
+            "count": 28,
+            "max": [
+                605.346,
+                1737.14,
+                159.768
+            ],
+            "min": [
+                421.615,
+                1737.14,
+                19.4928
+            ],
+            "type": 35665
+        },
+        "attribute_4442": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 266784,
+            "byteStride": 12,
+            "count": 28,
+            "max": [
+                -0,
+                1,
+                -0
+            ],
+            "min": [
+                -0,
+                1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_4460": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 267120,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                766.759,
+                353.122,
+                1.23535
+            ],
+            "min": [
+                700.237,
+                19.6105,
+                1.23535
+            ],
+            "type": 35665
+        },
+        "attribute_4462": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 267408,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                0,
+                -0,
+                -1
+            ],
+            "min": [
+                0,
+                -0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4480": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 267696,
+            "byteStride": 12,
+            "count": 10,
+            "max": [
+                953.257,
+                1409.32,
+                155.884
+            ],
+            "min": [
+                803.901,
+                1409.32,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4482": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 267816,
+            "byteStride": 12,
+            "count": 10,
+            "max": [
+                -0,
+                -1,
+                -0
+            ],
+            "min": [
+                -0,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_4500": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 267936,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                955.116,
+                1192.11,
+                116.019
+            ],
+            "min": [
+                894.884,
+                1067.45,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4502": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268008,
+            "byteStride": 12,
+            "count": 6,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4520": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268080,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                770.866,
+                883.041,
+                212.603
+            ],
+            "min": [
+                769.06,
+                876.63,
+                204.467
+            ],
+            "type": 35665
+        },
+        "attribute_4522": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268128,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_4540": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268176,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                628.298,
+                884.023,
+                213.573
+            ],
+            "min": [
+                626.031,
+                875.648,
+                203.497
+            ],
+            "type": 35665
+        },
+        "attribute_4542": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268272,
+            "byteStride": 12,
+            "count": 8,
+            "max": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "min": [
+                -0.983932,
+                -0.0674482,
+                0.165315
+            ],
+            "type": 35665
+        },
+        "attribute_4560": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268368,
+            "byteStride": 12,
+            "count": 10,
+            "max": [
+                593.227,
+                1409.32,
+                155.884
+            ],
+            "min": [
+                443.87,
+                1409.32,
+                116.019
+            ],
+            "type": 35665
+        },
+        "attribute_4562": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268488,
+            "byteStride": 12,
+            "count": 10,
+            "max": [
+                0,
+                -1,
+                -0
+            ],
+            "min": [
+                0,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_458": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 303048,
+            "byteStride": 12,
+            "count": 480,
+            "max": [
+                118.63,
+                169.926,
+                118.63
+            ],
+            "min": [
+                -0.873878,
+                38.1988,
+                -0.873878
+            ],
+            "type": 35665
+        },
+        "attribute_4580": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 268608,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                766.65,
+                1812.29,
+                290.254
+            ],
+            "min": [
+                630.477,
+                1782.4,
+                7.66956
+            ],
+            "type": 35665
+        },
+        "attribute_4582": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 270000,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_460": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 308808,
+            "byteStride": 12,
+            "count": 480,
+            "max": [
+                1,
+                0.995024,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4600": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 271392,
+            "byteStride": 12,
+            "count": 54,
+            "max": [
+                766.65,
+                1782.4,
+                290.254
+            ],
+            "min": [
+                630.477,
+                1782.4,
+                7.66956
+            ],
+            "type": 35665
+        },
+        "attribute_4602": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 272040,
+            "byteStride": 12,
+            "count": 54,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4620": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 272688,
+            "byteStride": 12,
+            "count": 51,
+            "max": [
+                609.427,
+                1685.01,
+                10.4646
+            ],
+            "min": [
+                427.669,
+                1665.62,
+                9.49217
+            ],
+            "type": 35665
+        },
+        "attribute_4622": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 273300,
+            "byteStride": 12,
+            "count": 51,
+            "max": [
+                1,
+                1,
+                0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4640": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 273912,
+            "byteStride": 12,
+            "count": 51,
+            "max": [
+                969.458,
+                1685.01,
+                10.4646
+            ],
+            "min": [
+                787.7,
+                1665.62,
+                9.49217
+            ],
+            "type": 35665
+        },
+        "attribute_4642": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 274524,
+            "byteStride": 12,
+            "count": 51,
+            "max": [
+                1,
+                1,
+                0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4660": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 275136,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                762.933,
+                1386.88,
+                190.758
+            ],
+            "min": [
+                634.194,
+                1371.11,
+                190.758
+            ],
+            "type": 35665
+        },
+        "attribute_4662": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 275184,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4680": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 275232,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                762.933,
+                1413.02,
+                190.758
+            ],
+            "min": [
+                634.194,
+                1397.25,
+                190.758
+            ],
+            "type": 35665
+        },
+        "attribute_4682": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 275280,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_4700": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 275328,
+            "byteStride": 12,
+            "count": 65,
+            "max": [
+                774.244,
+                523.825,
+                116.019
+            ],
+            "min": [
+                622.884,
+                354.608,
+                115.043
+            ],
+            "type": 35665
+        },
+        "attribute_4702": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 276108,
+            "byteStride": 12,
+            "count": 65,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_4720": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 276888,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                896.965,
+                1376.98,
+                10.4646
+            ],
+            "min": [
+                860.193,
+                1144.8,
+                8.57485
+            ],
+            "type": 35665
+        },
+        "attribute_4722": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 277248,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                1,
+                0.181231,
+                -0
+            ],
+            "min": [
+                -1,
+                -0.171491,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4740": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 277608,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                536.935,
+                1376.98,
+                10.4646
+            ],
+            "min": [
+                500.162,
+                1144.8,
+                8.57485
+            ],
+            "type": 35665
+        },
+        "attribute_4742": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 277968,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                1,
+                0.181231,
+                -0
+            ],
+            "min": [
+                -1,
+                -0.171491,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4760": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 278328,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                896.965,
+                1147.26,
+                10.4646
+            ],
+            "min": [
+                860.193,
+                1113.78,
+                10.2441
+            ],
+            "type": 35665
+        },
+        "attribute_4762": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 278688,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                1,
+                0.710642,
+                0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_478": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 314568,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                113.185,
+                38.1988,
+                113.185
+            ],
+            "min": [
+                4.57067,
+                26.5453,
+                4.57067
+            ],
+            "type": 35665
+        },
+        "attribute_4780": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 279048,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                896.965,
+                1405.88,
+                10.4646
+            ],
+            "min": [
+                860.193,
+                1371.03,
+                10.2441
+            ],
+            "type": 35665
+        },
+        "attribute_4782": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 279348,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                1,
+                1,
+                -0
+            ],
+            "min": [
+                -1,
+                -0.588421,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_480": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 315144,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4800": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 279648,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                536.935,
+                1405.88,
+                10.4646
+            ],
+            "min": [
+                500.162,
+                1371.03,
+                10.2441
+            ],
+            "type": 35665
+        },
+        "attribute_4802": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 279948,
+            "byteStride": 12,
+            "count": 25,
+            "max": [
+                1,
+                1,
+                -0
+            ],
+            "min": [
+                -1,
+                -0.588421,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4820": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 280248,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                536.935,
+                1147.26,
+                10.4646
+            ],
+            "min": [
+                500.162,
+                1113.78,
+                10.2441
+            ],
+            "type": 35665
+        },
+        "attribute_4822": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 280608,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                1,
+                0.710642,
+                0
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_498": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 315720,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                98.4973,
+                169.926,
+                98.4973
+            ],
+            "min": [
+                19.2586,
+                169.926,
+                19.2586
+            ],
+            "type": 35665
+        },
+        "attribute_500": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 316296,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_518": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 316872,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                97.1849,
+                165.851,
+                97.1849
+            ],
+            "min": [
+                20.571,
+                52.4823,
+                20.571
+            ],
+            "type": 35665
+        },
+        "attribute_520": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 317448,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0.995138,
+                0.0984868,
+                0.995138
+            ],
+            "min": [
+                -0.995138,
+                0.0984868,
+                -0.995138
+            ],
+            "type": 35665
+        },
+        "attribute_538": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 318024,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                75.1311,
+                6.33271,
+                75.1311
+            ],
+            "min": [
+                42.6248,
+                6.33271,
+                42.6248
+            ],
+            "type": 35665
+        },
+        "attribute_540": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 318312,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_558": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 318600,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                85.9651,
+                52.4823,
+                85.9651
+            ],
+            "min": [
+                31.7908,
+                6.33271,
+                31.7908
+            ],
+            "type": 35665
+        },
+        "attribute_560": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 319176,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0.973534,
+                0.228543,
+                0.973534
+            ],
+            "min": [
+                -0.973534,
+                0.228543,
+                -0.973534
+            ],
+            "type": 35665
+        },
+        "attribute_578": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 319752,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                117.756,
+                26.5453,
+                117.756
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_58": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 1920,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                130.824,
+                26.8217,
+                46.5503
+            ],
+            "min": [
+                48.8649,
+                26.8217,
+                23.5876
+            ],
+            "type": 35665
+        },
+        "attribute_580": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 320616,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_598": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 321480,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                97.1849,
+                169.926,
+                97.1849
+            ],
+            "min": [
+                20.571,
+                165.851,
+                20.571
+            ],
+            "type": 35665
+        },
+        "attribute_60": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 1968,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_600": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 322056,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_618": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 322632,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                117.756,
+                26.5453,
+                117.756
+            ],
+            "min": [
+                0,
+                26.5453,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_620": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 323208,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_638": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 323784,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                113.185,
+                86.2146,
+                113.185
+            ],
+            "min": [
+                4.57067,
+                38.1988,
+                4.57067
+            ],
+            "type": 35665
+        },
+        "attribute_640": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 324360,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_658": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 324936,
+            "byteStride": 12,
+            "count": 480,
+            "max": [
+                118.63,
+                169.926,
+                118.63
+            ],
+            "min": [
+                -0.873878,
+                38.1988,
+                -0.873878
+            ],
+            "type": 35665
+        },
+        "attribute_660": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 330696,
+            "byteStride": 12,
+            "count": 480,
+            "max": [
+                1,
+                0.995024,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_678": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 336456,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                113.185,
+                38.1988,
+                113.185
+            ],
+            "min": [
+                4.57067,
+                26.5453,
+                4.57067
+            ],
+            "type": 35665
+        },
+        "attribute_680": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 337032,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_698": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 337608,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                98.4973,
+                169.926,
+                98.4973
+            ],
+            "min": [
+                19.2586,
+                169.926,
+                19.2586
+            ],
+            "type": 35665
+        },
+        "attribute_700": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 338184,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_718": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 338760,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                97.1849,
+                165.851,
+                97.1849
+            ],
+            "min": [
+                20.571,
+                52.4823,
+                20.571
+            ],
+            "type": 35665
+        },
+        "attribute_720": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 339336,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0.995138,
+                0.0984868,
+                0.995138
+            ],
+            "min": [
+                -0.995138,
+                0.0984868,
+                -0.995138
+            ],
+            "type": 35665
+        },
+        "attribute_738": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 339912,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                75.1311,
+                6.33271,
+                75.1311
+            ],
+            "min": [
+                42.6248,
+                6.33271,
+                42.6248
+            ],
+            "type": 35665
+        },
+        "attribute_740": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 340200,
+            "byteStride": 12,
+            "count": 24,
+            "max": [
+                0,
+                1,
+                0
+            ],
+            "min": [
+                0,
+                1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_758": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 340488,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                85.9651,
+                52.4823,
+                85.9651
+            ],
+            "min": [
+                31.7908,
+                6.33271,
+                31.7908
+            ],
+            "type": 35665
+        },
+        "attribute_760": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 341064,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                0.973534,
+                0.228543,
+                0.973534
+            ],
+            "min": [
+                -0.973534,
+                0.228543,
+                -0.973534
+            ],
+            "type": 35665
+        },
+        "attribute_778": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 341640,
+            "byteStride": 12,
+            "count": 80,
+            "max": [
+                84.1272,
+                113.249,
+                11.4213
+            ],
+            "min": [
+                -0,
+                13.2862,
+                5.28346
+            ],
+            "type": 35665
+        },
+        "attribute_78": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 2016,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                155.941,
+                56.8819,
+                53.5872
+            ],
+            "min": [
+                23.7484,
+                26.8217,
+                16.5506
+            ],
+            "type": 35665
+        },
+        "attribute_780": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 342600,
+            "byteStride": 12,
+            "count": 80,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_798": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 343560,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                155.059,
+                110.057,
+                108.24
+            ],
+            "min": [
+                74.9688,
+                16.4785,
+                -3.05278
+            ],
+            "type": 35665
+        },
+        "attribute_80": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 2208,
+            "byteStride": 12,
+            "count": 16,
+            "max": [
+                0.767387,
+                0.641184,
+                0.973677
+            ],
+            "min": [
+                -0.767387,
+                0.227933,
+                -0.973677
+            ],
+            "type": 35665
+        },
+        "attribute_800": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 345984,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.998214,
+                0.991927,
+                0.999922
+            ],
+            "min": [
+                -0.999918,
+                -0.991927,
+                -0.999207
+            ],
+            "type": 35665
+        },
+        "attribute_818": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348408,
+            "byteStride": 12,
+            "count": 7,
+            "max": [
+                152.611,
+                91.3843,
+                99.9819
+            ],
+            "min": [
+                141.872,
+                35.1511,
+                84.3742
+            ],
+            "type": 35665
+        },
+        "attribute_820": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348492,
+            "byteStride": 12,
+            "count": 7,
+            "max": [
+                0.82381,
+                -0,
+                -0.566866
+            ],
+            "min": [
+                0.82381,
+                -0,
+                -0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_838": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348576,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                138.666,
+                104.241,
+                79.716
+            ],
+            "min": [
+                84.8631,
+                22.2944,
+                1.52523
+            ],
+            "type": 35665
+        },
+        "attribute_840": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348624,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0.82381,
+                0,
+                -0.566866
+            ],
+            "min": [
+                0.82381,
+                0,
+                -0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_858": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348672,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                140.934,
+                89.9439,
+                97.0579
+            ],
+            "min": [
+                112.637,
+                36.5915,
+                55.9354
+            ],
+            "type": 35665
+        },
+        "attribute_860": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348720,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "min": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_878": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348768,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                107.787,
+                96.3254,
+                48.8865
+            ],
+            "min": [
+                84.341,
+                30.21,
+                14.813
+            ],
+            "type": 35665
+        },
+        "attribute_880": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348816,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "min": [
+                -0.82381,
+                -0,
+                0.566866
+            ],
+            "type": 35665
+        },
+        "attribute_898": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 348864,
+            "byteStride": 12,
+            "count": 328,
+            "max": [
+                119.894,
+                440.781,
+                88.6204
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_900": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 352800,
+            "byteStride": 12,
+            "count": 328,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_918": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 356736,
+            "byteStride": 12,
+            "count": 259,
+            "max": [
+                119.894,
+                263.946,
+                88.6204
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_920": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 359844,
+            "byteStride": 12,
+            "count": 259,
+            "max": [
+                1,
+                0,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -0
+            ],
+            "type": 35665
+        },
+        "attribute_938": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 362952,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                93.8884,
+                155.242,
+                83.9995
+            ],
+            "min": [
+                70.7752,
+                155.242,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_940": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363000,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_958": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363048,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                93.8884,
+                155.242,
+                9.53144
+            ],
+            "min": [
+                70.7752,
+                0,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_960": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363096,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                0,
+                1
+            ],
+            "min": [
+                0,
+                0,
+                1
+            ],
+            "type": 35665
+        },
+        "attribute_978": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363144,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                49.1186,
+                155.242,
+                83.9995
+            ],
+            "min": [
+                26.0055,
+                155.242,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "attribute_98": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 2400,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                179.689,
+                56.8819,
+                70.1378
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_980": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363192,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                0,
+                -1,
+                0
+            ],
+            "min": [
+                0,
+                -1,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_998": {
+            "bufferView": "bufferView_5085",
+            "byteOffset": 363240,
+            "byteStride": 12,
+            "count": 4,
+            "max": [
+                49.1186,
+                155.242,
+                9.53144
+            ],
+            "min": [
+                26.0055,
+                0,
+                9.53144
+            ],
+            "type": 35665
+        },
+        "indices_1016": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76590,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_1036": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76614,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_1056": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76692,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1082": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76704,
+            "count": 156,
+            "type": 5123
+        },
+        "indices_1102": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 77016,
+            "count": 546,
+            "type": 5123
+        },
+        "indices_1122": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 78108,
+            "count": 15,
+            "type": 5123
+        },
+        "indices_1142": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 78138,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_116": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 564,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1162": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 78150,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1182": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 78162,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1202": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 78174,
+            "count": 654,
+            "type": 5123
+        },
+        "indices_1222": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 79482,
+            "count": 771,
+            "type": 5123
+        },
+        "indices_1242": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81024,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1262": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81036,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1282": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81048,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1302": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81060,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1322": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81072,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_1342": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81096,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_136": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 576,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_1362": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81174,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1388": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81186,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1408": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81198,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1428": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81210,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1448": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81222,
+            "count": 87,
+            "type": 5123
+        },
+        "indices_1468": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81396,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1488": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81432,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1508": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81468,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1528": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81480,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1548": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81492,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_156": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 624,
+            "count": 114,
+            "type": 5123
+        },
+        "indices_1568": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81504,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1588": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81516,
+            "count": 108,
+            "type": 5123
+        },
+        "indices_16": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 0,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_1608": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81732,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1628": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81768,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1648": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 81804,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1668": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 1152,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1688": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 1164,
+            "count": 126,
+            "type": 5123
+        },
+        "indices_1708": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 1416,
+            "count": 696,
+            "type": 5123
+        },
+        "indices_1728": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 2808,
+            "count": 18423,
+            "type": 5123
+        },
+        "indices_1748": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 39654,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_176": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 852,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1768": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 39990,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_1788": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 40326,
+            "count": 351,
+            "type": 5123
+        },
+        "indices_1808": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 41028,
+            "count": 336,
+            "type": 5123
+        },
+        "indices_1828": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 41700,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_1848": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 41712,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_1868": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42048,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_1900": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42108,
+            "count": 333,
+            "type": 5123
+        },
+        "indices_1903": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42774,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_1923": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42792,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1943": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42828,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_196": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 864,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_1975": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 42840,
+            "count": 333,
+            "type": 5123
+        },
+        "indices_1978": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 43506,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_1998": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 43524,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_2018": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 43584,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2038": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 43632,
+            "count": 438,
+            "type": 5123
+        },
+        "indices_2058": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44508,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_2078": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44526,
+            "count": 126,
+            "type": 5123
+        },
+        "indices_2098": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44778,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2118": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44790,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2138": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44838,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2158": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44886,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_216": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 912,
+            "count": 114,
+            "type": 5123
+        },
+        "indices_2178": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44934,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2198": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44946,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2218": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 44994,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_2238": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45036,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_2258": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45060,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_2278": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45096,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2298": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45108,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2318": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45156,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2338": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45168,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_2358": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45192,
+            "count": 189,
+            "type": 5123
+        },
+        "indices_236": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 1140,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2378": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45570,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_2398": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45612,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2418": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45624,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2438": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45636,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_2458": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 45696,
+            "count": 351,
+            "type": 5123
+        },
+        "indices_2478": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46398,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2498": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46410,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2518": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46422,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_2538": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46464,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_2558": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46524,
+            "count": 57,
+            "type": 5123
+        },
+        "indices_256": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57558,
+            "count": 1332,
+            "type": 5123
+        },
+        "indices_2578": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46638,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_2598": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46656,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_2618": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46680,
+            "count": 126,
+            "type": 5123
+        },
+        "indices_2638": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46932,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2658": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 46944,
+            "count": 78,
+            "type": 5123
+        },
+        "indices_2678": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47100,
+            "count": 126,
+            "type": 5123
+        },
+        "indices_2698": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47352,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2718": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47364,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_2738": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47406,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2758": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47418,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_276": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 60222,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_2778": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47436,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_2798": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47484,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_2818": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47580,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2838": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47592,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2858": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47604,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_2878": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47616,
+            "count": 162,
+            "type": 5123
+        },
+        "indices_2898": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 47940,
+            "count": 33,
+            "type": 5123
+        },
+        "indices_2918": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48006,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_2938": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48066,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_2958": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48144,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_296": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 60300,
+            "count": 3,
+            "type": 5123
+        },
+        "indices_2978": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48204,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_2998": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48222,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3018": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48234,
+            "count": 36,
+            "type": 5123
+        },
+        "indices_3038": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48306,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_3058": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48366,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_3078": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48390,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_3098": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48450,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3118": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48462,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3138": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48474,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_3158": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48492,
+            "count": 153,
+            "type": 5123
+        },
+        "indices_316": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 60306,
+            "count": 1332,
+            "type": 5123
+        },
+        "indices_3178": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48798,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_3198": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48930,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3218": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48942,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_3238": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48990,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_3258": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49026,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_3278": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49146,
+            "count": 42,
+            "type": 5123
+        },
+        "indices_3298": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49230,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3318": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49242,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3338": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49254,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3358": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49266,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_336": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 62970,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_3378": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49290,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3398": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49302,
+            "count": 42,
+            "type": 5123
+        },
+        "indices_3418": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49386,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3438": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49398,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3458": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49410,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_3478": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49434,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3498": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49446,
+            "count": 3,
+            "type": 5123
+        },
+        "indices_3518": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49452,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_3538": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 49494,
+            "count": 312,
+            "type": 5123
+        },
+        "indices_3558": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 50118,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_356": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 63048,
+            "count": 3,
+            "type": 5123
+        },
+        "indices_3578": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 50166,
+            "count": 45,
+            "type": 5123
+        },
+        "indices_3598": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 50256,
+            "count": 234,
+            "type": 5123
+        },
+        "indices_36": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 48,
+            "count": 114,
+            "type": 5123
+        },
+        "indices_3618": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 50724,
+            "count": 531,
+            "type": 5123
+        },
+        "indices_3638": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 51786,
+            "count": 174,
+            "type": 5123
+        },
+        "indices_3658": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52134,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3678": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52146,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_3698": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52206,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_3718": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52266,
+            "count": 162,
+            "type": 5123
+        },
+        "indices_3738": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52590,
+            "count": 45,
+            "type": 5123
+        },
+        "indices_3758": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52680,
+            "count": 36,
+            "type": 5123
+        },
+        "indices_376": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 63054,
+            "count": 210,
+            "type": 5123
+        },
+        "indices_3778": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52752,
+            "count": 9,
+            "type": 5123
+        },
+        "indices_3798": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52770,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3818": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 52782,
+            "count": 189,
+            "type": 5123
+        },
+        "indices_3838": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53160,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_3858": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53208,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3878": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53220,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3898": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53232,
+            "count": 21,
+            "type": 5123
+        },
+        "indices_3918": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53274,
+            "count": 57,
+            "type": 5123
+        },
+        "indices_3938": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53388,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_3958": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53436,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_396": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 63474,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_3978": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53484,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_3998": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53496,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_4018": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53544,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4038": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53556,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4058": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53568,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4078": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53580,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_4098": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53604,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_4118": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53628,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4138": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53640,
+            "count": 33,
+            "type": 5123
+        },
+        "indices_4158": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 53706,
+            "count": 153,
+            "type": 5123
+        },
+        "indices_416": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 63762,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_4178": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54012,
+            "count": 3,
+            "type": 5123
+        },
+        "indices_4198": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54018,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4218": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54030,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_4238": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54066,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_4258": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54186,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_4278": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54210,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4298": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54222,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_4318": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54282,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_4338": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54378,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_4358": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54438,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_436": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 64050,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_4378": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54516,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_4398": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54852,
+            "count": 30,
+            "type": 5123
+        },
+        "indices_4418": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54912,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_4438": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 54936,
+            "count": 78,
+            "type": 5123
+        },
+        "indices_4458": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55092,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_4478": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55224,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_4498": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55272,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_4518": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55296,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4538": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55308,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_4558": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55356,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_456": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 64338,
+            "count": 1008,
+            "type": 5123
+        },
+        "indices_4578": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 55404,
+            "count": 324,
+            "type": 5123
+        },
+        "indices_4598": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56052,
+            "count": 156,
+            "type": 5123
+        },
+        "indices_4618": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56364,
+            "count": 93,
+            "type": 5123
+        },
+        "indices_4638": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56550,
+            "count": 93,
+            "type": 5123
+        },
+        "indices_4658": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56736,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4678": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56748,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_4698": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 56760,
+            "count": 129,
+            "type": 5123
+        },
+        "indices_4718": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57018,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_4738": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57114,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_4758": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57210,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_476": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 66354,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_4778": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57306,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_4798": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57384,
+            "count": 39,
+            "type": 5123
+        },
+        "indices_4818": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 57462,
+            "count": 48,
+            "type": 5123
+        },
+        "indices_496": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 66642,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_516": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 66930,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_536": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 67218,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_556": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 67350,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_56": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 276,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_576": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 67638,
+            "count": 210,
+            "type": 5123
+        },
+        "indices_596": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 68058,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_616": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 68346,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_636": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 68634,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_656": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 68922,
+            "count": 1008,
+            "type": 5123
+        },
+        "indices_676": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 70938,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_696": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 71226,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_716": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 71514,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_736": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 71802,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_756": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 71934,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_76": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 288,
+            "count": 24,
+            "type": 5123
+        },
+        "indices_776": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 72222,
+            "count": 156,
+            "type": 5123
+        },
+        "indices_796": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 72534,
+            "count": 546,
+            "type": 5123
+        },
+        "indices_816": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 73626,
+            "count": 15,
+            "type": 5123
+        },
+        "indices_836": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 73656,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_856": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 73668,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_876": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 73680,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_896": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 73692,
+            "count": 654,
+            "type": 5123
+        },
+        "indices_916": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 75000,
+            "count": 771,
+            "type": 5123
+        },
+        "indices_936": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76542,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_956": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76554,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_96": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 336,
+            "count": 114,
+            "type": 5123
+        },
+        "indices_976": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76566,
+            "count": 6,
+            "type": 5123
+        },
+        "indices_996": {
+            "bufferView": "bufferView_5086",
+            "byteOffset": 76578,
+            "count": 6,
+            "type": 5123
+        }
+    },
+    "animations": {},
+    "asset": {
+        "generator": "collada2gltf@75061f683116dc0ffdad48f33c226e933132e98c"
+    },
+    "bufferViews": {
+        "bufferView_5085": {
+            "buffer": "SuperMurdoch",
+            "byteLength": 390864,
+            "byteOffset": 0,
+            "target": 34962
+        },
+        "bufferView_5086": {
+            "buffer": "SuperMurdoch",
+            "byteLength": 81816,
+            "byteOffset": 390864,
+            "target": 34963
+        },
+        "bufferView_5087": {
+            "buffer": "SuperMurdoch",
+            "byteLength": 0,
+            "byteOffset": 472680
+        }
+    },
+    "buffers": {
+        "SuperMurdoch": {
+            "byteLength": 472680,
+            "path": "SuperMurdoch.bin",
+            "type": "arraybuffer"
+        }
+    },
+    "materials": {
+        "ID1005": {
+            "instanceTechnique": {
+                "technique": "technique2",
+                "values": {
+                    "diffuse": [
+                        0,
+                        0.74902,
+                        1,
+                        0.8
+                    ],
+                    "transparency": 0.8
+                }
+            },
+            "name": "__0097_DeepSkyBlue_1"
+        },
+        "ID13": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.137255,
+                        0.137255,
+                        0.137255,
+                        1
+                    ]
+                }
+            },
+            "name": "_0136_Charcoal_"
+        },
+        "ID134": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.721569,
+                        0.52549,
+                        0.0431373,
+                        1
+                    ]
+                }
+            },
+            "name": "_0044_DarkGoldenrod_"
+        },
+        "ID142": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.141177,
+                        0.184314,
+                        0.258824,
+                        1
+                    ]
+                }
+            },
+            "name": "jean_blue"
+        },
+        "ID156": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.403922,
+                        0.0745098,
+                        0.0745098,
+                        1
+                    ]
+                }
+            },
+            "name": "material_1"
+        },
+        "ID164": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.137255,
+                        0.137255,
+                        0.137255,
+                        1
+                    ]
+                }
+            },
+            "name": "__Charcoal_"
+        },
+        "ID172": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.698039,
+                        0.133333,
+                        0.133333,
+                        1
+                    ]
+                }
+            },
+            "name": "_0023_FireBrick_"
+        },
+        "ID21": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0,
+                        0,
+                        0,
+                        1
+                    ]
+                }
+            },
+            "name": "black"
+        },
+        "ID304": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.2,
+                        0.305882,
+                        0.65098,
+                        1
+                    ]
+                }
+            },
+            "name": "_0101_CornflowerBlue_"
+        },
+        "ID318": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.466667,
+                        0.533333,
+                        0.6,
+                        1
+                    ]
+                }
+            },
+            "name": "_0110_LightSlateGray_"
+        },
+        "ID338": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.662745,
+                        0.662745,
+                        0.662745,
+                        1
+                    ]
+                }
+            },
+            "name": "__LightGray_"
+        },
+        "ID346": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.411765,
+                        0.411765,
+                        0.411765,
+                        1
+                    ]
+                }
+            },
+            "name": "_0134_DimGray_"
+        },
+        "ID5": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        1,
+                        0.843137,
+                        0,
+                        1
+                    ]
+                }
+            },
+            "name": "_0046_Gold_"
+        },
+        "ID528": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.317647,
+                        0.317647,
+                        0.317647,
+                        1
+                    ]
+                }
+            },
+            "name": "_0135_DarkGray_"
+        },
+        "ID591": {
+            "instanceTechnique": {
+                "technique": "technique2",
+                "values": {
+                    "diffuse": [
+                        0.2,
+                        0.458824,
+                        0.956863,
+                        0.8
+                    ],
+                    "transparency": 0.8
+                }
+            },
+            "name": "material_2"
+        },
+        "ID707": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0.890196,
+                        0.0431373,
+                        0.180392,
+                        1
+                    ]
+                }
+            },
+            "name": "_0019_Crimson_"
+        },
+        "ID87": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        1,
+                        1,
+                        1,
+                        1
+                    ]
+                }
+            },
+            "name": "material"
+        },
+        "ID997": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "diffuse": [
+                        0,
+                        0.74902,
+                        1,
+                        1
+                    ]
+                }
+            },
+            "name": "_0097_DeepSkyBlue_"
+        }
+    },
+    "meshes": {
+        "ID100": {
+            "name": "ID100",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_300",
+                        "POSITION": "attribute_298"
+                    },
+                    "indices": "indices_296",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1003": {
+            "name": "ID1003",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3062",
+                        "POSITION": "attribute_3060"
+                    },
+                    "indices": "indices_3058",
+                    "material": "ID1005",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1011": {
+            "name": "ID1011",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3082",
+                        "POSITION": "attribute_3080"
+                    },
+                    "indices": "indices_3078",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1017": {
+            "name": "ID1017",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3102",
+                        "POSITION": "attribute_3100"
+                    },
+                    "indices": "indices_3098",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1023": {
+            "name": "ID1023",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3122",
+                        "POSITION": "attribute_3120"
+                    },
+                    "indices": "indices_3118",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1029": {
+            "name": "ID1029",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3142",
+                        "POSITION": "attribute_3140"
+                    },
+                    "indices": "indices_3138",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1035": {
+            "name": "ID1035",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3162",
+                        "POSITION": "attribute_3160"
+                    },
+                    "indices": "indices_3158",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1041": {
+            "name": "ID1041",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3182",
+                        "POSITION": "attribute_3180"
+                    },
+                    "indices": "indices_3178",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1047": {
+            "name": "ID1047",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3202",
+                        "POSITION": "attribute_3200"
+                    },
+                    "indices": "indices_3198",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1053": {
+            "name": "ID1053",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3222",
+                        "POSITION": "attribute_3220"
+                    },
+                    "indices": "indices_3218",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1059": {
+            "name": "ID1059",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3242",
+                        "POSITION": "attribute_3240"
+                    },
+                    "indices": "indices_3238",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1065": {
+            "name": "ID1065",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3262",
+                        "POSITION": "attribute_3260"
+                    },
+                    "indices": "indices_3258",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID107": {
+            "name": "ID107",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_320",
+                        "POSITION": "attribute_318"
+                    },
+                    "indices": "indices_316",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1071": {
+            "name": "ID1071",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3282",
+                        "POSITION": "attribute_3280"
+                    },
+                    "indices": "indices_3278",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1077": {
+            "name": "ID1077",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3302",
+                        "POSITION": "attribute_3300"
+                    },
+                    "indices": "indices_3298",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1083": {
+            "name": "ID1083",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3322",
+                        "POSITION": "attribute_3320"
+                    },
+                    "indices": "indices_3318",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1089": {
+            "name": "ID1089",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3342",
+                        "POSITION": "attribute_3340"
+                    },
+                    "indices": "indices_3338",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1095": {
+            "name": "ID1095",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3362",
+                        "POSITION": "attribute_3360"
+                    },
+                    "indices": "indices_3358",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID11": {
+            "name": "ID11",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_40",
+                        "POSITION": "attribute_38"
+                    },
+                    "indices": "indices_36",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1101": {
+            "name": "ID1101",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3382",
+                        "POSITION": "attribute_3380"
+                    },
+                    "indices": "indices_3378",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1107": {
+            "name": "ID1107",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3402",
+                        "POSITION": "attribute_3400"
+                    },
+                    "indices": "indices_3398",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1113": {
+            "name": "ID1113",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3422",
+                        "POSITION": "attribute_3420"
+                    },
+                    "indices": "indices_3418",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1119": {
+            "name": "ID1119",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3442",
+                        "POSITION": "attribute_3440"
+                    },
+                    "indices": "indices_3438",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1125": {
+            "name": "ID1125",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3462",
+                        "POSITION": "attribute_3460"
+                    },
+                    "indices": "indices_3458",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID113": {
+            "name": "ID113",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_340",
+                        "POSITION": "attribute_338"
+                    },
+                    "indices": "indices_336",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1131": {
+            "name": "ID1131",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3482",
+                        "POSITION": "attribute_3480"
+                    },
+                    "indices": "indices_3478",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1137": {
+            "name": "ID1137",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3502",
+                        "POSITION": "attribute_3500"
+                    },
+                    "indices": "indices_3498",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1143": {
+            "name": "ID1143",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3522",
+                        "POSITION": "attribute_3520"
+                    },
+                    "indices": "indices_3518",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1149": {
+            "name": "ID1149",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3542",
+                        "POSITION": "attribute_3540"
+                    },
+                    "indices": "indices_3538",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1155": {
+            "name": "ID1155",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3562",
+                        "POSITION": "attribute_3560"
+                    },
+                    "indices": "indices_3558",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1161": {
+            "name": "ID1161",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3582",
+                        "POSITION": "attribute_3580"
+                    },
+                    "indices": "indices_3578",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1167": {
+            "name": "ID1167",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3602",
+                        "POSITION": "attribute_3600"
+                    },
+                    "indices": "indices_3598",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1173": {
+            "name": "ID1173",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3622",
+                        "POSITION": "attribute_3620"
+                    },
+                    "indices": "indices_3618",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1179": {
+            "name": "ID1179",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3642",
+                        "POSITION": "attribute_3640"
+                    },
+                    "indices": "indices_3638",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1185": {
+            "name": "ID1185",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3662",
+                        "POSITION": "attribute_3660"
+                    },
+                    "indices": "indices_3658",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID119": {
+            "name": "ID119",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_360",
+                        "POSITION": "attribute_358"
+                    },
+                    "indices": "indices_356",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1191": {
+            "name": "ID1191",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3682",
+                        "POSITION": "attribute_3680"
+                    },
+                    "indices": "indices_3678",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1197": {
+            "name": "ID1197",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3702",
+                        "POSITION": "attribute_3700"
+                    },
+                    "indices": "indices_3698",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1203": {
+            "name": "ID1203",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3722",
+                        "POSITION": "attribute_3720"
+                    },
+                    "indices": "indices_3718",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1209": {
+            "name": "ID1209",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3742",
+                        "POSITION": "attribute_3740"
+                    },
+                    "indices": "indices_3738",
+                    "material": "ID707",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1215": {
+            "name": "ID1215",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3762",
+                        "POSITION": "attribute_3760"
+                    },
+                    "indices": "indices_3758",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1221": {
+            "name": "ID1221",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3782",
+                        "POSITION": "attribute_3780"
+                    },
+                    "indices": "indices_3778",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1227": {
+            "name": "ID1227",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3802",
+                        "POSITION": "attribute_3800"
+                    },
+                    "indices": "indices_3798",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1233": {
+            "name": "ID1233",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3822",
+                        "POSITION": "attribute_3820"
+                    },
+                    "indices": "indices_3818",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1239": {
+            "name": "ID1239",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3842",
+                        "POSITION": "attribute_3840"
+                    },
+                    "indices": "indices_3838",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1245": {
+            "name": "ID1245",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3862",
+                        "POSITION": "attribute_3860"
+                    },
+                    "indices": "indices_3858",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1251": {
+            "name": "ID1251",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3882",
+                        "POSITION": "attribute_3880"
+                    },
+                    "indices": "indices_3878",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1257": {
+            "name": "ID1257",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3902",
+                        "POSITION": "attribute_3900"
+                    },
+                    "indices": "indices_3898",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID126": {
+            "name": "ID126",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_380",
+                        "POSITION": "attribute_378"
+                    },
+                    "indices": "indices_376",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1263": {
+            "name": "ID1263",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3922",
+                        "POSITION": "attribute_3920"
+                    },
+                    "indices": "indices_3918",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1269": {
+            "name": "ID1269",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3942",
+                        "POSITION": "attribute_3940"
+                    },
+                    "indices": "indices_3938",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1275": {
+            "name": "ID1275",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3962",
+                        "POSITION": "attribute_3960"
+                    },
+                    "indices": "indices_3958",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1281": {
+            "name": "ID1281",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3982",
+                        "POSITION": "attribute_3980"
+                    },
+                    "indices": "indices_3978",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1287": {
+            "name": "ID1287",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4002",
+                        "POSITION": "attribute_4000"
+                    },
+                    "indices": "indices_3998",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1293": {
+            "name": "ID1293",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4022",
+                        "POSITION": "attribute_4020"
+                    },
+                    "indices": "indices_4018",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1299": {
+            "name": "ID1299",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4042",
+                        "POSITION": "attribute_4040"
+                    },
+                    "indices": "indices_4038",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1305": {
+            "name": "ID1305",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4062",
+                        "POSITION": "attribute_4060"
+                    },
+                    "indices": "indices_4058",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1311": {
+            "name": "ID1311",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4082",
+                        "POSITION": "attribute_4080"
+                    },
+                    "indices": "indices_4078",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1317": {
+            "name": "ID1317",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4102",
+                        "POSITION": "attribute_4100"
+                    },
+                    "indices": "indices_4098",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID132": {
+            "name": "ID132",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_400",
+                        "POSITION": "attribute_398"
+                    },
+                    "indices": "indices_396",
+                    "material": "ID134",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1323": {
+            "name": "ID1323",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4122",
+                        "POSITION": "attribute_4120"
+                    },
+                    "indices": "indices_4118",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1329": {
+            "name": "ID1329",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4142",
+                        "POSITION": "attribute_4140"
+                    },
+                    "indices": "indices_4138",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1335": {
+            "name": "ID1335",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4162",
+                        "POSITION": "attribute_4160"
+                    },
+                    "indices": "indices_4158",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1341": {
+            "name": "ID1341",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4182",
+                        "POSITION": "attribute_4180"
+                    },
+                    "indices": "indices_4178",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1347": {
+            "name": "ID1347",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4202",
+                        "POSITION": "attribute_4200"
+                    },
+                    "indices": "indices_4198",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1353": {
+            "name": "ID1353",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4222",
+                        "POSITION": "attribute_4220"
+                    },
+                    "indices": "indices_4218",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1359": {
+            "name": "ID1359",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4242",
+                        "POSITION": "attribute_4240"
+                    },
+                    "indices": "indices_4238",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1365": {
+            "name": "ID1365",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4262",
+                        "POSITION": "attribute_4260"
+                    },
+                    "indices": "indices_4258",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1371": {
+            "name": "ID1371",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4282",
+                        "POSITION": "attribute_4280"
+                    },
+                    "indices": "indices_4278",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1377": {
+            "name": "ID1377",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4302",
+                        "POSITION": "attribute_4300"
+                    },
+                    "indices": "indices_4298",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1383": {
+            "name": "ID1383",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4322",
+                        "POSITION": "attribute_4320"
+                    },
+                    "indices": "indices_4318",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1389": {
+            "name": "ID1389",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4342",
+                        "POSITION": "attribute_4340"
+                    },
+                    "indices": "indices_4338",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1395": {
+            "name": "ID1395",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4362",
+                        "POSITION": "attribute_4360"
+                    },
+                    "indices": "indices_4358",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID140": {
+            "name": "ID140",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_420",
+                        "POSITION": "attribute_418"
+                    },
+                    "indices": "indices_416",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1401": {
+            "name": "ID1401",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4382",
+                        "POSITION": "attribute_4380"
+                    },
+                    "indices": "indices_4378",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1407": {
+            "name": "ID1407",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4402",
+                        "POSITION": "attribute_4400"
+                    },
+                    "indices": "indices_4398",
+                    "material": "ID997",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1413": {
+            "name": "ID1413",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4422",
+                        "POSITION": "attribute_4420"
+                    },
+                    "indices": "indices_4418",
+                    "material": "ID1005",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1419": {
+            "name": "ID1419",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4442",
+                        "POSITION": "attribute_4440"
+                    },
+                    "indices": "indices_4438",
+                    "material": "ID346",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1425": {
+            "name": "ID1425",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4462",
+                        "POSITION": "attribute_4460"
+                    },
+                    "indices": "indices_4458",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1431": {
+            "name": "ID1431",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4482",
+                        "POSITION": "attribute_4480"
+                    },
+                    "indices": "indices_4478",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1437": {
+            "name": "ID1437",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4502",
+                        "POSITION": "attribute_4500"
+                    },
+                    "indices": "indices_4498",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1443": {
+            "name": "ID1443",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4522",
+                        "POSITION": "attribute_4520"
+                    },
+                    "indices": "indices_4518",
+                    "material": "ID591",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1449": {
+            "name": "ID1449",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4542",
+                        "POSITION": "attribute_4540"
+                    },
+                    "indices": "indices_4538",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1455": {
+            "name": "ID1455",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4562",
+                        "POSITION": "attribute_4560"
+                    },
+                    "indices": "indices_4558",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1461": {
+            "name": "ID1461",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4582",
+                        "POSITION": "attribute_4580"
+                    },
+                    "indices": "indices_4578",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1467": {
+            "name": "ID1467",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4602",
+                        "POSITION": "attribute_4600"
+                    },
+                    "indices": "indices_4598",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1473": {
+            "name": "ID1473",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4622",
+                        "POSITION": "attribute_4620"
+                    },
+                    "indices": "indices_4618",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1479": {
+            "name": "ID1479",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4642",
+                        "POSITION": "attribute_4640"
+                    },
+                    "indices": "indices_4638",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID148": {
+            "name": "ID148",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_440",
+                        "POSITION": "attribute_438"
+                    },
+                    "indices": "indices_436",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1485": {
+            "name": "ID1485",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4662",
+                        "POSITION": "attribute_4660"
+                    },
+                    "indices": "indices_4658",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1491": {
+            "name": "ID1491",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4682",
+                        "POSITION": "attribute_4680"
+                    },
+                    "indices": "indices_4678",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1497": {
+            "name": "ID1497",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4702",
+                        "POSITION": "attribute_4700"
+                    },
+                    "indices": "indices_4698",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1503": {
+            "name": "ID1503",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4722",
+                        "POSITION": "attribute_4720"
+                    },
+                    "indices": "indices_4718",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1509": {
+            "name": "ID1509",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4742",
+                        "POSITION": "attribute_4740"
+                    },
+                    "indices": "indices_4738",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1515": {
+            "name": "ID1515",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4762",
+                        "POSITION": "attribute_4760"
+                    },
+                    "indices": "indices_4758",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1521": {
+            "name": "ID1521",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4782",
+                        "POSITION": "attribute_4780"
+                    },
+                    "indices": "indices_4778",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1527": {
+            "name": "ID1527",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4802",
+                        "POSITION": "attribute_4800"
+                    },
+                    "indices": "indices_4798",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1533": {
+            "name": "ID1533",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4822",
+                        "POSITION": "attribute_4820"
+                    },
+                    "indices": "indices_4818",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID154": {
+            "name": "ID154",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_460",
+                        "POSITION": "attribute_458"
+                    },
+                    "indices": "indices_456",
+                    "material": "ID156",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID162": {
+            "name": "ID162",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_480",
+                        "POSITION": "attribute_478"
+                    },
+                    "indices": "indices_476",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID170": {
+            "name": "ID170",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_500",
+                        "POSITION": "attribute_498"
+                    },
+                    "indices": "indices_496",
+                    "material": "ID172",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID178": {
+            "name": "ID178",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_520",
+                        "POSITION": "attribute_518"
+                    },
+                    "indices": "indices_516",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID184": {
+            "name": "ID184",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_540",
+                        "POSITION": "attribute_538"
+                    },
+                    "indices": "indices_536",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID19": {
+            "name": "ID19",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_60",
+                        "POSITION": "attribute_58"
+                    },
+                    "indices": "indices_56",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID190": {
+            "name": "ID190",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_560",
+                        "POSITION": "attribute_558"
+                    },
+                    "indices": "indices_556",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID197": {
+            "name": "ID197",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_580",
+                        "POSITION": "attribute_578"
+                    },
+                    "indices": "indices_576",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID203": {
+            "name": "ID203",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_600",
+                        "POSITION": "attribute_598"
+                    },
+                    "indices": "indices_596",
+                    "material": "ID134",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID209": {
+            "name": "ID209",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_620",
+                        "POSITION": "attribute_618"
+                    },
+                    "indices": "indices_616",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID215": {
+            "name": "ID215",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_640",
+                        "POSITION": "attribute_638"
+                    },
+                    "indices": "indices_636",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID221": {
+            "name": "ID221",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_660",
+                        "POSITION": "attribute_658"
+                    },
+                    "indices": "indices_656",
+                    "material": "ID156",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID227": {
+            "name": "ID227",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_680",
+                        "POSITION": "attribute_678"
+                    },
+                    "indices": "indices_676",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID233": {
+            "name": "ID233",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_700",
+                        "POSITION": "attribute_698"
+                    },
+                    "indices": "indices_696",
+                    "material": "ID172",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID239": {
+            "name": "ID239",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_720",
+                        "POSITION": "attribute_718"
+                    },
+                    "indices": "indices_716",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID245": {
+            "name": "ID245",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_740",
+                        "POSITION": "attribute_738"
+                    },
+                    "indices": "indices_736",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID251": {
+            "name": "ID251",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_760",
+                        "POSITION": "attribute_758"
+                    },
+                    "indices": "indices_756",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID259": {
+            "name": "ID259",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_780",
+                        "POSITION": "attribute_778"
+                    },
+                    "indices": "indices_776",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID265": {
+            "name": "ID265",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_800",
+                        "POSITION": "attribute_798"
+                    },
+                    "indices": "indices_796",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID271": {
+            "name": "ID271",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_820",
+                        "POSITION": "attribute_818"
+                    },
+                    "indices": "indices_816",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID277": {
+            "name": "ID277",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_840",
+                        "POSITION": "attribute_838"
+                    },
+                    "indices": "indices_836",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID28": {
+            "name": "ID28",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_80",
+                        "POSITION": "attribute_78"
+                    },
+                    "indices": "indices_76",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID283": {
+            "name": "ID283",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_860",
+                        "POSITION": "attribute_858"
+                    },
+                    "indices": "indices_856",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID289": {
+            "name": "ID289",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_880",
+                        "POSITION": "attribute_878"
+                    },
+                    "indices": "indices_876",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID296": {
+            "name": "ID296",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_900",
+                        "POSITION": "attribute_898"
+                    },
+                    "indices": "indices_896",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3": {
+            "name": "ID3",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_20",
+                        "POSITION": "attribute_18"
+                    },
+                    "indices": "indices_16",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID302": {
+            "name": "ID302",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_920",
+                        "POSITION": "attribute_918"
+                    },
+                    "indices": "indices_916",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID310": {
+            "name": "ID310",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_940",
+                        "POSITION": "attribute_938"
+                    },
+                    "indices": "indices_936",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID316": {
+            "name": "ID316",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_960",
+                        "POSITION": "attribute_958"
+                    },
+                    "indices": "indices_956",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID324": {
+            "name": "ID324",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_980",
+                        "POSITION": "attribute_978"
+                    },
+                    "indices": "indices_976",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID330": {
+            "name": "ID330",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1000",
+                        "POSITION": "attribute_998"
+                    },
+                    "indices": "indices_996",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID336": {
+            "name": "ID336",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1020",
+                        "POSITION": "attribute_1018"
+                    },
+                    "indices": "indices_1016",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID34": {
+            "name": "ID34",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_100",
+                        "POSITION": "attribute_98"
+                    },
+                    "indices": "indices_96",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID344": {
+            "name": "ID344",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1040",
+                        "POSITION": "attribute_1038"
+                    },
+                    "indices": "indices_1036",
+                    "material": "ID346",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID352": {
+            "name": "ID352",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1060",
+                        "POSITION": "attribute_1058"
+                    },
+                    "indices": "indices_1056",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID386": {
+            "name": "ID386",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1086",
+                        "POSITION": "attribute_1084"
+                    },
+                    "indices": "indices_1082",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID392": {
+            "name": "ID392",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1106",
+                        "POSITION": "attribute_1104"
+                    },
+                    "indices": "indices_1102",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID398": {
+            "name": "ID398",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1126",
+                        "POSITION": "attribute_1124"
+                    },
+                    "indices": "indices_1122",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID40": {
+            "name": "ID40",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_120",
+                        "POSITION": "attribute_118"
+                    },
+                    "indices": "indices_116",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID404": {
+            "name": "ID404",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1146",
+                        "POSITION": "attribute_1144"
+                    },
+                    "indices": "indices_1142",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID410": {
+            "name": "ID410",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1166",
+                        "POSITION": "attribute_1164"
+                    },
+                    "indices": "indices_1162",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID416": {
+            "name": "ID416",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1186",
+                        "POSITION": "attribute_1184"
+                    },
+                    "indices": "indices_1182",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID423": {
+            "name": "ID423",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1206",
+                        "POSITION": "attribute_1204"
+                    },
+                    "indices": "indices_1202",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID429": {
+            "name": "ID429",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1226",
+                        "POSITION": "attribute_1224"
+                    },
+                    "indices": "indices_1222",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID435": {
+            "name": "ID435",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1246",
+                        "POSITION": "attribute_1244"
+                    },
+                    "indices": "indices_1242",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID441": {
+            "name": "ID441",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1266",
+                        "POSITION": "attribute_1264"
+                    },
+                    "indices": "indices_1262",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID447": {
+            "name": "ID447",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1286",
+                        "POSITION": "attribute_1284"
+                    },
+                    "indices": "indices_1282",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID453": {
+            "name": "ID453",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1306",
+                        "POSITION": "attribute_1304"
+                    },
+                    "indices": "indices_1302",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID459": {
+            "name": "ID459",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1326",
+                        "POSITION": "attribute_1324"
+                    },
+                    "indices": "indices_1322",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID465": {
+            "name": "ID465",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1346",
+                        "POSITION": "attribute_1344"
+                    },
+                    "indices": "indices_1342",
+                    "material": "ID346",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID47": {
+            "name": "ID47",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_140",
+                        "POSITION": "attribute_138"
+                    },
+                    "indices": "indices_136",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID471": {
+            "name": "ID471",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1366",
+                        "POSITION": "attribute_1364"
+                    },
+                    "indices": "indices_1362",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID502": {
+            "name": "ID502",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1392",
+                        "POSITION": "attribute_1390"
+                    },
+                    "indices": "indices_1388",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID508": {
+            "name": "ID508",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1412",
+                        "POSITION": "attribute_1410"
+                    },
+                    "indices": "indices_1408",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID514": {
+            "name": "ID514",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1432",
+                        "POSITION": "attribute_1430"
+                    },
+                    "indices": "indices_1428",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID520": {
+            "name": "ID520",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1452",
+                        "POSITION": "attribute_1450"
+                    },
+                    "indices": "indices_1448",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID526": {
+            "name": "ID526",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1472",
+                        "POSITION": "attribute_1470"
+                    },
+                    "indices": "indices_1468",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID53": {
+            "name": "ID53",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_160",
+                        "POSITION": "attribute_158"
+                    },
+                    "indices": "indices_156",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID534": {
+            "name": "ID534",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1492",
+                        "POSITION": "attribute_1490"
+                    },
+                    "indices": "indices_1488",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID540": {
+            "name": "ID540",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1512",
+                        "POSITION": "attribute_1510"
+                    },
+                    "indices": "indices_1508",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID547": {
+            "name": "ID547",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1532",
+                        "POSITION": "attribute_1530"
+                    },
+                    "indices": "indices_1528",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID553": {
+            "name": "ID553",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1552",
+                        "POSITION": "attribute_1550"
+                    },
+                    "indices": "indices_1548",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID559": {
+            "name": "ID559",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1572",
+                        "POSITION": "attribute_1570"
+                    },
+                    "indices": "indices_1568",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID565": {
+            "name": "ID565",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1592",
+                        "POSITION": "attribute_1590"
+                    },
+                    "indices": "indices_1588",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID571": {
+            "name": "ID571",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1612",
+                        "POSITION": "attribute_1610"
+                    },
+                    "indices": "indices_1608",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID577": {
+            "name": "ID577",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1632",
+                        "POSITION": "attribute_1630"
+                    },
+                    "indices": "indices_1628",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID583": {
+            "name": "ID583",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1652",
+                        "POSITION": "attribute_1650"
+                    },
+                    "indices": "indices_1648",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID589": {
+            "name": "ID589",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1672",
+                        "POSITION": "attribute_1670"
+                    },
+                    "indices": "indices_1668",
+                    "material": "ID591",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID59": {
+            "name": "ID59",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_180",
+                        "POSITION": "attribute_178"
+                    },
+                    "indices": "indices_176",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID597": {
+            "name": "ID597",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1692",
+                        "POSITION": "attribute_1690"
+                    },
+                    "indices": "indices_1688",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID603": {
+            "name": "ID603",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1712",
+                        "POSITION": "attribute_1710"
+                    },
+                    "indices": "indices_1708",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID609": {
+            "name": "ID609",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1732",
+                        "POSITION": "attribute_1730"
+                    },
+                    "indices": "indices_1728",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID615": {
+            "name": "ID615",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1752",
+                        "POSITION": "attribute_1750"
+                    },
+                    "indices": "indices_1748",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID621": {
+            "name": "ID621",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1772",
+                        "POSITION": "attribute_1770"
+                    },
+                    "indices": "indices_1768",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID627": {
+            "name": "ID627",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1792",
+                        "POSITION": "attribute_1790"
+                    },
+                    "indices": "indices_1788",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID633": {
+            "name": "ID633",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1812",
+                        "POSITION": "attribute_1810"
+                    },
+                    "indices": "indices_1808",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID639": {
+            "name": "ID639",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1832",
+                        "POSITION": "attribute_1830"
+                    },
+                    "indices": "indices_1828",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID645": {
+            "name": "ID645",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1852",
+                        "POSITION": "attribute_1850"
+                    },
+                    "indices": "indices_1848",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID651": {
+            "name": "ID651",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1872",
+                        "POSITION": "attribute_1870"
+                    },
+                    "indices": "indices_1868",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID657": {
+            "name": "ID657",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1907",
+                        "POSITION": "attribute_1905"
+                    },
+                    "indices": "indices_1900",
+                    "material": "ID304",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1907",
+                        "POSITION": "attribute_1905"
+                    },
+                    "indices": "indices_1903",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID66": {
+            "name": "ID66",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_200",
+                        "POSITION": "attribute_198"
+                    },
+                    "indices": "indices_196",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID663": {
+            "name": "ID663",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1927",
+                        "POSITION": "attribute_1925"
+                    },
+                    "indices": "indices_1923",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID669": {
+            "name": "ID669",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1947",
+                        "POSITION": "attribute_1945"
+                    },
+                    "indices": "indices_1943",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID675": {
+            "name": "ID675",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1982",
+                        "POSITION": "attribute_1980"
+                    },
+                    "indices": "indices_1975",
+                    "material": "ID304",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1982",
+                        "POSITION": "attribute_1980"
+                    },
+                    "indices": "indices_1978",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID681": {
+            "name": "ID681",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2002",
+                        "POSITION": "attribute_2000"
+                    },
+                    "indices": "indices_1998",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID687": {
+            "name": "ID687",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2022",
+                        "POSITION": "attribute_2020"
+                    },
+                    "indices": "indices_2018",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID693": {
+            "name": "ID693",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2042",
+                        "POSITION": "attribute_2040"
+                    },
+                    "indices": "indices_2038",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID699": {
+            "name": "ID699",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2062",
+                        "POSITION": "attribute_2060"
+                    },
+                    "indices": "indices_2058",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID705": {
+            "name": "ID705",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2082",
+                        "POSITION": "attribute_2080"
+                    },
+                    "indices": "indices_2078",
+                    "material": "ID707",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID713": {
+            "name": "ID713",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2102",
+                        "POSITION": "attribute_2100"
+                    },
+                    "indices": "indices_2098",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID719": {
+            "name": "ID719",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2122",
+                        "POSITION": "attribute_2120"
+                    },
+                    "indices": "indices_2118",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID72": {
+            "name": "ID72",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_220",
+                        "POSITION": "attribute_218"
+                    },
+                    "indices": "indices_216",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID725": {
+            "name": "ID725",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2142",
+                        "POSITION": "attribute_2140"
+                    },
+                    "indices": "indices_2138",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID731": {
+            "name": "ID731",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2162",
+                        "POSITION": "attribute_2160"
+                    },
+                    "indices": "indices_2158",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID737": {
+            "name": "ID737",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2182",
+                        "POSITION": "attribute_2180"
+                    },
+                    "indices": "indices_2178",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID743": {
+            "name": "ID743",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2202",
+                        "POSITION": "attribute_2200"
+                    },
+                    "indices": "indices_2198",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID749": {
+            "name": "ID749",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2222",
+                        "POSITION": "attribute_2220"
+                    },
+                    "indices": "indices_2218",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID755": {
+            "name": "ID755",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2242",
+                        "POSITION": "attribute_2240"
+                    },
+                    "indices": "indices_2238",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID761": {
+            "name": "ID761",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2262",
+                        "POSITION": "attribute_2260"
+                    },
+                    "indices": "indices_2258",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID767": {
+            "name": "ID767",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2282",
+                        "POSITION": "attribute_2280"
+                    },
+                    "indices": "indices_2278",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID773": {
+            "name": "ID773",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2302",
+                        "POSITION": "attribute_2300"
+                    },
+                    "indices": "indices_2298",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID779": {
+            "name": "ID779",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2322",
+                        "POSITION": "attribute_2320"
+                    },
+                    "indices": "indices_2318",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID78": {
+            "name": "ID78",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_240",
+                        "POSITION": "attribute_238"
+                    },
+                    "indices": "indices_236",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID785": {
+            "name": "ID785",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2342",
+                        "POSITION": "attribute_2340"
+                    },
+                    "indices": "indices_2338",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID791": {
+            "name": "ID791",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2362",
+                        "POSITION": "attribute_2360"
+                    },
+                    "indices": "indices_2358",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID797": {
+            "name": "ID797",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2382",
+                        "POSITION": "attribute_2380"
+                    },
+                    "indices": "indices_2378",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID803": {
+            "name": "ID803",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2402",
+                        "POSITION": "attribute_2400"
+                    },
+                    "indices": "indices_2398",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID809": {
+            "name": "ID809",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2422",
+                        "POSITION": "attribute_2420"
+                    },
+                    "indices": "indices_2418",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID815": {
+            "name": "ID815",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2442",
+                        "POSITION": "attribute_2440"
+                    },
+                    "indices": "indices_2438",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID821": {
+            "name": "ID821",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2462",
+                        "POSITION": "attribute_2460"
+                    },
+                    "indices": "indices_2458",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID827": {
+            "name": "ID827",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2482",
+                        "POSITION": "attribute_2480"
+                    },
+                    "indices": "indices_2478",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID833": {
+            "name": "ID833",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2502",
+                        "POSITION": "attribute_2500"
+                    },
+                    "indices": "indices_2498",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID839": {
+            "name": "ID839",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2522",
+                        "POSITION": "attribute_2520"
+                    },
+                    "indices": "indices_2518",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID845": {
+            "name": "ID845",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2542",
+                        "POSITION": "attribute_2540"
+                    },
+                    "indices": "indices_2538",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID851": {
+            "name": "ID851",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2562",
+                        "POSITION": "attribute_2560"
+                    },
+                    "indices": "indices_2558",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID857": {
+            "name": "ID857",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2582",
+                        "POSITION": "attribute_2580"
+                    },
+                    "indices": "indices_2578",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID86": {
+            "name": "ID86",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_260",
+                        "POSITION": "attribute_258"
+                    },
+                    "indices": "indices_256",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID863": {
+            "name": "ID863",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2602",
+                        "POSITION": "attribute_2600"
+                    },
+                    "indices": "indices_2598",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID869": {
+            "name": "ID869",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2622",
+                        "POSITION": "attribute_2620"
+                    },
+                    "indices": "indices_2618",
+                    "material": "ID707",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID875": {
+            "name": "ID875",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2642",
+                        "POSITION": "attribute_2640"
+                    },
+                    "indices": "indices_2638",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID881": {
+            "name": "ID881",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2662",
+                        "POSITION": "attribute_2660"
+                    },
+                    "indices": "indices_2658",
+                    "material": "ID346",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID887": {
+            "name": "ID887",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2682",
+                        "POSITION": "attribute_2680"
+                    },
+                    "indices": "indices_2678",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID893": {
+            "name": "ID893",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2702",
+                        "POSITION": "attribute_2700"
+                    },
+                    "indices": "indices_2698",
+                    "material": "ID13",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID899": {
+            "name": "ID899",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2722",
+                        "POSITION": "attribute_2720"
+                    },
+                    "indices": "indices_2718",
+                    "material": "ID528",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID905": {
+            "name": "ID905",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2742",
+                        "POSITION": "attribute_2740"
+                    },
+                    "indices": "indices_2738",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID911": {
+            "name": "ID911",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2762",
+                        "POSITION": "attribute_2760"
+                    },
+                    "indices": "indices_2758",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID917": {
+            "name": "ID917",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2782",
+                        "POSITION": "attribute_2780"
+                    },
+                    "indices": "indices_2778",
+                    "material": "ID318",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID923": {
+            "name": "ID923",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2802",
+                        "POSITION": "attribute_2800"
+                    },
+                    "indices": "indices_2798",
+                    "material": "ID304",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID929": {
+            "name": "ID929",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2822",
+                        "POSITION": "attribute_2820"
+                    },
+                    "indices": "indices_2818",
+                    "material": "ID142",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID935": {
+            "name": "ID935",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2842",
+                        "POSITION": "attribute_2840"
+                    },
+                    "indices": "indices_2838",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID94": {
+            "name": "ID94",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_280",
+                        "POSITION": "attribute_278"
+                    },
+                    "indices": "indices_276",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID941": {
+            "name": "ID941",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2862",
+                        "POSITION": "attribute_2860"
+                    },
+                    "indices": "indices_2858",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID947": {
+            "name": "ID947",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2882",
+                        "POSITION": "attribute_2880"
+                    },
+                    "indices": "indices_2878",
+                    "material": "ID591",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID953": {
+            "name": "ID953",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2902",
+                        "POSITION": "attribute_2900"
+                    },
+                    "indices": "indices_2898",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID959": {
+            "name": "ID959",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2922",
+                        "POSITION": "attribute_2920"
+                    },
+                    "indices": "indices_2918",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID965": {
+            "name": "ID965",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2942",
+                        "POSITION": "attribute_2940"
+                    },
+                    "indices": "indices_2938",
+                    "material": "ID338",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID971": {
+            "name": "ID971",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2962",
+                        "POSITION": "attribute_2960"
+                    },
+                    "indices": "indices_2958",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID977": {
+            "name": "ID977",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2982",
+                        "POSITION": "attribute_2980"
+                    },
+                    "indices": "indices_2978",
+                    "material": "ID164",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID983": {
+            "name": "ID983",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3002",
+                        "POSITION": "attribute_3000"
+                    },
+                    "indices": "indices_2998",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID989": {
+            "name": "ID989",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3022",
+                        "POSITION": "attribute_3020"
+                    },
+                    "indices": "indices_3018",
+                    "material": "ID87",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID995": {
+            "name": "ID995",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3042",
+                        "POSITION": "attribute_3040"
+                    },
+                    "indices": "indices_3038",
+                    "material": "ID997",
+                    "primitive": 4
+                }
+            ]
+        }
+    },
+    "nodes": {
+        "ID106": {
+            "children": [],
+            "matrix": [
+                0.853886,
+                0,
+                0,
+                0,
+                0,
+                1.2988,
+                0,
+                0,
+                0,
+                0,
+                1.09294,
+                0,
+                798.569,
+                313.289,
+                57.6848,
+                1
+            ],
+            "meshes": [
+                "ID107",
+                "ID113",
+                "ID119"
+            ],
+            "name": "group_6"
+        },
+        "ID125": {
+            "children": [],
+            "matrix": [
+                1.092,
+                0,
+                0,
+                0,
+                0,
+                0.852713,
+                0,
+                0,
+                0,
+                0,
+                1.092,
+                0,
+                634.269,
+                1782.4,
+                151.574,
+                1
+            ],
+            "meshes": [
+                "ID126",
+                "ID132",
+                "ID140",
+                "ID148",
+                "ID154",
+                "ID162",
+                "ID170",
+                "ID178",
+                "ID184",
+                "ID190"
+            ],
+            "name": "group_7"
+        },
+        "ID196": {
+            "children": [],
+            "matrix": [
+                1.092,
+                0,
+                0,
+                0,
+                0,
+                0.852713,
+                0,
+                0,
+                0,
+                0,
+                1.092,
+                0,
+                634.269,
+                1782.4,
+                15.9805,
+                1
+            ],
+            "meshes": [
+                "ID197",
+                "ID203",
+                "ID209",
+                "ID215",
+                "ID221",
+                "ID227",
+                "ID233",
+                "ID239",
+                "ID245",
+                "ID251"
+            ],
+            "name": "group_8"
+        },
+        "ID2": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                87.7551,
+                2029.28,
+                675.67,
+                1
+            ],
+            "meshes": [
+                "ID3",
+                "ID11",
+                "ID19"
+            ],
+            "name": "group_0"
+        },
+        "ID257": {
+            "children": [
+                "ID258",
+                "ID295"
+            ],
+            "matrix": [
+                -1.2584,
+                0,
+                0,
+                0,
+                0,
+                1.18775,
+                0,
+                0,
+                0,
+                0,
+                1.1752,
+                0,
+                593.986,
+                1409.32,
+                168.797,
+                1
+            ],
+            "name": "group_9"
+        },
+        "ID258": {
+            "children": [],
+            "matrix": [
+                0.9563,
+                0,
+                0,
+                0,
+                0,
+                1.36,
+                0,
+                0,
+                0,
+                0,
+                1.14,
+                0,
+                109.969,
+                276.255,
+                72.0553,
+                1
+            ],
+            "meshes": [
+                "ID259",
+                "ID265",
+                "ID271",
+                "ID277",
+                "ID283",
+                "ID289"
+            ],
+            "name": "group_10"
+        },
+        "ID27": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                87.7551,
+                2029.28,
+                605.532,
+                1
+            ],
+            "meshes": [
+                "ID28",
+                "ID34",
+                "ID40"
+            ],
+            "name": "group_1"
+        },
+        "ID295": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "ID296",
+                "ID302",
+                "ID310",
+                "ID316",
+                "ID324",
+                "ID330",
+                "ID336",
+                "ID344",
+                "ID352"
+            ],
+            "name": "group_11"
+        },
+        "ID384": {
+            "children": [
+                "ID385",
+                "ID422"
+            ],
+            "matrix": [
+                1.2584,
+                0,
+                0,
+                0,
+                0,
+                1.18775,
+                0,
+                0,
+                0,
+                0,
+                1.1752,
+                0,
+                803.142,
+                1409.32,
+                168.797,
+                1
+            ],
+            "name": "group_12"
+        },
+        "ID385": {
+            "children": [],
+            "matrix": [
+                0.9563,
+                0,
+                0,
+                0,
+                0,
+                1.36,
+                0,
+                0,
+                0,
+                0,
+                1.14,
+                0,
+                109.969,
+                276.255,
+                72.0553,
+                1
+            ],
+            "meshes": [
+                "ID386",
+                "ID392",
+                "ID398",
+                "ID404",
+                "ID410",
+                "ID416"
+            ],
+            "name": "group_10"
+        },
+        "ID422": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "ID423",
+                "ID429",
+                "ID435",
+                "ID441",
+                "ID447",
+                "ID453",
+                "ID459",
+                "ID465",
+                "ID471"
+            ],
+            "name": "group_11"
+        },
+        "ID46": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                -278.368,
+                2029.28,
+                605.532,
+                1
+            ],
+            "meshes": [
+                "ID47",
+                "ID53",
+                "ID59"
+            ],
+            "name": "group_2"
+        },
+        "ID501": {
+            "children": [],
+            "matrix": [
+                0.708725,
+                0,
+                0,
+                0,
+                0,
+                1.14655,
+                0,
+                0,
+                0,
+                0,
+                0.819702,
+                0,
+                776.429,
+                211.16,
+                18.0021,
+                1
+            ],
+            "meshes": [
+                "ID502",
+                "ID508",
+                "ID514",
+                "ID520",
+                "ID526",
+                "ID534",
+                "ID540"
+            ],
+            "name": "group_13"
+        },
+        "ID546": {
+            "children": [],
+            "matrix": [
+                -0.708725,
+                0,
+                0,
+                0,
+                0,
+                1.14655,
+                0,
+                0,
+                0,
+                0,
+                0.819702,
+                0,
+                620.699,
+                211.16,
+                18.0021,
+                1
+            ],
+            "meshes": [
+                "ID547",
+                "ID553",
+                "ID559",
+                "ID565",
+                "ID571",
+                "ID577",
+                "ID583"
+            ],
+            "name": "group_14"
+        },
+        "ID65": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                -278.368,
+                2029.28,
+                675.67,
+                1
+            ],
+            "meshes": [
+                "ID66",
+                "ID72",
+                "ID78"
+            ],
+            "name": "group_3"
+        },
+        "ID84": {
+            "children": [
+                "ID85",
+                "ID106",
+                "ID125",
+                "ID196",
+                "ID257",
+                "ID384",
+                "ID501",
+                "ID546"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                -704.026,
+                292.137,
+                586.039,
+                1
+            ],
+            "meshes": [
+                "ID589",
+                "ID597",
+                "ID603",
+                "ID609",
+                "ID615",
+                "ID621",
+                "ID627",
+                "ID633",
+                "ID639",
+                "ID645",
+                "ID651",
+                "ID657",
+                "ID663",
+                "ID669",
+                "ID675",
+                "ID681",
+                "ID687",
+                "ID693",
+                "ID699",
+                "ID705",
+                "ID713",
+                "ID719",
+                "ID725",
+                "ID731",
+                "ID737",
+                "ID743",
+                "ID749",
+                "ID755",
+                "ID761",
+                "ID767",
+                "ID773",
+                "ID779",
+                "ID785",
+                "ID791",
+                "ID797",
+                "ID803",
+                "ID809",
+                "ID815",
+                "ID821",
+                "ID827",
+                "ID833",
+                "ID839",
+                "ID845",
+                "ID851",
+                "ID857",
+                "ID863",
+                "ID869",
+                "ID875",
+                "ID881",
+                "ID887",
+                "ID893",
+                "ID899",
+                "ID905",
+                "ID911",
+                "ID917",
+                "ID923",
+                "ID929",
+                "ID935",
+                "ID941",
+                "ID947",
+                "ID953",
+                "ID959",
+                "ID965",
+                "ID971",
+                "ID977",
+                "ID983",
+                "ID989",
+                "ID995",
+                "ID1003",
+                "ID1011",
+                "ID1017",
+                "ID1023",
+                "ID1029",
+                "ID1035",
+                "ID1041",
+                "ID1047",
+                "ID1053",
+                "ID1059",
+                "ID1065",
+                "ID1071",
+                "ID1077",
+                "ID1083",
+                "ID1089",
+                "ID1095",
+                "ID1101",
+                "ID1107",
+                "ID1113",
+                "ID1119",
+                "ID1125",
+                "ID1131",
+                "ID1137",
+                "ID1143",
+                "ID1149",
+                "ID1155",
+                "ID1161",
+                "ID1167",
+                "ID1173",
+                "ID1179",
+                "ID1185",
+                "ID1191",
+                "ID1197",
+                "ID1203",
+                "ID1209",
+                "ID1215",
+                "ID1221",
+                "ID1227",
+                "ID1233",
+                "ID1239",
+                "ID1245",
+                "ID1251",
+                "ID1257",
+                "ID1263",
+                "ID1269",
+                "ID1275",
+                "ID1281",
+                "ID1287",
+                "ID1293",
+                "ID1299",
+                "ID1305",
+                "ID1311",
+                "ID1317",
+                "ID1323",
+                "ID1329",
+                "ID1335",
+                "ID1341",
+                "ID1347",
+                "ID1353",
+                "ID1359",
+                "ID1365",
+                "ID1371",
+                "ID1377",
+                "ID1383",
+                "ID1389",
+                "ID1395",
+                "ID1401",
+                "ID1407",
+                "ID1413",
+                "ID1419",
+                "ID1425",
+                "ID1431",
+                "ID1437",
+                "ID1443",
+                "ID1449",
+                "ID1455",
+                "ID1461",
+                "ID1467",
+                "ID1473",
+                "ID1479",
+                "ID1485",
+                "ID1491",
+                "ID1497",
+                "ID1503",
+                "ID1509",
+                "ID1515",
+                "ID1521",
+                "ID1527",
+                "ID1533"
+            ],
+            "name": "group_4"
+        },
+        "ID85": {
+            "children": [],
+            "matrix": [
+                -0.853886,
+                0,
+                0,
+                0,
+                0,
+                1.2988,
+                0,
+                0,
+                0,
+                0,
+                1.09294,
+                0,
+                598.558,
+                313.289,
+                57.6848,
+                1
+            ],
+            "meshes": [
+                "ID86",
+                "ID94",
+                "ID100"
+            ],
+            "name": "group_5"
+        },
+        "node_0": {
+            "children": [
+                "ID2",
+                "ID27",
+                "ID46",
+                "ID65",
+                "ID84"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "SketchUp"
+        }
+    },
+    "profile": "WebGL 1.0.2",
+    "programs": {
+        "program_0": {
+            "attributes": [
+                "a_normal",
+                "a_position"
+            ],
+            "fragmentShader": "SuperMurdoch0FS",
+            "vertexShader": "SuperMurdoch0VS"
+        },
+        "program_1": {
+            "attributes": [
+                "a_normal",
+                "a_position"
+            ],
+            "fragmentShader": "SuperMurdoch2FS",
+            "vertexShader": "SuperMurdoch2VS"
+        }
+    },
+    "scene": "defaultScene",
+    "scenes": {
+        "defaultScene": {
+            "nodes": [
+                "node_0"
+            ]
+        }
+    },
+    "shaders": {
+        "SuperMurdoch0FS": {
+            "path": "SuperMurdoch0FS.glsl"
+        },
+        "SuperMurdoch0VS": {
+            "path": "SuperMurdoch0VS.glsl"
+        },
+        "SuperMurdoch2FS": {
+            "path": "SuperMurdoch2FS.glsl"
+        },
+        "SuperMurdoch2VS": {
+            "path": "SuperMurdoch2VS.glsl"
+        }
+    },
+    "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
+                    }
+                }
+            }
+        },
+        "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
+                },
+                "transparency": {
+                    "type": 5126
+                }
+            },
+            "pass": "defaultPass",
+            "passes": {
+                "defaultPass": {
+                    "details": {
+                        "commonProfile": {
+                            "extras": {
+                                "doubleSided": false
+                            },
+                            "lightingModel": "Lambert",
+                            "parameters": [
+                                "diffuse",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix",
+                                "transparency"
+                            ]
+                        },
+                        "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",
+                            "u_transparency": "transparency"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 1,
+                        "blendEquation": 32774,
+                        "blendFunc": {
+                            "dfactor": 771,
+                            "sfactor": 770
+                        },
+                        "cullFaceEnable": 1,
+                        "depthMask": 0,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        }
+    }
+}

+ 13 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch0FS.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;
+}

+ 12 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch0VS.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 = normalize(u_normalMatrix * a_normal);
+gl_Position = u_projectionMatrix * pos;
+}

+ 14 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch2FS.glsl

@@ -0,0 +1,14 @@
+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);
+gl_FragColor = color;
+}

+ 12 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch2VS.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 = normalize(u_normalMatrix * a_normal);
+gl_Position = u_projectionMatrix * pos;
+}

+ 14 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch4FS.glsl

@@ -0,0 +1,14 @@
+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);
+}

+ 12 - 0
examples/models/gltf/SuperMurdoch/SuperMurdoch4VS.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_worldViewMatrix;
+uniform mat4 u_projectionMatrix;
+void main(void) {
+v_normal = normalize(u_normalMatrix * a_normal);
+vec4 pos = u_worldViewMatrix * vec4(a_position,1.0);
+gl_Position = u_projectionMatrix * pos;
+}

BIN
examples/models/gltf/duck/duck.bin


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 122 - 0
examples/models/gltf/duck/duck.dae


+ 397 - 0
examples/models/gltf/duck/duck.json

@@ -0,0 +1,397 @@
+{
+    "accessors": {
+        "attribute_23": {
+            "bufferView": "bufferView_29",
+            "byteOffset": 0,
+            "byteStride": 12,
+            "count": 2399,
+            "max": [
+                96.1799,
+                163.97,
+                53.9252
+            ],
+            "min": [
+                -69.2985,
+                9.92937,
+                -61.3282
+            ],
+            "type": 35665
+        },
+        "attribute_25": {
+            "bufferView": "bufferView_29",
+            "byteOffset": 28788,
+            "byteStride": 12,
+            "count": 2399,
+            "max": [
+                0.999599,
+                0.999581,
+                0.998436
+            ],
+            "min": [
+                -0.999084,
+                -1,
+                -0.999832
+            ],
+            "type": 35665
+        },
+        "attribute_27": {
+            "bufferView": "bufferView_29",
+            "byteOffset": 57576,
+            "byteStride": 8,
+            "count": 2399,
+            "max": [
+                0.983346,
+                0.980037
+            ],
+            "min": [
+                0.026409,
+                0.019963
+            ],
+            "type": 35664
+        },
+        "indices_21": {
+            "bufferView": "bufferView_30",
+            "byteOffset": 0,
+            "count": 12636,
+            "type": 5123
+        }
+    },
+    "animations": {},
+    "asset": {
+        "generator": "collada2gltf@75061f683116dc0ffdad48f33c226e933132e98c"
+    },
+    "bufferViews": {
+        "bufferView_29": {
+            "buffer": "duck",
+            "byteLength": 76768,
+            "byteOffset": 0,
+            "target": 34962
+        },
+        "bufferView_30": {
+            "buffer": "duck",
+            "byteLength": 25272,
+            "byteOffset": 76768,
+            "target": 34963
+        },
+        "bufferView_31": {
+            "buffer": "duck",
+            "byteLength": 0,
+            "byteOffset": 102040
+        }
+    },
+    "buffers": {
+        "duck": {
+            "byteLength": 102040,
+            "path": "duck.bin",
+            "type": "arraybuffer"
+        }
+    },
+    "cameras": {
+        "camera_0": {
+            "perspective": {
+                "aspect_ratio": 1.5,
+                "yfov": 37.8492,
+                "zfar": 10000,
+                "znear": 1
+            },
+            "type": "perspective"
+        }
+    },
+    "images": {
+        "image_0": {
+            "path": "duckCM.png"
+        }
+    },
+    "lights": {
+        "directionalLightShape1-lib": {
+            "directional": {
+                "color": [
+                    1,
+                    1,
+                    1
+                ]
+            },
+            "type": "directional"
+        }
+    },
+    "materials": {
+        "blinn3-fx": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "ambient": [
+                        0,
+                        0,
+                        0,
+                        1
+                    ],
+                    "diffuse": "texture_image_0",
+                    "emission": [
+                        0,
+                        0,
+                        0,
+                        1
+                    ],
+                    "shininess": 38.4,
+                    "specular": [
+                        0,
+                        0,
+                        0,
+                        1
+                    ]
+                }
+            },
+            "name": "blinn3"
+        }
+    },
+    "meshes": {
+        "LOD3spShape-lib": {
+            "name": "LOD3spShape",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_25",
+                        "POSITION": "attribute_23",
+                        "TEXCOORD_0": "attribute_27"
+                    },
+                    "indices": "indices_21",
+                    "material": "blinn3-fx",
+                    "primitive": 4
+                }
+            ]
+        }
+    },
+    "nodes": {
+        "LOD3sp": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "LOD3spShape-lib"
+            ],
+            "name": "LOD3sp"
+        },
+        "camera1": {
+            "camera": "camera_0",
+            "children": [],
+            "matrix": [
+                -0.728969,
+                0,
+                -0.684547,
+                0,
+                -0.425205,
+                0.783693,
+                0.452797,
+                0,
+                0.536475,
+                0.621148,
+                -0.571288,
+                0,
+                400.113,
+                463.264,
+                -431.078,
+                1
+            ],
+            "name": "camera1"
+        },
+        "directionalLight1": {
+            "children": [],
+            "light": "directionalLightShape1-lib",
+            "matrix": [
+                -0.954692,
+                0.218143,
+                -0.202428,
+                0,
+                0.0146721,
+                0.713885,
+                0.700109,
+                0,
+                0.297235,
+                0.665418,
+                -0.684741,
+                0,
+                148.654,
+                183.672,
+                -292.179,
+                1
+            ],
+            "name": "directionalLight1"
+        }
+    },
+    "profile": "WebGL 1.0.2",
+    "programs": {
+        "program_0": {
+            "attributes": [
+                "a_normal",
+                "a_position",
+                "a_texcoord0"
+            ],
+            "fragmentShader": "duck0FS",
+            "vertexShader": "duck0VS"
+        }
+    },
+    "samplers": {
+        "sampler_0": {
+            "magFilter": 9729,
+            "minFilter": 9987,
+            "wrapS": 10497,
+            "wrapT": 10497
+        }
+    },
+    "scene": "defaultScene",
+    "scenes": {
+        "defaultScene": {
+            "nodes": [
+                "LOD3sp",
+                "camera1",
+                "directionalLight1"
+            ]
+        }
+    },
+    "shaders": {
+        "duck0FS": {
+            "path": "duck0FS.glsl"
+        },
+        "duck0VS": {
+            "path": "duck0VS.glsl"
+        }
+    },
+    "skins": {},
+    "techniques": {
+        "technique1": {
+            "parameters": {
+                "ambient": {
+                    "type": 35666
+                },
+                "diffuse": {
+                    "type": 35678
+                },
+                "emission": {
+                    "type": 35666
+                },
+                "light0Color": {
+                    "type": 35665,
+                    "value": [
+                        1,
+                        1,
+                        1
+                    ]
+                },
+                "light0Transform": {
+                    "source": "directionalLight1",
+                    "type": 35676
+                },
+                "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
+                },
+                "shininess": {
+                    "type": 5126
+                },
+                "specular": {
+                    "type": 35666
+                },
+                "texcoord0": {
+                    "semantic": "TEXCOORD_0",
+                    "type": 35664
+                }
+            },
+            "pass": "defaultPass",
+            "passes": {
+                "defaultPass": {
+                    "details": {
+                        "commonProfile": {
+                            "extras": {
+                                "doubleSided": false
+                            },
+                            "lightingModel": "Blinn",
+                            "parameters": [
+                                "ambient",
+                                "diffuse",
+                                "emission",
+                                "light0Color",
+                                "light0Transform",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix",
+                                "shininess",
+                                "specular"
+                            ],
+                            "texcoordBindings": {
+                                "diffuse": "TEXCOORD_0"
+                            }
+                        },
+                        "type": "COLLADA-1.4.1/commonProfile"
+                    },
+                    "instanceProgram": {
+                        "attributes": {
+                            "a_normal": "normal",
+                            "a_position": "position",
+                            "a_texcoord0": "texcoord0"
+                        },
+                        "program": "program_0",
+                        "uniforms": {
+                            "u_ambient": "ambient",
+                            "u_diffuse": "diffuse",
+                            "u_emission": "emission",
+                            "u_light0Color": "light0Color",
+                            "u_light0Transform": "light0Transform",
+                            "u_modelViewMatrix": "modelViewMatrix",
+                            "u_normalMatrix": "normalMatrix",
+                            "u_projectionMatrix": "projectionMatrix",
+                            "u_shininess": "shininess",
+                            "u_specular": "specular"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 0,
+                        "cullFaceEnable": 1,
+                        "depthMask": 1,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        }
+    },
+    "textures": {
+        "texture_image_0": {
+            "format": 6408,
+            "internalFormat": 6408,
+            "sampler": "sampler_0",
+            "source": "image_0",
+            "target": 3553
+        }
+    }
+}

+ 41 - 0
examples/models/gltf/duck/duck0FS.glsl

@@ -0,0 +1,41 @@
+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;
+void main(void) {
+vec3 normal = normalize(v_normal);
+vec4 color = vec4(0., 0., 0., 0.);
+vec4 diffuse = vec4(0., 0., 0., 1.);
+vec3 diffuseLight = vec3(0., 0., 0.);
+vec4 emission;
+vec4 ambient;
+vec4 specular;
+vec3 specularLight = vec3(0., 0., 0.);
+{
+float diffuseIntensity;
+float specularIntensity;
+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);
+specularLight += u_light0Color * specularIntensity;
+diffuseLight += u_light0Color * diffuseIntensity;
+}
+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;
+color.xyz += diffuse.xyz;
+color.xyz += emission.xyz;
+color = vec4(color.rgb * diffuse.a, diffuse.a);
+gl_FragColor = color;
+}

+ 18 - 0
examples/models/gltf/duck/duck0VS.glsl

@@ -0,0 +1,18 @@
+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;
+uniform mat4 u_light0Transform;
+varying vec3 v_light0Direction;
+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_light0Direction = normalize(mat3(u_light0Transform) * vec3(0.,0.,1.));
+v_texcoord0 = a_texcoord0;
+gl_Position = u_projectionMatrix * pos;
+}

BIN
examples/models/gltf/duck/duckCM.png


BIN
examples/models/gltf/monster/monster.bin


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 64 - 0
examples/models/gltf/monster/monster.dae


BIN
examples/models/gltf/monster/monster.jpg


+ 3587 - 0
examples/models/gltf/monster/monster.json

@@ -0,0 +1,3587 @@
+{
+    "accessors": {
+        "accessor_10": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 3112,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_100": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 110576,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_101": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 111788,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_102": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 12808,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_103": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 113404,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_104": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 114616,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_105": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 115828,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_106": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 13212,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_107": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 117444,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_108": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 118656,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_109": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 119868,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_11": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 20484,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_110": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 13616,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_111": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 121484,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_112": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 122696,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_113": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 123908,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_114": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 14020,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_115": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 125524,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_116": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 126736,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_117": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 127948,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_118": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 14424,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_119": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 129564,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_12": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 21696,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_120": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 130776,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_121": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 131988,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_122": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 14828,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_123": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 133604,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_124": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 134816,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_125": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 136028,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_126": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 15232,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_127": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 137644,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_128": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 138856,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_129": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 140068,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_13": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 22908,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_130": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 15636,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_131": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 141684,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_132": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 142896,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_133": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 144108,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_14": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 3516,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_15": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 24524,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_16": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 25736,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_17": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 26948,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_18": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 3920,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_19": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 28564,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_20": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 29776,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_21": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 30988,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_22": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 4324,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_23": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 32604,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_24": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 33816,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_25": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 35028,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_26": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 4728,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_27": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 36644,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_28": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 37856,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_29": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 39068,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_30": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 5132,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_31": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 40684,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_32": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 41896,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_33": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 43108,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_34": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 5536,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_35": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 44724,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_36": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 45936,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_37": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 47148,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_38": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 5940,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_39": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 48764,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_40": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 49976,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_41": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 51188,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_42": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 6344,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_43": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 52804,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_44": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 54016,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_45": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 55228,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_46": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 6748,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_47": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 56844,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_48": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 58056,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_49": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 59268,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_50": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 7152,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_51": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 60884,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_52": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 62096,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_53": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 63308,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_54": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 7556,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_55": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 64924,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_56": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 66136,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_57": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 67348,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_58": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 7960,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_59": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 68964,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_6": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 2708,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_60": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 70176,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_61": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 71388,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_62": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 8364,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_63": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 73004,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_64": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 74216,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_65": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 75428,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_66": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 8768,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_67": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 77044,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_68": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 78256,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_69": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 79468,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_7": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 16444,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_70": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 9576,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_71": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 81084,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_72": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 82296,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_73": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 83508,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_74": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 9980,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_75": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 85124,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_76": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 86336,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_77": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 87548,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_78": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 10384,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_79": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 89164,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_8": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 17656,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_80": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 90376,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_81": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 91588,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_82": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 10788,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_83": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 93204,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_84": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 94416,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_85": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 95628,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_86": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 11192,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_87": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 97244,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_88": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 98456,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_89": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 99668,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_9": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 18868,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_90": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 11596,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_91": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 101284,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_92": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 102496,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_93": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 103708,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_94": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 12000,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_95": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 105324,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_96": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 106536,
+            "count": 101,
+            "type": 35665
+        },
+        "accessor_97": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 107748,
+            "count": 101,
+            "type": 35666
+        },
+        "accessor_98": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 12404,
+            "count": 101,
+            "type": 5126
+        },
+        "accessor_99": {
+            "bufferView": "bufferView_185",
+            "byteOffset": 109364,
+            "count": 101,
+            "type": 35665
+        },
+        "attribute_163": {
+            "bufferView": "bufferView_183",
+            "byteOffset": 0,
+            "byteStride": 12,
+            "count": 818,
+            "max": [
+                1154.32,
+                892.627,
+                584.533
+            ],
+            "min": [
+                -1746.98,
+                -913.328,
+                -504.127
+            ],
+            "type": 35665
+        },
+        "attribute_165": {
+            "bufferView": "bufferView_183",
+            "byteOffset": 9816,
+            "byteStride": 12,
+            "count": 818,
+            "max": [
+                0.997713,
+                0.999992,
+                0.998876
+            ],
+            "min": [
+                -0.976716,
+                -1,
+                -0.998876
+            ],
+            "type": 35665
+        },
+        "attribute_167": {
+            "bufferView": "bufferView_183",
+            "byteOffset": 19632,
+            "byteStride": 8,
+            "count": 818,
+            "max": [
+                1.00961,
+                0.991641
+            ],
+            "min": [
+                0.005086,
+                -0.07435
+            ],
+            "type": 35664
+        },
+        "attribute_176": {
+            "bufferView": "bufferView_183",
+            "byteOffset": 26176,
+            "byteStride": 16,
+            "count": 818,
+            "max": [
+                1,
+                0.5,
+                0.333333,
+                0.297741
+            ],
+            "min": [
+                0.202008,
+                0,
+                0,
+                0
+            ],
+            "type": 35666
+        },
+        "attribute_179": {
+            "bufferView": "bufferView_183",
+            "byteOffset": 39264,
+            "byteStride": 16,
+            "count": 818,
+            "max": [
+                34,
+                34,
+                28,
+                33
+            ],
+            "min": [
+                0,
+                0,
+                0,
+                0
+            ],
+            "type": 35666
+        },
+        "indices_161": {
+            "bufferView": "bufferView_184",
+            "byteOffset": 0,
+            "count": 2652,
+            "type": 5123
+        }
+    },
+    "animations": {
+        "animation_1": {
+            "channels": [
+                {
+                    "sampler": "animation_1_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Spine-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_1_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Spine-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_1_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Spine-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_6",
+                "rotation": "accessor_9",
+                "scale": "accessor_7",
+                "translation": "accessor_8"
+            },
+            "samplers": {
+                "animation_1_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_1_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_1_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_10": {
+            "channels": [
+                {
+                    "sampler": "animation_10_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0Nub-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_10_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0Nub-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_10_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0Nub-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_42",
+                "rotation": "accessor_45",
+                "scale": "accessor_43",
+                "translation": "accessor_44"
+            },
+            "samplers": {
+                "animation_10_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_10_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_10_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_11": {
+            "channels": [
+                {
+                    "sampler": "animation_11_scale_sampler",
+                    "target": {
+                        "id": "Bip01_HeadNub-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_11_translation_sampler",
+                    "target": {
+                        "id": "Bip01_HeadNub-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_11_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_HeadNub-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_46",
+                "rotation": "accessor_49",
+                "scale": "accessor_47",
+                "translation": "accessor_48"
+            },
+            "samplers": {
+                "animation_11_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_11_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_11_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_12": {
+            "channels": [
+                {
+                    "sampler": "animation_12_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Thigh-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_12_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Thigh-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_12_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Thigh-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_50",
+                "rotation": "accessor_53",
+                "scale": "accessor_51",
+                "translation": "accessor_52"
+            },
+            "samplers": {
+                "animation_12_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_12_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_12_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_13": {
+            "channels": [
+                {
+                    "sampler": "animation_13_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Calf-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_13_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Calf-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_13_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Calf-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_54",
+                "rotation": "accessor_57",
+                "scale": "accessor_55",
+                "translation": "accessor_56"
+            },
+            "samplers": {
+                "animation_13_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_13_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_13_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_14": {
+            "channels": [
+                {
+                    "sampler": "animation_14_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Foot-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_14_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Foot-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_14_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Foot-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_58",
+                "rotation": "accessor_61",
+                "scale": "accessor_59",
+                "translation": "accessor_60"
+            },
+            "samplers": {
+                "animation_14_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_14_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_14_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_15": {
+            "channels": [
+                {
+                    "sampler": "animation_15_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Toe0-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_15_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Toe0-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_15_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Toe0-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_62",
+                "rotation": "accessor_65",
+                "scale": "accessor_63",
+                "translation": "accessor_64"
+            },
+            "samplers": {
+                "animation_15_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_15_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_15_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_16": {
+            "channels": [
+                {
+                    "sampler": "animation_16_scale_sampler",
+                    "target": {
+                        "id": "Bone01-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_16_translation_sampler",
+                    "target": {
+                        "id": "Bone01-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_16_rotation_sampler",
+                    "target": {
+                        "id": "Bone01-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_66",
+                "rotation": "accessor_69",
+                "scale": "accessor_67",
+                "translation": "accessor_68"
+            },
+            "samplers": {
+                "animation_16_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_16_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_16_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_18": {
+            "channels": [
+                {
+                    "sampler": "animation_18_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Clavicle-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_18_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Clavicle-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_18_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Clavicle-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_70",
+                "rotation": "accessor_73",
+                "scale": "accessor_71",
+                "translation": "accessor_72"
+            },
+            "samplers": {
+                "animation_18_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_18_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_18_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_19": {
+            "channels": [
+                {
+                    "sampler": "animation_19_scale_sampler",
+                    "target": {
+                        "id": "Bone03-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_19_translation_sampler",
+                    "target": {
+                        "id": "Bone03-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_19_rotation_sampler",
+                    "target": {
+                        "id": "Bone03-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_74",
+                "rotation": "accessor_77",
+                "scale": "accessor_75",
+                "translation": "accessor_76"
+            },
+            "samplers": {
+                "animation_19_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_19_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_19_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_2": {
+            "channels": [
+                {
+                    "sampler": "animation_2_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Spine1-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_2_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Spine1-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_2_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Spine1-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_10",
+                "rotation": "accessor_13",
+                "scale": "accessor_11",
+                "translation": "accessor_12"
+            },
+            "samplers": {
+                "animation_2_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_2_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_2_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_20": {
+            "channels": [
+                {
+                    "sampler": "animation_20_scale_sampler",
+                    "target": {
+                        "id": "Bone04-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_20_translation_sampler",
+                    "target": {
+                        "id": "Bone04-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_20_rotation_sampler",
+                    "target": {
+                        "id": "Bone04-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_78",
+                "rotation": "accessor_81",
+                "scale": "accessor_79",
+                "translation": "accessor_80"
+            },
+            "samplers": {
+                "animation_20_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_20_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_20_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_21": {
+            "channels": [
+                {
+                    "sampler": "animation_21_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_UpperArm-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_21_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_UpperArm-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_21_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_UpperArm-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_82",
+                "rotation": "accessor_85",
+                "scale": "accessor_83",
+                "translation": "accessor_84"
+            },
+            "samplers": {
+                "animation_21_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_21_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_21_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_22": {
+            "channels": [
+                {
+                    "sampler": "animation_22_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Forearm-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_22_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Forearm-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_22_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Forearm-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_86",
+                "rotation": "accessor_89",
+                "scale": "accessor_87",
+                "translation": "accessor_88"
+            },
+            "samplers": {
+                "animation_22_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_22_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_22_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_23": {
+            "channels": [
+                {
+                    "sampler": "animation_23_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Hand-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_23_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Hand-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_23_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Hand-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_90",
+                "rotation": "accessor_93",
+                "scale": "accessor_91",
+                "translation": "accessor_92"
+            },
+            "samplers": {
+                "animation_23_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_23_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_23_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_24": {
+            "channels": [
+                {
+                    "sampler": "animation_24_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_24_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_24_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_94",
+                "rotation": "accessor_97",
+                "scale": "accessor_95",
+                "translation": "accessor_96"
+            },
+            "samplers": {
+                "animation_24_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_24_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_24_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_25": {
+            "channels": [
+                {
+                    "sampler": "animation_25_scale_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0Nub-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_25_translation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0Nub-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_25_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_R_Finger0Nub-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_98",
+                "rotation": "accessor_101",
+                "scale": "accessor_99",
+                "translation": "accessor_100"
+            },
+            "samplers": {
+                "animation_25_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_25_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_25_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_26": {
+            "channels": [
+                {
+                    "sampler": "animation_26_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Thigh-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_26_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Thigh-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_26_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Thigh-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_102",
+                "rotation": "accessor_105",
+                "scale": "accessor_103",
+                "translation": "accessor_104"
+            },
+            "samplers": {
+                "animation_26_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_26_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_26_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_27": {
+            "channels": [
+                {
+                    "sampler": "animation_27_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Calf-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_27_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Calf-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_27_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Calf-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_106",
+                "rotation": "accessor_109",
+                "scale": "accessor_107",
+                "translation": "accessor_108"
+            },
+            "samplers": {
+                "animation_27_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_27_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_27_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_28": {
+            "channels": [
+                {
+                    "sampler": "animation_28_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Foot-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_28_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Foot-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_28_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Foot-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_110",
+                "rotation": "accessor_113",
+                "scale": "accessor_111",
+                "translation": "accessor_112"
+            },
+            "samplers": {
+                "animation_28_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_28_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_28_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_29": {
+            "channels": [
+                {
+                    "sampler": "animation_29_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Toe0-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_29_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Toe0-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_29_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Toe0-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_114",
+                "rotation": "accessor_117",
+                "scale": "accessor_115",
+                "translation": "accessor_116"
+            },
+            "samplers": {
+                "animation_29_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_29_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_29_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_3": {
+            "channels": [
+                {
+                    "sampler": "animation_3_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Neck-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_3_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Neck-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_3_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Neck-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_14",
+                "rotation": "accessor_17",
+                "scale": "accessor_15",
+                "translation": "accessor_16"
+            },
+            "samplers": {
+                "animation_3_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_3_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_3_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_30": {
+            "channels": [
+                {
+                    "sampler": "animation_30_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Tail-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_30_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_30_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_118",
+                "rotation": "accessor_121",
+                "scale": "accessor_119",
+                "translation": "accessor_120"
+            },
+            "samplers": {
+                "animation_30_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_30_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_30_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_31": {
+            "channels": [
+                {
+                    "sampler": "animation_31_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Tail1-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_31_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail1-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_31_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail1-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_122",
+                "rotation": "accessor_125",
+                "scale": "accessor_123",
+                "translation": "accessor_124"
+            },
+            "samplers": {
+                "animation_31_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_31_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_31_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_32": {
+            "channels": [
+                {
+                    "sampler": "animation_32_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Tail2-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_32_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail2-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_32_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Tail2-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_126",
+                "rotation": "accessor_129",
+                "scale": "accessor_127",
+                "translation": "accessor_128"
+            },
+            "samplers": {
+                "animation_32_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_32_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_32_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_33": {
+            "channels": [
+                {
+                    "sampler": "animation_33_scale_sampler",
+                    "target": {
+                        "id": "Bip01_TailNub-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_33_translation_sampler",
+                    "target": {
+                        "id": "Bip01_TailNub-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_33_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_TailNub-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_130",
+                "rotation": "accessor_133",
+                "scale": "accessor_131",
+                "translation": "accessor_132"
+            },
+            "samplers": {
+                "animation_33_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_33_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_33_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_4": {
+            "channels": [
+                {
+                    "sampler": "animation_4_scale_sampler",
+                    "target": {
+                        "id": "Bip01_Head-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_4_translation_sampler",
+                    "target": {
+                        "id": "Bip01_Head-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_4_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_Head-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_18",
+                "rotation": "accessor_21",
+                "scale": "accessor_19",
+                "translation": "accessor_20"
+            },
+            "samplers": {
+                "animation_4_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_4_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_4_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_5": {
+            "channels": [
+                {
+                    "sampler": "animation_5_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Clavicle-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_5_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Clavicle-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_5_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Clavicle-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_22",
+                "rotation": "accessor_25",
+                "scale": "accessor_23",
+                "translation": "accessor_24"
+            },
+            "samplers": {
+                "animation_5_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_5_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_5_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_6": {
+            "channels": [
+                {
+                    "sampler": "animation_6_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_UpperArm-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_6_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_UpperArm-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_6_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_UpperArm-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_26",
+                "rotation": "accessor_29",
+                "scale": "accessor_27",
+                "translation": "accessor_28"
+            },
+            "samplers": {
+                "animation_6_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_6_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_6_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_7": {
+            "channels": [
+                {
+                    "sampler": "animation_7_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Forearm-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_7_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Forearm-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_7_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Forearm-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_30",
+                "rotation": "accessor_33",
+                "scale": "accessor_31",
+                "translation": "accessor_32"
+            },
+            "samplers": {
+                "animation_7_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_7_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_7_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_8": {
+            "channels": [
+                {
+                    "sampler": "animation_8_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Hand-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_8_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Hand-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_8_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Hand-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_34",
+                "rotation": "accessor_37",
+                "scale": "accessor_35",
+                "translation": "accessor_36"
+            },
+            "samplers": {
+                "animation_8_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_8_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_8_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        },
+        "animation_9": {
+            "channels": [
+                {
+                    "sampler": "animation_9_scale_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0-node",
+                        "path": "scale"
+                    }
+                },
+                {
+                    "sampler": "animation_9_translation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0-node",
+                        "path": "translation"
+                    }
+                },
+                {
+                    "sampler": "animation_9_rotation_sampler",
+                    "target": {
+                        "id": "Bip01_L_Finger0-node",
+                        "path": "rotation"
+                    }
+                }
+            ],
+            "count": 101,
+            "parameters": {
+                "TIME": "accessor_38",
+                "rotation": "accessor_41",
+                "scale": "accessor_39",
+                "translation": "accessor_40"
+            },
+            "samplers": {
+                "animation_9_rotation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "rotation"
+                },
+                "animation_9_scale_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "scale"
+                },
+                "animation_9_translation_sampler": {
+                    "input": "TIME",
+                    "interpolation": "LINEAR",
+                    "output": "translation"
+                }
+            }
+        }
+    },
+    "asset": {
+        "generator": "collada2gltf@fb6d6e65e66c3b0013c75a8d1e63650f4309bf77"
+    },
+    "bufferViews": {
+        "bufferView_183": {
+            "buffer": "monster",
+            "byteLength": 52352,
+            "byteOffset": 0,
+            "target": 34962
+        },
+        "bufferView_184": {
+            "buffer": "monster",
+            "byteLength": 5304,
+            "byteOffset": 52352,
+            "target": 34963
+        },
+        "bufferView_185": {
+            "buffer": "monster",
+            "byteLength": 145724,
+            "byteOffset": 57656
+        }
+    },
+    "buffers": {
+        "monster": {
+            "byteLength": 203380,
+            "path": "monster.bin",
+            "type": "arraybuffer"
+        }
+    },
+    "images": {
+        "image_0": {
+            "path": "monster.jpg"
+        }
+    },
+    "materials": {
+        "monster-fx": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "ambient": [
+                        0.588235,
+                        0.588235,
+                        0.588235,
+                        1
+                    ],
+                    "diffuse": "texture_image_0",
+                    "shininess": 20,
+                    "specular": [
+                        0.1,
+                        0.1,
+                        0.1,
+                        1
+                    ]
+                }
+            },
+            "name": "monster"
+        }
+    },
+    "meshes": {
+        "monster-mesh-skin": {
+            "name": "monster",
+            "primitives": [
+                {
+                    "attributes": {
+                        "JOINT": "attribute_179",
+                        "NORMAL": "attribute_165",
+                        "POSITION": "attribute_163",
+                        "TEXCOORD_0": "attribute_167",
+                        "WEIGHT": "attribute_176"
+                    },
+                    "indices": "indices_161",
+                    "material": "monster-fx",
+                    "primitive": 4
+                }
+            ]
+        }
+    },
+    "nodes": {
+        "Bip01_Head-node": {
+            "children": [
+                "Bip01_HeadNub-node"
+            ],
+            "jointId": "Bone5",
+            "name": "Bip01_Head",
+            "rotation": [
+                0.888952,
+                0.414921,
+                0.19392,
+                0.0773304
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                181.732,
+                -8e-05,
+                -2e-06
+            ]
+        },
+        "Bip01_HeadNub-node": {
+            "children": [],
+            "jointId": "Bone6",
+            "name": "Bip01_HeadNub",
+            "rotation": [
+                1,
+                0,
+                0,
+                0
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                345.132,
+                1.7e-05,
+                -7e-06
+            ]
+        },
+        "Bip01_L_Calf-node": {
+            "children": [
+                "Bip01_L_Foot-node"
+            ],
+            "jointId": "Bone24",
+            "name": "Bip01_L_Calf",
+            "rotation": [
+                0,
+                0,
+                -1,
+                1.19016
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                547.819,
+                -5e-06,
+                -1.2e-05
+            ]
+        },
+        "Bip01_L_Clavicle-node": {
+            "children": [
+                "Bip01_L_UpperArm-node"
+            ],
+            "jointId": "Bone7",
+            "name": "Bip01_L_Clavicle",
+            "rotation": [
+                0.821819,
+                0.385425,
+                0.419597,
+                3.13687
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                7.49618,
+                0.138573,
+                42.5129
+            ]
+        },
+        "Bip01_L_Finger0-node": {
+            "children": [
+                "Bip01_L_Finger0Nub-node"
+            ],
+            "jointId": "Bone11",
+            "name": "Bip01_L_Finger0",
+            "rotation": [
+                0.205207,
+                0.494818,
+                -0.84442,
+                0.520016
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                186.693,
+                -2.3e-05,
+                -9e-06
+            ]
+        },
+        "Bip01_L_Finger0Nub-node": {
+            "children": [],
+            "jointId": "Bone12",
+            "name": "Bip01_L_Finger0Nub",
+            "rotation": [
+                1,
+                0,
+                0,
+                0
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                167.761,
+                1.9e-05,
+                1.3e-05
+            ]
+        },
+        "Bip01_L_Foot-node": {
+            "children": [
+                "Bip01_L_Toe0-node"
+            ],
+            "jointId": "Bone25",
+            "name": "Bip01_L_Foot",
+            "rotation": [
+                0.0131495,
+                -0.264758,
+                0.964225,
+                1.13836
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                532.748,
+                5.1e-05,
+                -8e-06
+            ]
+        },
+        "Bip01_L_Forearm-node": {
+            "children": [
+                "Bip01_L_Hand-node"
+            ],
+            "jointId": "Bone9",
+            "name": "Bip01_L_Forearm",
+            "rotation": [
+                0,
+                0,
+                -1,
+                1.07887
+            ],
+            "scale": [
+                1,
+                0.999999,
+                1
+            ],
+            "translation": [
+                370.017,
+                2e-05,
+                0
+            ]
+        },
+        "Bip01_L_Hand-node": {
+            "children": [
+                "Bip01_L_Finger0-node"
+            ],
+            "jointId": "Bone10",
+            "name": "Bip01_L_Hand",
+            "rotation": [
+                -0.468739,
+                0.0882598,
+                0.878916,
+                0.630255
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                370.018,
+                -5.8e-05,
+                -4e-06
+            ]
+        },
+        "Bip01_L_Thigh-node": {
+            "children": [
+                "Bip01_L_Calf-node"
+            ],
+            "jointId": "Bone23",
+            "name": "Bip01_L_Thigh",
+            "rotation": [
+                0.84539,
+                0.505798,
+                0.171709,
+                3.10411
+            ],
+            "scale": [
+                1,
+                0.999999,
+                1
+            ],
+            "translation": [
+                -115.92,
+                125.412,
+                124.981
+            ]
+        },
+        "Bip01_L_Toe0-node": {
+            "children": [
+                "Bip01_L_Toe0Nub-node"
+            ],
+            "jointId": "Bone26",
+            "name": "Bip01_L_Toe0",
+            "rotation": [
+                0,
+                0,
+                1,
+                1.5708
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                214.572,
+                189.363,
+                3e-05
+            ]
+        },
+        "Bip01_L_Toe0Nub-node": {
+            "children": [],
+            "jointId": "Bone27",
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                -1,
+                0,
+                166.968,
+                0,
+                8e-06,
+                1
+            ],
+            "name": "Bip01_L_Toe0Nub"
+        },
+        "Bip01_L_UpperArm-node": {
+            "children": [
+                "Bip01_L_Forearm-node"
+            ],
+            "jointId": "Bone8",
+            "name": "Bip01_L_UpperArm",
+            "rotation": [
+                0.977167,
+                -0.155223,
+                0.14509,
+                3.72504
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                175.071,
+                7.1e-05,
+                7e-06
+            ]
+        },
+        "Bip01_Neck-node": {
+            "children": [
+                "Bip01_Head-node",
+                "Bip01_L_Clavicle-node",
+                "Bip01_R_Clavicle-node"
+            ],
+            "jointId": "Bone4",
+            "name": "Bip01_Neck",
+            "rotation": [
+                -0.0848005,
+                -0.239893,
+                -0.967088,
+                0.699229
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                402.56,
+                -0.112731,
+                -1.7e-05
+            ]
+        },
+        "Bip01_Pelvis-node": {
+            "children": [
+                "Bip01_Spine-node"
+            ],
+            "jointId": "Bone1",
+            "name": "Bip01_Pelvis",
+            "rotation": [
+                -0.959472,
+                -0.199266,
+                -0.199266,
+                1.61216
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                524.412,
+                -3.8e-05,
+                898.736
+            ]
+        },
+        "Bip01_R_Calf-node": {
+            "children": [
+                "Bip01_R_Foot-node"
+            ],
+            "jointId": "Bone29",
+            "name": "Bip01_R_Calf",
+            "rotation": [
+                0,
+                0,
+                -1,
+                1.52677
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                547.819,
+                3.7e-05,
+                -1.5e-05
+            ]
+        },
+        "Bip01_R_Clavicle-node": {
+            "children": [
+                "Bip01_R_UpperArm-node"
+            ],
+            "jointId": "Bone13",
+            "name": "Bip01_R_Clavicle",
+            "rotation": [
+                -0.404858,
+                -0.236589,
+                0.883241,
+                3.63415
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                -7.49618,
+                0.150702,
+                -42.5129
+            ]
+        },
+        "Bip01_R_Finger0-node": {
+            "children": [
+                "Bip01_R_Finger0Nub-node"
+            ],
+            "jointId": "Bone17",
+            "name": "Bip01_R_Finger0",
+            "rotation": [
+                -0.100383,
+                -0.36566,
+                -0.925319,
+                0.743378
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                186.693,
+                5.6e-05,
+                3e-06
+            ]
+        },
+        "Bip01_R_Finger0Nub-node": {
+            "children": [],
+            "jointId": "Bone18",
+            "name": "Bip01_R_Finger0Nub",
+            "rotation": [
+                -0,
+                -0,
+                1,
+                3.14159
+            ],
+            "scale": [
+                -1,
+                -1,
+                -1
+            ],
+            "translation": [
+                167.761,
+                -5e-06,
+                -4.4e-05
+            ]
+        },
+        "Bip01_R_Foot-node": {
+            "children": [
+                "Bip01_R_Toe0-node"
+            ],
+            "jointId": "Bone30",
+            "name": "Bip01_R_Foot",
+            "rotation": [
+                0.725694,
+                0.362838,
+                0.584565,
+                0.354579
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                532.748,
+                4.1e-05,
+                -2e-06
+            ]
+        },
+        "Bip01_R_Forearm-node": {
+            "children": [
+                "Bip01_R_Hand-node"
+            ],
+            "jointId": "Bone15",
+            "name": "Bip01_R_Forearm",
+            "rotation": [
+                0,
+                0,
+                -1,
+                1.45794
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                370.017,
+                2.9e-05,
+                3e-06
+            ]
+        },
+        "Bip01_R_Hand-node": {
+            "children": [
+                "Bip01_R_Finger0-node"
+            ],
+            "jointId": "Bone16",
+            "name": "Bip01_R_Hand",
+            "rotation": [
+                0.983491,
+                -0.166018,
+                -0.0719935,
+                0.544696
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                370.017,
+                -2e-06,
+                6.4e-05
+            ]
+        },
+        "Bip01_R_Thigh-node": {
+            "children": [
+                "Bip01_R_Calf-node"
+            ],
+            "jointId": "Bone28",
+            "name": "Bip01_R_Thigh",
+            "rotation": [
+                0.99724,
+                -0.00466794,
+                -0.0741011,
+                3.2334
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                -64.1862,
+                86.8699,
+                -181.92
+            ]
+        },
+        "Bip01_R_Toe0-node": {
+            "children": [
+                "Bip01_R_Toe0Nub-node"
+            ],
+            "jointId": "Bone31",
+            "name": "Bip01_R_Toe0",
+            "rotation": [
+                0.0298918,
+                0.0389551,
+                0.998794,
+                1.47183
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                214.572,
+                189.364,
+                -0
+            ]
+        },
+        "Bip01_R_Toe0Nub-node": {
+            "children": [],
+            "jointId": "Bone32",
+            "name": "Bip01_R_Toe0Nub",
+            "rotation": [
+                1,
+                0,
+                0,
+                0
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                166.968,
+                4e-06,
+                -3.3e-05
+            ]
+        },
+        "Bip01_R_UpperArm-node": {
+            "children": [
+                "Bip01_R_Forearm-node"
+            ],
+            "jointId": "Bone14",
+            "name": "Bip01_R_UpperArm",
+            "rotation": [
+                0.747885,
+                -0.309236,
+                -0.587401,
+                1.24893
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                175.071,
+                -0.000136,
+                1.5e-05
+            ]
+        },
+        "Bip01_Spine-node": {
+            "children": [
+                "Bip01_Spine1-node",
+                "Bip01_R_Thigh-node",
+                "Bip01_L_Thigh-node",
+                "Bip01_Tail-node"
+            ],
+            "jointId": "Bone2",
+            "name": "Bip01_Spine",
+            "rotation": [
+                0.0503303,
+                0.236422,
+                0.970346,
+                0.884125
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                142.077,
+                -0.208117,
+                -0.038858
+            ]
+        },
+        "Bip01_Spine1-node": {
+            "children": [
+                "Bip01_Neck-node",
+                "Bone01-node",
+                "Bone03-node"
+            ],
+            "jointId": "Bone3",
+            "name": "Bip01_Spine1",
+            "rotation": [
+                0.339141,
+                0.634452,
+                0.694589,
+                0.318861
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                399.228,
+                -0.310882,
+                -0.041171
+            ]
+        },
+        "Bip01_Tail-node": {
+            "children": [
+                "Bip01_Tail1-node"
+            ],
+            "jointId": "Bone33",
+            "name": "Bip01_Tail",
+            "rotation": [
+                -0.0332696,
+                0.042712,
+                0.998533,
+                2.87002
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                -217.547,
+                76.1463,
+                -46.1944
+            ]
+        },
+        "Bip01_Tail1-node": {
+            "children": [
+                "Bip01_Tail2-node"
+            ],
+            "jointId": "Bone34",
+            "name": "Bip01_Tail1",
+            "rotation": [
+                0.0281731,
+                -0.223504,
+                0.974296,
+                0.258944
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                275.134,
+                -0.261342,
+                0
+            ]
+        },
+        "Bip01_Tail2-node": {
+            "children": [
+                "Bip01_TailNub-node"
+            ],
+            "jointId": "Bone35",
+            "name": "Bip01_Tail2",
+            "rotation": [
+                0,
+                -0,
+                1,
+                0.226614
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                339.089,
+                -0.290226,
+                -7e-06
+            ]
+        },
+        "Bip01_TailNub-node": {
+            "children": [],
+            "jointId": "Bone36",
+            "name": "Bip01_TailNub",
+            "rotation": [
+                0.707388,
+                0.706825,
+                7.06825e-07,
+                3.14159
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                374.193,
+                -3.8e-05,
+                -3e-06
+            ]
+        },
+        "Bone01-node": {
+            "children": [
+                "Bone02-node"
+            ],
+            "jointId": "Bone21",
+            "name": "Bone01",
+            "rotation": [
+                0.998254,
+                -0.012858,
+                -0.0576427,
+                3.00283
+            ],
+            "scale": [
+                0.993689,
+                1.09369,
+                9.75437
+            ],
+            "translation": [
+                179.053,
+                1051.53,
+                -104.193
+            ]
+        },
+        "Bone02-node": {
+            "children": [],
+            "jointId": "Bone22",
+            "name": "Bone02",
+            "rotation": [
+                1,
+                0,
+                0,
+                0
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                17.8219,
+                1.4e-05,
+                -2e-06
+            ]
+        },
+        "Bone03-node": {
+            "children": [
+                "Bone04-node"
+            ],
+            "jointId": "Bone19",
+            "name": "Bone03",
+            "rotation": [
+                0.998968,
+                -0.0442843,
+                0.0101098,
+                3.11183
+            ],
+            "scale": [
+                0.657025,
+                0.613551,
+                7.3972
+            ],
+            "translation": [
+                164.819,
+                1034.98,
+                -108.759
+            ]
+        },
+        "Bone04-node": {
+            "children": [],
+            "jointId": "Bone20",
+            "name": "Bone04",
+            "rotation": [
+                1,
+                0,
+                0,
+                0
+            ],
+            "scale": [
+                1,
+                1,
+                1
+            ],
+            "translation": [
+                17.8219,
+                7e-06,
+                -2e-06
+            ]
+        },
+        "monster-node": {
+            "children": [],
+            "instanceSkin": {
+                "skeletons": [
+                    "Bip01_Pelvis-node"
+                ],
+                "skin": "monster-mesh-skin-skin",
+                "sources": [
+                    "monster-mesh-skin"
+                ]
+            },
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "monster"
+        }
+    },
+    "profile": "WebGL 1.0.2",
+    "programs": {
+        "program_0": {
+            "attributes": [
+                "a_joint",
+                "a_normal",
+                "a_position",
+                "a_texcoord0",
+                "a_weight"
+            ],
+            "fragmentShader": "monster0FS",
+            "vertexShader": "monster0VS"
+        }
+    },
+    "samplers": {
+        "sampler_0": {
+            "magFilter": 9729,
+            "minFilter": 9729,
+            "wrapS": 10497,
+            "wrapT": 10497
+        }
+    },
+    "scene": "defaultScene",
+    "scenes": {
+        "defaultScene": {
+            "nodes": [
+                "Bip01_Pelvis-node",
+                "monster-node"
+            ]
+        }
+    },
+    "shaders": {
+        "monster0FS": {
+            "path": "monster0FS.glsl"
+        },
+        "monster0VS": {
+            "path": "monster0VS.glsl"
+        }
+    },
+    "skins": {
+        "monster-mesh-skin-skin": {
+            "bindShapeMatrix": [
+                0,
+                -0.804999,
+                0.172274,
+                0,
+                0,
+                0.172274,
+                0.804999,
+                0,
+                -0.823226,
+                0,
+                0,
+                0,
+                -127.093,
+                -393.418,
+                597.2,
+                1
+            ],
+            "inverseBindMatrices": {
+                "bufferView": "bufferView_185",
+                "byteOffset": 0,
+                "count": 36,
+                "type": 35676
+            },
+            "joints": [
+                "Bone1",
+                "Bone2",
+                "Bone3",
+                "Bone4",
+                "Bone5",
+                "Bone6",
+                "Bone7",
+                "Bone8",
+                "Bone9",
+                "Bone10",
+                "Bone11",
+                "Bone12",
+                "Bone13",
+                "Bone14",
+                "Bone15",
+                "Bone16",
+                "Bone17",
+                "Bone18",
+                "Bone19",
+                "Bone20",
+                "Bone21",
+                "Bone22",
+                "Bone23",
+                "Bone24",
+                "Bone25",
+                "Bone26",
+                "Bone27",
+                "Bone28",
+                "Bone29",
+                "Bone30",
+                "Bone31",
+                "Bone32",
+                "Bone33",
+                "Bone34",
+                "Bone35",
+                "Bone36"
+            ]
+        }
+    },
+    "techniques": {
+        "technique1": {
+            "parameters": {
+                "ambient": {
+                    "type": 35666
+                },
+                "diffuse": {
+                    "type": 35678
+                },
+                "joint": {
+                    "semantic": "JOINT",
+                    "type": 35666
+                },
+                "jointMat": {
+                    "semantic": "JOINT_MATRIX",
+                    "type": 35676
+                },
+                "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
+                },
+                "shininess": {
+                    "type": 5126
+                },
+                "specular": {
+                    "type": 35666
+                },
+                "texcoord0": {
+                    "semantic": "TEXCOORD_0",
+                    "type": 35664
+                },
+                "weight": {
+                    "semantic": "WEIGHT",
+                    "type": 35666
+                }
+            },
+            "pass": "defaultPass",
+            "passes": {
+                "defaultPass": {
+                    "details": {
+                        "commonProfile": {
+                            "extras": {
+                                "doubleSided": false
+                            },
+                            "lightingModel": "Blinn",
+                            "parameters": [
+                                "ambient",
+                                "diffuse",
+                                "jointMat",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix",
+                                "shininess",
+                                "specular"
+                            ],
+                            "texcoordBindings": {
+                                "diffuse": "TEXCOORD_0"
+                            }
+                        },
+                        "type": "COLLADA-1.4.1/commonProfile"
+                    },
+                    "instanceProgram": {
+                        "attributes": {
+                            "a_joint": "joint",
+                            "a_normal": "normal",
+                            "a_position": "position",
+                            "a_texcoord0": "texcoord0",
+                            "a_weight": "weight"
+                        },
+                        "program": "program_0",
+                        "uniforms": {
+                            "u_ambient": "ambient",
+                            "u_diffuse": "diffuse",
+                            "u_jointMat": "jointMat",
+                            "u_modelViewMatrix": "modelViewMatrix",
+                            "u_normalMatrix": "normalMatrix",
+                            "u_projectionMatrix": "projectionMatrix",
+                            "u_shininess": "shininess",
+                            "u_specular": "specular"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 0,
+                        "cullFaceEnable": 1,
+                        "depthMask": 1,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        }
+    },
+    "textures": {
+        "texture_image_0": {
+            "format": 6408,
+            "internalFormat": 6408,
+            "sampler": "sampler_0",
+            "source": "image_0",
+            "target": 3553
+        }
+    }
+}

+ 23 - 0
examples/models/gltf/monster/monster0FS.glsl

@@ -0,0 +1,23 @@
+precision highp float;
+varying vec3 v_normal;
+varying vec4 v_joint;
+varying vec4 v_weight;
+uniform float u_shininess;
+uniform vec4 u_ambient;
+varying vec2 v_texcoord0;
+uniform sampler2D u_diffuse;
+uniform vec4 u_specular;
+void main(void) {
+vec3 normal = normalize(v_normal);
+vec4 color = vec4(0., 0., 0., 0.);
+vec4 diffuse = vec4(0., 0., 0., 1.);
+vec4 ambient;
+vec4 specular;
+ambient = u_ambient;
+diffuse = texture2D(u_diffuse, v_texcoord0);
+specular = u_specular;
+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;
+}

+ 24 - 0
examples/models/gltf/monster/monster0VS.glsl

@@ -0,0 +1,24 @@
+precision highp float;
+attribute vec3 a_position;
+attribute vec3 a_normal;
+varying vec3 v_normal;
+attribute vec4 a_joint;
+varying vec4 v_joint;
+attribute vec4 a_weight;
+varying vec4 v_weight;
+uniform mat4 u_jointMat[60];
+uniform mat3 u_normalMatrix;
+uniform mat4 u_modelViewMatrix;
+uniform mat4 u_projectionMatrix;
+attribute vec2 a_texcoord0;
+varying vec2 v_texcoord0;
+void main(void) {
+mat4 skinMat = a_weight.x * u_jointMat[int(a_joint.x)];
+skinMat += a_weight.y * u_jointMat[int(a_joint.y)];
+skinMat += a_weight.z * u_jointMat[int(a_joint.z)];
+skinMat += a_weight.w * u_jointMat[int(a_joint.w)];
+vec4 pos = u_modelViewMatrix * skinMat * vec4(a_position,1.0);
+v_normal = normalize(u_normalMatrix * mat3(skinMat)* a_normal);
+v_texcoord0 = a_texcoord0;
+gl_Position = u_projectionMatrix * pos;
+}

+ 1 - 0
examples/models/gltf/monster/readme.txt

@@ -0,0 +1 @@
+Model from http://www.3drt.com/downloads.htm

BIN
examples/models/gltf/rambler/Rambler.bin


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 9595 - 0
examples/models/gltf/rambler/Rambler.dae


+ 43337 - 0
examples/models/gltf/rambler/Rambler.json

@@ -0,0 +1,43337 @@
+{
+    "accessors": {
+        "attribute_100": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 157008,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10009": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5991264,
+            "byteStride": 12,
+            "count": 1013,
+            "max": [
+                11.0412,
+                20.1588,
+                20.1588
+            ],
+            "min": [
+                0,
+                10.5612,
+                10.56
+            ],
+            "type": 35665
+        },
+        "attribute_10011": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6003420,
+            "byteStride": 12,
+            "count": 1013,
+            "max": [
+                1,
+                0.980826,
+                0.980826
+            ],
+            "min": [
+                -1,
+                -0.980826,
+                -0.980826
+            ],
+            "type": 35665
+        },
+        "attribute_1003": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 778272,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10034": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6015576,
+            "byteStride": 12,
+            "count": 2123,
+            "max": [
+                9.6024,
+                8.64,
+                8.6412
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10036": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6041052,
+            "byteStride": 12,
+            "count": 2123,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1005": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 781056,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10056": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6066528,
+            "byteStride": 12,
+            "count": 683,
+            "max": [
+                9.6,
+                10.0512,
+                10.0512
+            ],
+            "min": [
+                0,
+                2.3712,
+                2.3712
+            ],
+            "type": 35665
+        },
+        "attribute_10058": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6074724,
+            "byteStride": 12,
+            "count": 683,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10076": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6082920,
+            "byteStride": 12,
+            "count": 40,
+            "max": [
+                7.68,
+                2.5344,
+                7.3248
+            ],
+            "min": [
+                1.92,
+                0,
+                5.0976
+            ],
+            "type": 35665
+        },
+        "attribute_10078": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6083400,
+            "byteStride": 12,
+            "count": 40,
+            "max": [
+                1,
+                1,
+                0.980794
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980794
+            ],
+            "type": 35665
+        },
+        "attribute_10096": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6083880,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                7.68,
+                4.4016,
+                11.0352
+            ],
+            "min": [
+                1.92,
+                1.3872,
+                8.0208
+            ],
+            "type": 35665
+        },
+        "attribute_10098": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6084456,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0.831765,
+                0.831765
+            ],
+            "min": [
+                -1,
+                -0.831765,
+                -0.831765
+            ],
+            "type": 35665
+        },
+        "attribute_10116": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6085032,
+            "byteStride": 12,
+            "count": 40,
+            "max": [
+                7.68,
+                7.3248,
+                12.4224
+            ],
+            "min": [
+                1.92,
+                5.0976,
+                9.888
+            ],
+            "type": 35665
+        },
+        "attribute_10118": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6085512,
+            "byteStride": 12,
+            "count": 40,
+            "max": [
+                1,
+                0.980794,
+                1
+            ],
+            "min": [
+                -1,
+                -0.980794,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10136": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6085992,
+            "byteStride": 12,
+            "count": 44,
+            "max": [
+                7.68,
+                11.0352,
+                11.0352
+            ],
+            "min": [
+                1.92,
+                8.0208,
+                8.0208
+            ],
+            "type": 35665
+        },
+        "attribute_10138": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6086520,
+            "byteStride": 12,
+            "count": 44,
+            "max": [
+                1,
+                0.831765,
+                0.831765
+            ],
+            "min": [
+                -1,
+                -0.831765,
+                -0.831765
+            ],
+            "type": 35665
+        },
+        "attribute_10156": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6087048,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                7.68,
+                12.4224,
+                7.3248
+            ],
+            "min": [
+                1.92,
+                9.888,
+                5.0976
+            ],
+            "type": 35665
+        },
+        "attribute_10158": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6087624,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                1,
+                0.980794
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980794
+            ],
+            "type": 35665
+        },
+        "attribute_10176": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6088200,
+            "byteStride": 12,
+            "count": 44,
+            "max": [
+                7.68,
+                11.0352,
+                4.4016
+            ],
+            "min": [
+                1.92,
+                8.0208,
+                1.3872
+            ],
+            "type": 35665
+        },
+        "attribute_10178": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6088728,
+            "byteStride": 12,
+            "count": 44,
+            "max": [
+                1,
+                0.831765,
+                0.831765
+            ],
+            "min": [
+                -1,
+                -0.831765,
+                -0.831765
+            ],
+            "type": 35665
+        },
+        "attribute_10196": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6089256,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                7.68,
+                7.3248,
+                2.5344
+            ],
+            "min": [
+                1.92,
+                5.0976,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10198": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6089832,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                1,
+                0.980794,
+                1
+            ],
+            "min": [
+                -1,
+                -0.980794,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10216": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6090408,
+            "byteStride": 12,
+            "count": 43,
+            "max": [
+                7.68,
+                4.4016,
+                4.4016
+            ],
+            "min": [
+                1.92,
+                1.3872,
+                1.3872
+            ],
+            "type": 35665
+        },
+        "attribute_10218": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6090924,
+            "byteStride": 12,
+            "count": 43,
+            "max": [
+                1,
+                0.831765,
+                0.831765
+            ],
+            "min": [
+                -1,
+                -0.831765,
+                -0.831765
+            ],
+            "type": 35665
+        },
+        "attribute_1023": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 783840,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                99.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                92.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_10236": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6091440,
+            "byteStride": 12,
+            "count": 2123,
+            "max": [
+                9.6024,
+                8.64,
+                8.6412
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10238": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6116916,
+            "byteStride": 12,
+            "count": 2123,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1025": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 786336,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_10258": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6142392,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                9.6204,
+                57.6192,
+                3.84
+            ],
+            "min": [
+                0.0024,
+                0.018,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10260": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6143808,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10278": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6145224,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.6824,
+                55.698,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                49.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10280": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6147636,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10298": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6150048,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6956,
+                17.298,
+                5.76
+            ],
+            "min": [
+                1.9356,
+                11.538,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10300": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6152412,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10318": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6154776,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.686,
+                46.098,
+                5.76
+            ],
+            "min": [
+                1.926,
+                40.338,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10320": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6157200,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10338": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6159624,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6932,
+                26.898,
+                5.76
+            ],
+            "min": [
+                1.9332,
+                21.138,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6162096,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10358": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6164568,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6896,
+                36.498,
+                5.76
+            ],
+            "min": [
+                1.9296,
+                30.738,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10360": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6166944,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10378": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6169320,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6992,
+                7.698,
+                5.76
+            ],
+            "min": [
+                1.9392,
+                1.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10380": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6171792,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10398": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6174264,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7308,
+                30.738,
+                1.92
+            ],
+            "min": [
+                2.8908,
+                26.898,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6176964,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10418": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6179664,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                6.7272,
+                40.338,
+                1.92
+            ],
+            "min": [
+                2.8872,
+                36.498,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6182232,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1043": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 788832,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                74.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                69.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_10438": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6184800,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7236,
+                49.938,
+                1.92
+            ],
+            "min": [
+                2.8836,
+                46.098,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10440": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6187416,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1045": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 792672,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10458": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6190032,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                6.7344,
+                21.138,
+                1.92
+            ],
+            "min": [
+                2.8944,
+                17.298,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10460": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6192696,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                0.980765,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.980765,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10478": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6195360,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.738,
+                11.538,
+                1.92
+            ],
+            "min": [
+                2.898,
+                7.698,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10480": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6198060,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10502": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6200760,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                9.612,
+                38.4012,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10504": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6202104,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10522": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6203448,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                7.6812,
+                36.4812,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.7212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10524": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6205680,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10542": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6207912,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6848,
+                26.8812,
+                5.76
+            ],
+            "min": [
+                1.9248,
+                21.1212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10544": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6210288,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10562": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6212664,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                7.6908,
+                7.6812,
+                5.76
+            ],
+            "min": [
+                1.9308,
+                1.9212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10564": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6215124,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10582": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6217584,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                7.6884,
+                17.2812,
+                5.76
+            ],
+            "min": [
+                1.9284,
+                11.5212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10584": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6219720,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10602": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6221856,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.726,
+                21.1212,
+                1.92
+            ],
+            "min": [
+                2.886,
+                17.2812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10604": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6224568,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10622": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6227280,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7284,
+                11.5212,
+                1.92
+            ],
+            "min": [
+                2.8884,
+                7.6812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10624": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6229992,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1063": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 796512,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_10642": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6232704,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7224,
+                30.7212,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.8812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10644": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6235416,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1065": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 800352,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10664": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6238128,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                9.6204,
+                57.6192,
+                3.84
+            ],
+            "min": [
+                0.0024,
+                0.018,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10666": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6239544,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10684": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6240960,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.6824,
+                55.698,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                49.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10686": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6243372,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10704": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6245784,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6956,
+                17.298,
+                5.76
+            ],
+            "min": [
+                1.9356,
+                11.538,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10706": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6248148,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10724": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6250512,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.686,
+                46.098,
+                5.76
+            ],
+            "min": [
+                1.926,
+                40.338,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10726": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6252936,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10744": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6255360,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6932,
+                26.898,
+                5.76
+            ],
+            "min": [
+                1.9332,
+                21.138,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10746": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6257832,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10764": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6260304,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6896,
+                36.498,
+                5.76
+            ],
+            "min": [
+                1.9296,
+                30.738,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10766": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6262680,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10784": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6265056,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6992,
+                7.698,
+                5.76
+            ],
+            "min": [
+                1.9392,
+                1.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10786": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6267528,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10804": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6270000,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7308,
+                30.738,
+                1.92
+            ],
+            "min": [
+                2.8908,
+                26.898,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10806": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6272700,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10824": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6275400,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                6.7272,
+                40.338,
+                1.92
+            ],
+            "min": [
+                2.8872,
+                36.498,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10826": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6277968,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1083": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 804192,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_10844": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6280536,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7236,
+                49.938,
+                1.92
+            ],
+            "min": [
+                2.8836,
+                46.098,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10846": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6283152,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1085": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 806688,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_10864": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6285768,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                6.7344,
+                21.138,
+                1.92
+            ],
+            "min": [
+                2.8944,
+                17.298,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10866": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6288432,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                0.980765,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.980765,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10884": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6291096,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.738,
+                11.538,
+                1.92
+            ],
+            "min": [
+                2.898,
+                7.698,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10886": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6293796,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10908": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6296496,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                9.6204,
+                57.6192,
+                3.84
+            ],
+            "min": [
+                0.0024,
+                0.018,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_10910": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6297912,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10928": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6299328,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.6824,
+                55.698,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                49.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10930": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6301740,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10948": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6304152,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6956,
+                17.298,
+                5.76
+            ],
+            "min": [
+                1.9356,
+                11.538,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10950": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6306516,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10968": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6308880,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.686,
+                46.098,
+                5.76
+            ],
+            "min": [
+                1.926,
+                40.338,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10970": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6311304,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_10988": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6313728,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6932,
+                26.898,
+                5.76
+            ],
+            "min": [
+                1.9332,
+                21.138,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_10990": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6316200,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11008": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6318672,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6896,
+                36.498,
+                5.76
+            ],
+            "min": [
+                1.9296,
+                30.738,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11010": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6321048,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11028": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6323424,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6992,
+                7.698,
+                5.76
+            ],
+            "min": [
+                1.9392,
+                1.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_1103": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 809184,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_11030": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6325896,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11048": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6328368,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7308,
+                30.738,
+                1.92
+            ],
+            "min": [
+                2.8908,
+                26.898,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1105": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 813024,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11050": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6331068,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11068": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6333768,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                6.7272,
+                40.338,
+                1.92
+            ],
+            "min": [
+                2.8872,
+                36.498,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11070": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6336336,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11088": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6338904,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7236,
+                49.938,
+                1.92
+            ],
+            "min": [
+                2.8836,
+                46.098,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11090": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6341520,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11108": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6344136,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                6.7344,
+                21.138,
+                1.92
+            ],
+            "min": [
+                2.8944,
+                17.298,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11110": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6346800,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                0.980765,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.980765,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11128": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6349464,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.738,
+                11.538,
+                1.92
+            ],
+            "min": [
+                2.898,
+                7.698,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11130": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6352164,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11152": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6354864,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11154": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6356808,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11172": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6358752,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                28.8,
+                9.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11174": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6359904,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11192": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6361056,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                11.52,
+                6.72,
+                1.92
+            ],
+            "min": [
+                7.68,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11194": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6363000,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11212": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6364944,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                26.88,
+                7.68,
+                5.76
+            ],
+            "min": [
+                21.12,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11214": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6366888,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11232": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6368832,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                17.28,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11234": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6370776,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11252": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6372720,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                21.12,
+                6.72,
+                1.92
+            ],
+            "min": [
+                17.28,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11254": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6374664,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11272": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6376608,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11274": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6378552,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11292": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6380496,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                28.8,
+                9.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11294": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6381648,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11312": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6382800,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                11.52,
+                6.72,
+                1.92
+            ],
+            "min": [
+                7.68,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11314": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6384744,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11332": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6386688,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                26.88,
+                7.68,
+                5.76
+            ],
+            "min": [
+                21.12,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11334": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6388632,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1134": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 816864,
+            "byteStride": 12,
+            "count": 12441,
+            "max": [
+                115.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_11352": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6390576,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                17.28,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11354": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6392520,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1136": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 966156,
+            "byteStride": 12,
+            "count": 12441,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11372": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6394464,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                21.12,
+                6.72,
+                1.92
+            ],
+            "min": [
+                17.28,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11374": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6396408,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11392": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6398352,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                9.5988,
+                19.1988,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11394": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6399744,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11412": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6401136,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                9.612,
+                38.4012,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11414": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6402480,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11432": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6403824,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                7.6812,
+                36.4812,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.7212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11434": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6406056,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11452": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6408288,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6848,
+                26.8812,
+                5.76
+            ],
+            "min": [
+                1.9248,
+                21.1212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11454": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6410664,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11472": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6413040,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                7.6908,
+                7.6812,
+                5.76
+            ],
+            "min": [
+                1.9308,
+                1.9212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11474": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6415500,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11492": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6417960,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                7.6884,
+                17.2812,
+                5.76
+            ],
+            "min": [
+                1.9284,
+                11.5212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_11494": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6420096,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11512": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6422232,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.726,
+                21.1212,
+                1.92
+            ],
+            "min": [
+                2.886,
+                17.2812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11514": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6424944,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11532": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6427656,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7284,
+                11.5212,
+                1.92
+            ],
+            "min": [
+                2.8884,
+                7.6812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11534": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6430368,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1154": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1115448,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11552": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6433080,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7224,
+                30.7212,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.8812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11554": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6435792,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1156": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1118232,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11574": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6438504,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                5.7288,
+                57.606,
+                5.6652
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11576": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6443112,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.999963,
+                0.999999,
+                0.999963
+            ],
+            "min": [
+                -0.999963,
+                -0.999999,
+                -0.999963
+            ],
+            "type": 35665
+        },
+        "attribute_11594": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6447720,
+            "byteStride": 12,
+            "count": 1534,
+            "max": [
+                13.9476,
+                9.6,
+                39.2124
+            ],
+            "min": [
+                4.098,
+                0,
+                28.9776
+            ],
+            "type": 35665
+        },
+        "attribute_11596": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6466128,
+            "byteStride": 12,
+            "count": 1534,
+            "max": [
+                0.999954,
+                1,
+                0.999954
+            ],
+            "min": [
+                -0.999954,
+                -1,
+                -0.999954
+            ],
+            "type": 35665
+        },
+        "attribute_11614": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6484536,
+            "byteStride": 12,
+            "count": 312,
+            "max": [
+                10.728,
+                7.68,
+                27.9516
+            ],
+            "min": [
+                0,
+                1.92,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11616": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6488280,
+            "byteStride": 12,
+            "count": 312,
+            "max": [
+                0.982696,
+                1,
+                0.982881
+            ],
+            "min": [
+                -0.982696,
+                -1,
+                -0.982881
+            ],
+            "type": 35665
+        },
+        "attribute_11634": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6492024,
+            "byteStride": 12,
+            "count": 187,
+            "max": [
+                10.7004,
+                7.1988,
+                30.222
+            ],
+            "min": [
+                5.8968,
+                2.4012,
+                28.8624
+            ],
+            "type": 35665
+        },
+        "attribute_11636": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6494268,
+            "byteStride": 12,
+            "count": 187,
+            "max": [
+                0.963982,
+                0.980841,
+                0.18388
+            ],
+            "min": [
+                -0.963982,
+                -0.980841,
+                -0.18388
+            ],
+            "type": 35665
+        },
+        "attribute_11654": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6496512,
+            "byteStride": 12,
+            "count": 512,
+            "max": [
+                11.556,
+                8.16,
+                29.9292
+            ],
+            "min": [
+                4.5972,
+                1.44,
+                26.7972
+            ],
+            "type": 35665
+        },
+        "attribute_11656": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6502656,
+            "byteStride": 12,
+            "count": 512,
+            "max": [
+                0.963773,
+                0.980638,
+                0.982777
+            ],
+            "min": [
+                -0.963773,
+                -0.980638,
+                -0.982777
+            ],
+            "type": 35665
+        },
+        "attribute_11674": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6508800,
+            "byteStride": 12,
+            "count": 5814,
+            "max": [
+                12.0276,
+                8.6832,
+                30.4008
+            ],
+            "min": [
+                1.0572,
+                0.96,
+                9.3912
+            ],
+            "type": 35665
+        },
+        "attribute_11676": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6578568,
+            "byteStride": 12,
+            "count": 5814,
+            "max": [
+                0.855066,
+                0.783506,
+                0.848586
+            ],
+            "min": [
+                -0.855066,
+                -0.783506,
+                -0.848586
+            ],
+            "type": 35665
+        },
+        "attribute_11695": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6648336,
+            "byteStride": 12,
+            "count": 1856,
+            "max": [
+                14.5884,
+                9.6,
+                32.9628
+            ],
+            "min": [
+                0,
+                0,
+                3.828
+            ],
+            "type": 35665
+        },
+        "attribute_11697": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6670608,
+            "byteStride": 12,
+            "count": 1856,
+            "max": [
+                0.98273,
+                1,
+                0.98305
+            ],
+            "min": [
+                -0.98273,
+                -1,
+                -0.98305
+            ],
+            "type": 35665
+        },
+        "attribute_11715": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6692880,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                12.5256,
+                3.84,
+                30.954
+            ],
+            "min": [
+                10.6392,
+                1.92,
+                30.5988
+            ],
+            "type": 35665
+        },
+        "attribute_11717": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6693024,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.185137,
+                0.0001064,
+                0.98273
+            ],
+            "min": [
+                -0.185137,
+                -0.0001064,
+                -0.98273
+            ],
+            "type": 35665
+        },
+        "attribute_11735": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6693168,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                8.7516,
+                7.68,
+                31.6656
+            ],
+            "min": [
+                6.8652,
+                5.76,
+                31.3104
+            ],
+            "type": 35665
+        },
+        "attribute_11737": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6693312,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.18528,
+                0.000267,
+                0.98273
+            ],
+            "min": [
+                -0.18528,
+                -0.000267,
+                -0.98273
+            ],
+            "type": 35665
+        },
+        "attribute_1174": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1121016,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                97.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                94.0791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11755": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6693456,
+            "byteStride": 12,
+            "count": 876,
+            "max": [
+                13.5576,
+                8.64,
+                32.6976
+            ],
+            "min": [
+                6.0108,
+                0.96,
+                30.51
+            ],
+            "type": 35665
+        },
+        "attribute_11757": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6703968,
+            "byteStride": 12,
+            "count": 876,
+            "max": [
+                0.854549,
+                0.702259,
+                0.830359
+            ],
+            "min": [
+                -0.854549,
+                -0.702259,
+                -0.830359
+            ],
+            "type": 35665
+        },
+        "attribute_1176": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1123800,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11775": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6714480,
+            "byteStride": 12,
+            "count": 1099,
+            "max": [
+                9.432,
+                9.6,
+                9.4344
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11777": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6727668,
+            "byteStride": 12,
+            "count": 1099,
+            "max": [
+                0.999954,
+                1,
+                0.999954
+            ],
+            "min": [
+                -0.999954,
+                -1,
+                -0.999954
+            ],
+            "type": 35665
+        },
+        "attribute_118": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 159792,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_11802": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6740856,
+            "byteStride": 12,
+            "count": 1856,
+            "max": [
+                14.5884,
+                9.6,
+                32.9628
+            ],
+            "min": [
+                0,
+                0,
+                3.828
+            ],
+            "type": 35665
+        },
+        "attribute_11804": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6763128,
+            "byteStride": 12,
+            "count": 1856,
+            "max": [
+                0.98273,
+                1,
+                0.98305
+            ],
+            "min": [
+                -0.98273,
+                -1,
+                -0.98305
+            ],
+            "type": 35665
+        },
+        "attribute_11822": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6785400,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                12.5256,
+                3.84,
+                30.954
+            ],
+            "min": [
+                10.6392,
+                1.92,
+                30.5988
+            ],
+            "type": 35665
+        },
+        "attribute_11824": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6785544,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.185137,
+                0.0001064,
+                0.98273
+            ],
+            "min": [
+                -0.185137,
+                -0.0001064,
+                -0.98273
+            ],
+            "type": 35665
+        },
+        "attribute_11842": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6785688,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                8.7516,
+                7.68,
+                31.6656
+            ],
+            "min": [
+                6.8652,
+                5.76,
+                31.3104
+            ],
+            "type": 35665
+        },
+        "attribute_11844": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6785832,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.18528,
+                0.000267,
+                0.98273
+            ],
+            "min": [
+                -0.18528,
+                -0.000267,
+                -0.98273
+            ],
+            "type": 35665
+        },
+        "attribute_11862": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6785976,
+            "byteStride": 12,
+            "count": 876,
+            "max": [
+                13.5576,
+                8.64,
+                32.6976
+            ],
+            "min": [
+                6.0108,
+                0.96,
+                30.51
+            ],
+            "type": 35665
+        },
+        "attribute_11864": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6796488,
+            "byteStride": 12,
+            "count": 876,
+            "max": [
+                0.854549,
+                0.702259,
+                0.830359
+            ],
+            "min": [
+                -0.854549,
+                -0.702259,
+                -0.830359
+            ],
+            "type": 35665
+        },
+        "attribute_11882": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6807000,
+            "byteStride": 12,
+            "count": 1099,
+            "max": [
+                9.432,
+                9.6,
+                9.4344
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11884": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6820188,
+            "byteStride": 12,
+            "count": 1099,
+            "max": [
+                0.999954,
+                1,
+                0.999954
+            ],
+            "min": [
+                -0.999954,
+                -1,
+                -0.999954
+            ],
+            "type": 35665
+        },
+        "attribute_11909": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6833376,
+            "byteStride": 12,
+            "count": 1534,
+            "max": [
+                13.9476,
+                9.6,
+                39.2124
+            ],
+            "min": [
+                4.098,
+                0,
+                28.9776
+            ],
+            "type": 35665
+        },
+        "attribute_11911": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6851784,
+            "byteStride": 12,
+            "count": 1534,
+            "max": [
+                0.999954,
+                1,
+                0.999954
+            ],
+            "min": [
+                -0.999954,
+                -1,
+                -0.999954
+            ],
+            "type": 35665
+        },
+        "attribute_11929": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6870192,
+            "byteStride": 12,
+            "count": 312,
+            "max": [
+                10.728,
+                7.68,
+                27.9516
+            ],
+            "min": [
+                0,
+                1.92,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11931": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6873936,
+            "byteStride": 12,
+            "count": 312,
+            "max": [
+                0.982696,
+                1,
+                0.982881
+            ],
+            "min": [
+                -0.982696,
+                -1,
+                -0.982881
+            ],
+            "type": 35665
+        },
+        "attribute_1194": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1126584,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                78.7203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                74.8791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_11949": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6877680,
+            "byteStride": 12,
+            "count": 187,
+            "max": [
+                10.7004,
+                7.1988,
+                30.222
+            ],
+            "min": [
+                5.8968,
+                2.4012,
+                28.8624
+            ],
+            "type": 35665
+        },
+        "attribute_11951": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6879924,
+            "byteStride": 12,
+            "count": 187,
+            "max": [
+                0.963982,
+                0.980841,
+                0.18388
+            ],
+            "min": [
+                -0.963982,
+                -0.980841,
+                -0.18388
+            ],
+            "type": 35665
+        },
+        "attribute_1196": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1129368,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_11969": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6882168,
+            "byteStride": 12,
+            "count": 512,
+            "max": [
+                11.556,
+                8.16,
+                29.9292
+            ],
+            "min": [
+                4.5972,
+                1.44,
+                26.7972
+            ],
+            "type": 35665
+        },
+        "attribute_11971": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6888312,
+            "byteStride": 12,
+            "count": 512,
+            "max": [
+                0.963773,
+                0.980638,
+                0.982777
+            ],
+            "min": [
+                -0.963773,
+                -0.980638,
+                -0.982777
+            ],
+            "type": 35665
+        },
+        "attribute_11989": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6894456,
+            "byteStride": 12,
+            "count": 5814,
+            "max": [
+                12.0276,
+                8.6832,
+                30.4008
+            ],
+            "min": [
+                1.0572,
+                0.96,
+                9.3912
+            ],
+            "type": 35665
+        },
+        "attribute_11991": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 6964224,
+            "byteStride": 12,
+            "count": 5814,
+            "max": [
+                0.855066,
+                0.783506,
+                0.848586
+            ],
+            "min": [
+                -0.855066,
+                -0.783506,
+                -0.848586
+            ],
+            "type": 35665
+        },
+        "attribute_120": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 162288,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_12010": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7033992,
+            "byteStride": 12,
+            "count": 324,
+            "max": [
+                5.7168,
+                57.6,
+                5.7132
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12012": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7037880,
+            "byteStride": 12,
+            "count": 324,
+            "max": [
+                0.98387,
+                1,
+                0.984085
+            ],
+            "min": [
+                -0.98387,
+                -1,
+                -0.984085
+            ],
+            "type": 35665
+        },
+        "attribute_12030": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7041768,
+            "byteStride": 12,
+            "count": 780,
+            "max": [
+                13.158,
+                9.12,
+                18.8172
+            ],
+            "min": [
+                5.4792,
+                4.7976,
+                11.1384
+            ],
+            "type": 35665
+        },
+        "attribute_12032": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7051128,
+            "byteStride": 12,
+            "count": 780,
+            "max": [
+                0.983955,
+                1,
+                0.983767
+            ],
+            "min": [
+                -0.983955,
+                -1,
+                -0.983767
+            ],
+            "type": 35665
+        },
+        "attribute_12050": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7060488,
+            "byteStride": 12,
+            "count": 3622,
+            "max": [
+                13.638,
+                9.12,
+                19.2972
+            ],
+            "min": [
+                0.3528,
+                0,
+                0.8916
+            ],
+            "type": 35665
+        },
+        "attribute_12052": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7103952,
+            "byteStride": 12,
+            "count": 3622,
+            "max": [
+                0.999888,
+                1,
+                0.999888
+            ],
+            "min": [
+                -0.999888,
+                -1,
+                -0.999888
+            ],
+            "type": 35665
+        },
+        "attribute_12070": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7147416,
+            "byteStride": 12,
+            "count": 1139,
+            "max": [
+                8.3868,
+                8.6424,
+                4.0728
+            ],
+            "min": [
+                0,
+                0.0012,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12072": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7161084,
+            "byteStride": 12,
+            "count": 1139,
+            "max": [
+                0.929851,
+                1,
+                0.930126
+            ],
+            "min": [
+                -0.929851,
+                -1,
+                -0.930126
+            ],
+            "type": 35665
+        },
+        "attribute_12090": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7174752,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                15.9576,
+                5.7996,
+                28.896
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12092": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7179360,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.929772,
+                0.999999,
+                0.930152
+            ],
+            "min": [
+                -0.929772,
+                -0.999999,
+                -0.930152
+            ],
+            "type": 35665
+        },
+        "attribute_12110": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7183968,
+            "byteStride": 12,
+            "count": 3756,
+            "max": [
+                16.62,
+                9.6084,
+                20.1276
+            ],
+            "min": [
+                1.7832,
+                0,
+                0.702
+            ],
+            "type": 35665
+        },
+        "attribute_12112": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7229040,
+            "byteStride": 12,
+            "count": 3756,
+            "max": [
+                0.983955,
+                1,
+                0.996623
+            ],
+            "min": [
+                -0.983955,
+                -1,
+                -0.996623
+            ],
+            "type": 35665
+        },
+        "attribute_12130": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7274112,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                3.9036,
+                7.6884,
+                10.2972
+            ],
+            "min": [
+                0,
+                1.9272,
+                4.2336
+            ],
+            "type": 35665
+        },
+        "attribute_12132": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7277568,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.930155,
+                0.980911,
+                0.912278
+            ],
+            "min": [
+                -0.930155,
+                -0.980911,
+                -0.912278
+            ],
+            "type": 35665
+        },
+        "attribute_1214": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1132152,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_12150": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7281024,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                14.6172,
+                7.68,
+                6.0624
+            ],
+            "min": [
+                10.7136,
+                1.9188,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12152": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7284480,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.930155,
+                0.980949,
+                0.912278
+            ],
+            "min": [
+                -0.930155,
+                -0.980949,
+                -0.912278
+            ],
+            "type": 35665
+        },
+        "attribute_1216": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1134648,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_12170": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7287936,
+            "byteStride": 12,
+            "count": 780,
+            "max": [
+                13.158,
+                9.12,
+                18.8172
+            ],
+            "min": [
+                5.4792,
+                4.7976,
+                11.1384
+            ],
+            "type": 35665
+        },
+        "attribute_12172": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7297296,
+            "byteStride": 12,
+            "count": 780,
+            "max": [
+                0.983955,
+                1,
+                0.983767
+            ],
+            "min": [
+                -0.983955,
+                -1,
+                -0.983767
+            ],
+            "type": 35665
+        },
+        "attribute_12190": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7306656,
+            "byteStride": 12,
+            "count": 3622,
+            "max": [
+                13.638,
+                9.12,
+                19.2972
+            ],
+            "min": [
+                0.3528,
+                0,
+                0.8916
+            ],
+            "type": 35665
+        },
+        "attribute_12192": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7350120,
+            "byteStride": 12,
+            "count": 3622,
+            "max": [
+                0.999888,
+                1,
+                0.999888
+            ],
+            "min": [
+                -0.999888,
+                -1,
+                -0.999888
+            ],
+            "type": 35665
+        },
+        "attribute_12210": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7393584,
+            "byteStride": 12,
+            "count": 1139,
+            "max": [
+                8.3868,
+                8.6424,
+                4.0728
+            ],
+            "min": [
+                0,
+                0.0012,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12212": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7407252,
+            "byteStride": 12,
+            "count": 1139,
+            "max": [
+                0.929851,
+                1,
+                0.930126
+            ],
+            "min": [
+                -0.929851,
+                -1,
+                -0.930126
+            ],
+            "type": 35665
+        },
+        "attribute_12230": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7420920,
+            "byteStride": 12,
+            "count": 3756,
+            "max": [
+                16.62,
+                9.6084,
+                20.1276
+            ],
+            "min": [
+                1.7832,
+                0,
+                0.702
+            ],
+            "type": 35665
+        },
+        "attribute_12232": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7465992,
+            "byteStride": 12,
+            "count": 3756,
+            "max": [
+                0.983955,
+                1,
+                0.996623
+            ],
+            "min": [
+                -0.983955,
+                -1,
+                -0.996623
+            ],
+            "type": 35665
+        },
+        "attribute_12250": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7511064,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                3.9036,
+                7.6884,
+                10.2972
+            ],
+            "min": [
+                0,
+                1.9272,
+                4.2336
+            ],
+            "type": 35665
+        },
+        "attribute_12252": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7514520,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.930155,
+                0.980911,
+                0.912278
+            ],
+            "min": [
+                -0.930155,
+                -0.980911,
+                -0.912278
+            ],
+            "type": 35665
+        },
+        "attribute_12270": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7517976,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                14.6172,
+                7.68,
+                6.0624
+            ],
+            "min": [
+                10.7136,
+                1.9188,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12272": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7521432,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.930155,
+                0.980949,
+                0.912278
+            ],
+            "min": [
+                -0.930155,
+                -0.980949,
+                -0.912278
+            ],
+            "type": 35665
+        },
+        "attribute_12290": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7524888,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                15.9576,
+                5.7996,
+                28.896
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12292": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7529496,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.929772,
+                0.999999,
+                0.930152
+            ],
+            "min": [
+                -0.929772,
+                -0.999999,
+                -0.930152
+            ],
+            "type": 35665
+        },
+        "attribute_12325": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7534104,
+            "byteStride": 12,
+            "count": 642,
+            "max": [
+                3.858,
+                19.2012,
+                19.2024
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12327": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7541808,
+            "byteStride": 12,
+            "count": 642,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1234": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1137144,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                113.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                107.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1236": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1140984,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12360": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7549512,
+            "byteStride": 12,
+            "count": 642,
+            "max": [
+                3.858,
+                19.2012,
+                19.2024
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12362": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7557216,
+            "byteStride": 12,
+            "count": 642,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12380": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7564920,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1038,
+                31.68,
+                22.0976
+            ],
+            "min": [
+                33.0156,
+                0,
+                9.24662
+            ],
+            "type": 35665
+        },
+        "attribute_12382": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7573200,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.94437,
+                1,
+                0.973205
+            ],
+            "min": [
+                -0.94437,
+                -1,
+                -0.973205
+            ],
+            "type": 35665
+        },
+        "attribute_12400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7581480,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                48.7298,
+                31.68,
+                29.849
+            ],
+            "min": [
+                35.0746,
+                0,
+                19.0106
+            ],
+            "type": 35665
+        },
+        "attribute_12402": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7589280,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.994915,
+                1,
+                1
+            ],
+            "min": [
+                -0.994915,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7597080,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                45.3421,
+                31.68,
+                29.2335
+            ],
+            "min": [
+                42.5331,
+                26.4,
+                28.6205
+            ],
+            "type": 35665
+        },
+        "attribute_12422": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7597296,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.211997,
+                0.0117743,
+                0.980193
+            ],
+            "min": [
+                -0.211997,
+                -0.0117743,
+                -0.980193
+            ],
+            "type": 35665
+        },
+        "attribute_12440": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7597512,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                43.3813,
+                31.68,
+                17.6936
+            ],
+            "min": [
+                29.2055,
+                0,
+                2.50469
+            ],
+            "type": 35665
+        },
+        "attribute_12442": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7605792,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911927,
+                1,
+                0.847582
+            ],
+            "min": [
+                -0.911927,
+                -1,
+                -0.847582
+            ],
+            "type": 35665
+        },
+        "attribute_12460": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7614072,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                34.8963,
+                31.68,
+                14.6365
+            ],
+            "min": [
+                24.3324,
+                0,
+                0.12175
+            ],
+            "type": 35665
+        },
+        "attribute_12462": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7622088,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.99999,
+                1,
+                0.993922
+            ],
+            "min": [
+                -0.99999,
+                -1,
+                -0.993922
+            ],
+            "type": 35665
+        },
+        "attribute_12480": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7630104,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.3831,
+                5.28,
+                5.85944
+            ],
+            "min": [
+                24.3564,
+                0,
+                2.98844
+            ],
+            "type": 35665
+        },
+        "attribute_12482": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7630320,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999959,
+                0.0007971,
+                0.0110205
+            ],
+            "min": [
+                -0.999959,
+                -0.0007971,
+                -0.0110205
+            ],
+            "type": 35665
+        },
+        "attribute_12500": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7630536,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.8828,
+                31.68,
+                21.9916
+            ],
+            "min": [
+                0.64638,
+                0,
+                9.34862
+            ],
+            "type": 35665
+        },
+        "attribute_12502": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7638816,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943994,
+                1,
+                0.980107
+            ],
+            "min": [
+                -0.943994,
+                -1,
+                -0.980107
+            ],
+            "type": 35665
+        },
+        "attribute_12520": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7647096,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                24.4755,
+                31.68,
+                14.5712
+            ],
+            "min": [
+                13.8152,
+                0,
+                0.163971
+            ],
+            "type": 35665
+        },
+        "attribute_12522": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7654896,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.999982,
+                1,
+                0.994048
+            ],
+            "min": [
+                -0.999982,
+                -1,
+                -0.994048
+            ],
+            "type": 35665
+        },
+        "attribute_1254": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1144824,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                94.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                88.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_12540": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7662696,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.7137,
+                31.68,
+                17.5985
+            ],
+            "min": [
+                5.34017,
+                0,
+                2.58681
+            ],
+            "type": 35665
+        },
+        "attribute_12542": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7670976,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.898201,
+                1,
+                0.848187
+            ],
+            "min": [
+                -0.898201,
+                -1,
+                -0.848187
+            ],
+            "type": 35665
+        },
+        "attribute_1256": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1148664,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12560": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7679256,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                13.7425,
+                31.68,
+                29.9507
+            ],
+            "min": [
+                0.0862085,
+                0,
+                19.1122
+            ],
+            "type": 35665
+        },
+        "attribute_12562": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7687536,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.994959,
+                1,
+                1
+            ],
+            "min": [
+                -0.994959,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12580": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7695816,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.7974,
+                31.68,
+                39.7167
+            ],
+            "min": [
+                0.709813,
+                0,
+                26.8693
+            ],
+            "type": 35665
+        },
+        "attribute_12582": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7704096,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.944513,
+                1,
+                0.973305
+            ],
+            "min": [
+                -0.944513,
+                -1,
+                -0.973305
+            ],
+            "type": 35665
+        },
+        "attribute_12600": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7712376,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.4296,
+                31.68,
+                5.89506
+            ],
+            "min": [
+                24.3684,
+                26.4,
+                3.02852
+            ],
+            "type": 35665
+        },
+        "attribute_12602": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7712592,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999886,
+                0.0117743,
+                0.0238999
+            ],
+            "min": [
+                -0.999886,
+                -0.0117743,
+                -0.0238999
+            ],
+            "type": 35665
+        },
+        "attribute_12620": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7712808,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                35.0439,
+                31.68,
+                48.8074
+            ],
+            "min": [
+                24.3621,
+                0,
+                34.3911
+            ],
+            "type": 35665
+        },
+        "attribute_12622": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7720824,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.999968,
+                1,
+                0.993831
+            ],
+            "min": [
+                -0.999968,
+                -1,
+                -0.993831
+            ],
+            "type": 35665
+        },
+        "attribute_12640": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7728840,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                48.7298,
+                31.68,
+                29.8696
+            ],
+            "min": [
+                35.0724,
+                0,
+                19.0312
+            ],
+            "type": 35665
+        },
+        "attribute_12642": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7737264,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                0.994983,
+                1,
+                1
+            ],
+            "min": [
+                -0.994983,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12660": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7745688,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1673,
+                31.68,
+                39.6312
+            ],
+            "min": [
+                32.9302,
+                0,
+                26.9846
+            ],
+            "type": 35665
+        },
+        "attribute_12662": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7753968,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943851,
+                1,
+                0.98002
+            ],
+            "min": [
+                -0.943851,
+                -1,
+                -0.98002
+            ],
+            "type": 35665
+        },
+        "attribute_12680": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7762248,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                24.4898,
+                31.68,
+                48.8498
+            ],
+            "min": [
+                13.9102,
+                0,
+                34.3329
+            ],
+            "type": 35665
+        },
+        "attribute_12682": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7770528,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.999992,
+                1,
+                0.993874
+            ],
+            "min": [
+                -0.999992,
+                -1,
+                -0.993874
+            ],
+            "type": 35665
+        },
+        "attribute_12700": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7778808,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                48.1086,
+                31.68,
+                22.1069
+            ],
+            "min": [
+                33.0215,
+                0,
+                9.26313
+            ],
+            "type": 35665
+        },
+        "attribute_12702": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7786968,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                0.944656,
+                1,
+                0.973405
+            ],
+            "min": [
+                -0.944656,
+                -1,
+                -0.973405
+            ],
+            "type": 35665
+        },
+        "attribute_12720": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7795128,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.6062,
+                31.68,
+                46.4623
+            ],
+            "min": [
+                5.42806,
+                0,
+                31.2742
+            ],
+            "type": 35665
+        },
+        "attribute_12722": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7803408,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911749,
+                1,
+                0.847351
+            ],
+            "min": [
+                -0.911749,
+                -1,
+                -0.847351
+            ],
+            "type": 35665
+        },
+        "attribute_1274": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1152504,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12740": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7811688,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                43.4692,
+                31.68,
+                46.3893
+            ],
+            "min": [
+                29.098,
+                0,
+                31.3767
+            ],
+            "type": 35665
+        },
+        "attribute_12742": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7819488,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.898392,
+                1,
+                0.848417
+            ],
+            "min": [
+                -0.898392,
+                -1,
+                -0.848417
+            ],
+            "type": 35665
+        },
+        "attribute_1276": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1155288,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12760": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7827288,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7789,
+                5.28,
+                43.8332
+            ],
+            "min": [
+                32.5096,
+                0,
+                41.2579
+            ],
+            "type": 35665
+        },
+        "attribute_12762": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7827504,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.897081,
+                0.0007971,
+                0.443649
+            ],
+            "min": [
+                -0.897081,
+                -0.0007971,
+                -0.443649
+            ],
+            "type": 35665
+        },
+        "attribute_12780": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7827720,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7506,
+                31.68,
+                43.8188
+            ],
+            "min": [
+                32.4522,
+                26.4,
+                41.246
+            ],
+            "type": 35665
+        },
+        "attribute_12782": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7827936,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.896817,
+                0.0117743,
+                0.455144
+            ],
+            "min": [
+                -0.896817,
+                -0.0117743,
+                -0.455144
+            ],
+            "type": 35665
+        },
+        "attribute_12800": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7828152,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                41.2023,
+                5.28,
+                12.8738
+            ],
+            "min": [
+                38.9717,
+                0,
+                11.066
+            ],
+            "type": 35665
+        },
+        "attribute_12802": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7828368,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.630959,
+                0.0007971,
+                0.77707
+            ],
+            "min": [
+                -0.630959,
+                -0.0007971,
+                -0.77707
+            ],
+            "type": 35665
+        },
+        "attribute_12852": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7828584,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                36.5112,
+                27.84,
+                36.5112
+            ],
+            "min": [
+                -0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_12854": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7900536,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                0.999277,
+                1,
+                0.999241
+            ],
+            "min": [
+                -0.999277,
+                -1,
+                -0.999241
+            ],
+            "type": 35665
+        },
+        "attribute_12872": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 7972488,
+            "byteStride": 12,
+            "count": 8051,
+            "max": [
+                28.3932,
+                20.16,
+                28.3428
+            ],
+            "min": [
+                8.118,
+                7.2,
+                8.1684
+            ],
+            "type": 35665
+        },
+        "attribute_12874": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8069100,
+            "byteStride": 12,
+            "count": 8051,
+            "max": [
+                0.998081,
+                1,
+                1
+            ],
+            "min": [
+                -0.998081,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_12892": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8165712,
+            "byteStride": 12,
+            "count": 918,
+            "max": [
+                22.5791,
+                24,
+                22.5715
+            ],
+            "min": [
+                13.944,
+                14.4,
+                13.9363
+            ],
+            "type": 35665
+        },
+        "attribute_12894": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8176728,
+            "byteStride": 12,
+            "count": 918,
+            "max": [
+                0.998666,
+                1,
+                0.998631
+            ],
+            "min": [
+                -0.998666,
+                -1,
+                -0.998631
+            ],
+            "type": 35665
+        },
+        "attribute_12913": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8187744,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1038,
+                31.68,
+                22.0976
+            ],
+            "min": [
+                33.0156,
+                0,
+                9.24662
+            ],
+            "type": 35665
+        },
+        "attribute_12915": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8196024,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.94437,
+                1,
+                0.973205
+            ],
+            "min": [
+                -0.94437,
+                -1,
+                -0.973205
+            ],
+            "type": 35665
+        },
+        "attribute_12933": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8204304,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                48.7298,
+                31.68,
+                29.849
+            ],
+            "min": [
+                35.0746,
+                0,
+                19.0106
+            ],
+            "type": 35665
+        },
+        "attribute_12935": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8212104,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.994915,
+                1,
+                1
+            ],
+            "min": [
+                -0.994915,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1294": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1158072,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                61.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                53.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_12953": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8219904,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                45.3421,
+                31.68,
+                29.2335
+            ],
+            "min": [
+                42.5331,
+                26.4,
+                28.6205
+            ],
+            "type": 35665
+        },
+        "attribute_12955": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8220120,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.211997,
+                0.0117743,
+                0.980193
+            ],
+            "min": [
+                -0.211997,
+                -0.0117743,
+                -0.980193
+            ],
+            "type": 35665
+        },
+        "attribute_1296": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1160568,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_12973": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8220336,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                43.3813,
+                31.68,
+                17.6936
+            ],
+            "min": [
+                29.2055,
+                0,
+                2.50469
+            ],
+            "type": 35665
+        },
+        "attribute_12975": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8228616,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911927,
+                1,
+                0.847582
+            ],
+            "min": [
+                -0.911927,
+                -1,
+                -0.847582
+            ],
+            "type": 35665
+        },
+        "attribute_12993": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8236896,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                34.8963,
+                31.68,
+                14.6365
+            ],
+            "min": [
+                24.3324,
+                0,
+                0.12175
+            ],
+            "type": 35665
+        },
+        "attribute_12995": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8244912,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.99999,
+                1,
+                0.993922
+            ],
+            "min": [
+                -0.99999,
+                -1,
+                -0.993922
+            ],
+            "type": 35665
+        },
+        "attribute_13013": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8252928,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.3831,
+                5.28,
+                5.85944
+            ],
+            "min": [
+                24.3564,
+                0,
+                2.98844
+            ],
+            "type": 35665
+        },
+        "attribute_13015": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8253144,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999959,
+                0.0007971,
+                0.0110205
+            ],
+            "min": [
+                -0.999959,
+                -0.0007971,
+                -0.0110205
+            ],
+            "type": 35665
+        },
+        "attribute_13033": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8253360,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.8828,
+                31.68,
+                21.9916
+            ],
+            "min": [
+                0.64638,
+                0,
+                9.34862
+            ],
+            "type": 35665
+        },
+        "attribute_13035": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8261640,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943994,
+                1,
+                0.980107
+            ],
+            "min": [
+                -0.943994,
+                -1,
+                -0.980107
+            ],
+            "type": 35665
+        },
+        "attribute_13053": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8269920,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                24.4755,
+                31.68,
+                14.5712
+            ],
+            "min": [
+                13.8152,
+                0,
+                0.163971
+            ],
+            "type": 35665
+        },
+        "attribute_13055": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8277720,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.999982,
+                1,
+                0.994048
+            ],
+            "min": [
+                -0.999982,
+                -1,
+                -0.994048
+            ],
+            "type": 35665
+        },
+        "attribute_13073": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8285520,
+            "byteStride": 12,
+            "count": 689,
+            "max": [
+                13.7425,
+                31.68,
+                29.9507
+            ],
+            "min": [
+                0.0862085,
+                0,
+                19.1122
+            ],
+            "type": 35665
+        },
+        "attribute_13075": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8293788,
+            "byteStride": 12,
+            "count": 689,
+            "max": [
+                0.994959,
+                1,
+                1
+            ],
+            "min": [
+                -0.994959,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13093": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8302056,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.7137,
+                31.68,
+                17.5985
+            ],
+            "min": [
+                5.34017,
+                0,
+                2.58681
+            ],
+            "type": 35665
+        },
+        "attribute_13095": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8310336,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.898201,
+                1,
+                0.848187
+            ],
+            "min": [
+                -0.898201,
+                -1,
+                -0.848187
+            ],
+            "type": 35665
+        },
+        "attribute_13113": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8318616,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.7974,
+                31.68,
+                39.7167
+            ],
+            "min": [
+                0.709813,
+                0,
+                26.8693
+            ],
+            "type": 35665
+        },
+        "attribute_13115": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8326896,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.944513,
+                1,
+                0.973305
+            ],
+            "min": [
+                -0.944513,
+                -1,
+                -0.973305
+            ],
+            "type": 35665
+        },
+        "attribute_13133": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8335176,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.4296,
+                31.68,
+                5.89506
+            ],
+            "min": [
+                24.3684,
+                26.4,
+                3.02852
+            ],
+            "type": 35665
+        },
+        "attribute_13135": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8335392,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999886,
+                0.0117743,
+                0.0238999
+            ],
+            "min": [
+                -0.999886,
+                -0.0117743,
+                -0.0238999
+            ],
+            "type": 35665
+        },
+        "attribute_1314": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1163064,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                65.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                59.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_13153": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8335608,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                35.0439,
+                31.68,
+                48.8074
+            ],
+            "min": [
+                24.3621,
+                0,
+                34.3911
+            ],
+            "type": 35665
+        },
+        "attribute_13155": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8343624,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.999968,
+                1,
+                0.993831
+            ],
+            "min": [
+                -0.999968,
+                -1,
+                -0.993831
+            ],
+            "type": 35665
+        },
+        "attribute_1316": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1166904,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13173": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8351640,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                48.7298,
+                31.68,
+                29.8696
+            ],
+            "min": [
+                35.0724,
+                0,
+                19.0312
+            ],
+            "type": 35665
+        },
+        "attribute_13175": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8360064,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                0.994983,
+                1,
+                1
+            ],
+            "min": [
+                -0.994983,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13193": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8368488,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1673,
+                31.68,
+                39.6312
+            ],
+            "min": [
+                32.9302,
+                0,
+                26.9846
+            ],
+            "type": 35665
+        },
+        "attribute_13195": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8376768,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943851,
+                1,
+                0.98002
+            ],
+            "min": [
+                -0.943851,
+                -1,
+                -0.98002
+            ],
+            "type": 35665
+        },
+        "attribute_13213": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8385048,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                24.4898,
+                31.68,
+                48.8498
+            ],
+            "min": [
+                13.9102,
+                0,
+                34.3329
+            ],
+            "type": 35665
+        },
+        "attribute_13215": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8393328,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.999992,
+                1,
+                0.993874
+            ],
+            "min": [
+                -0.999992,
+                -1,
+                -0.993874
+            ],
+            "type": 35665
+        },
+        "attribute_13233": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8401608,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                48.1086,
+                31.68,
+                22.1069
+            ],
+            "min": [
+                33.0215,
+                0,
+                9.26313
+            ],
+            "type": 35665
+        },
+        "attribute_13235": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8409768,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                0.944656,
+                1,
+                0.973405
+            ],
+            "min": [
+                -0.944656,
+                -1,
+                -0.973405
+            ],
+            "type": 35665
+        },
+        "attribute_13253": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8417928,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.6062,
+                31.68,
+                46.4623
+            ],
+            "min": [
+                5.42806,
+                0,
+                31.2742
+            ],
+            "type": 35665
+        },
+        "attribute_13255": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8426208,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911749,
+                1,
+                0.847351
+            ],
+            "min": [
+                -0.911749,
+                -1,
+                -0.847351
+            ],
+            "type": 35665
+        },
+        "attribute_13273": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8434488,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                43.4692,
+                31.68,
+                46.3893
+            ],
+            "min": [
+                29.098,
+                0,
+                31.3767
+            ],
+            "type": 35665
+        },
+        "attribute_13275": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8442288,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.898392,
+                1,
+                0.848417
+            ],
+            "min": [
+                -0.898392,
+                -1,
+                -0.848417
+            ],
+            "type": 35665
+        },
+        "attribute_13293": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8450088,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7789,
+                5.28,
+                43.8332
+            ],
+            "min": [
+                32.5096,
+                0,
+                41.2579
+            ],
+            "type": 35665
+        },
+        "attribute_13295": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8450304,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.897081,
+                0.0007971,
+                0.443649
+            ],
+            "min": [
+                -0.897081,
+                -0.0007971,
+                -0.443649
+            ],
+            "type": 35665
+        },
+        "attribute_13313": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8450520,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7506,
+                31.68,
+                43.8188
+            ],
+            "min": [
+                32.4522,
+                26.4,
+                41.246
+            ],
+            "type": 35665
+        },
+        "attribute_13315": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8450736,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.896817,
+                0.0117743,
+                0.455144
+            ],
+            "min": [
+                -0.896817,
+                -0.0117743,
+                -0.455144
+            ],
+            "type": 35665
+        },
+        "attribute_13333": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8450952,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                41.2023,
+                5.28,
+                12.8738
+            ],
+            "min": [
+                38.9717,
+                0,
+                11.066
+            ],
+            "type": 35665
+        },
+        "attribute_13335": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8451168,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.630959,
+                0.0007971,
+                0.77707
+            ],
+            "min": [
+                -0.630959,
+                -0.0007971,
+                -0.77707
+            ],
+            "type": 35665
+        },
+        "attribute_1334": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1170744,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                84.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                78.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1336": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1174584,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13385": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8451384,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                36.5112,
+                27.84,
+                36.5112
+            ],
+            "min": [
+                -0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13387": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8523336,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                0.999277,
+                1,
+                0.999241
+            ],
+            "min": [
+                -0.999277,
+                -1,
+                -0.999241
+            ],
+            "type": 35665
+        },
+        "attribute_13405": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8595288,
+            "byteStride": 12,
+            "count": 8047,
+            "max": [
+                28.3932,
+                20.16,
+                28.3428
+            ],
+            "min": [
+                8.118,
+                7.2,
+                8.1684
+            ],
+            "type": 35665
+        },
+        "attribute_13407": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8691852,
+            "byteStride": 12,
+            "count": 8047,
+            "max": [
+                0.998081,
+                1,
+                1
+            ],
+            "min": [
+                -0.998081,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13425": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8788416,
+            "byteStride": 12,
+            "count": 916,
+            "max": [
+                22.5791,
+                24,
+                22.5715
+            ],
+            "min": [
+                13.944,
+                14.4,
+                13.9363
+            ],
+            "type": 35665
+        },
+        "attribute_13427": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8799408,
+            "byteStride": 12,
+            "count": 916,
+            "max": [
+                0.998666,
+                1,
+                0.998631
+            ],
+            "min": [
+                -0.998666,
+                -1,
+                -0.998631
+            ],
+            "type": 35665
+        },
+        "attribute_13446": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8810400,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1038,
+                31.68,
+                22.0976
+            ],
+            "min": [
+                33.0156,
+                0,
+                9.24662
+            ],
+            "type": 35665
+        },
+        "attribute_13448": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8818680,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.94437,
+                1,
+                0.973205
+            ],
+            "min": [
+                -0.94437,
+                -1,
+                -0.973205
+            ],
+            "type": 35665
+        },
+        "attribute_13466": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8826960,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                48.7298,
+                31.68,
+                29.849
+            ],
+            "min": [
+                35.0746,
+                0,
+                19.0106
+            ],
+            "type": 35665
+        },
+        "attribute_13468": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8834760,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.994915,
+                1,
+                1
+            ],
+            "min": [
+                -0.994915,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13486": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8842560,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                45.3421,
+                31.68,
+                29.2335
+            ],
+            "min": [
+                42.5331,
+                26.4,
+                28.6205
+            ],
+            "type": 35665
+        },
+        "attribute_13488": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8842776,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.211997,
+                0.0117743,
+                0.980193
+            ],
+            "min": [
+                -0.211997,
+                -0.0117743,
+                -0.980193
+            ],
+            "type": 35665
+        },
+        "attribute_13506": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8842992,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                43.3813,
+                31.68,
+                17.6936
+            ],
+            "min": [
+                29.2055,
+                0,
+                2.50469
+            ],
+            "type": 35665
+        },
+        "attribute_13508": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8851272,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911927,
+                1,
+                0.847582
+            ],
+            "min": [
+                -0.911927,
+                -1,
+                -0.847582
+            ],
+            "type": 35665
+        },
+        "attribute_13526": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8859552,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                34.8963,
+                31.68,
+                14.6365
+            ],
+            "min": [
+                24.3324,
+                0,
+                0.12175
+            ],
+            "type": 35665
+        },
+        "attribute_13528": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8867568,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.99999,
+                1,
+                0.993922
+            ],
+            "min": [
+                -0.99999,
+                -1,
+                -0.993922
+            ],
+            "type": 35665
+        },
+        "attribute_1354": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1178424,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                88.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                84.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13546": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8875584,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.3831,
+                5.28,
+                5.85944
+            ],
+            "min": [
+                24.3564,
+                0,
+                2.98844
+            ],
+            "type": 35665
+        },
+        "attribute_13548": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8875800,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999959,
+                0.0007971,
+                0.0110205
+            ],
+            "min": [
+                -0.999959,
+                -0.0007971,
+                -0.0110205
+            ],
+            "type": 35665
+        },
+        "attribute_1356": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1181208,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13566": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8876016,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.8828,
+                31.68,
+                21.9916
+            ],
+            "min": [
+                0.64638,
+                0,
+                9.34862
+            ],
+            "type": 35665
+        },
+        "attribute_13568": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8884296,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943994,
+                1,
+                0.980107
+            ],
+            "min": [
+                -0.943994,
+                -1,
+                -0.980107
+            ],
+            "type": 35665
+        },
+        "attribute_13586": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8892576,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                24.4755,
+                31.68,
+                14.5712
+            ],
+            "min": [
+                13.8152,
+                0,
+                0.163971
+            ],
+            "type": 35665
+        },
+        "attribute_13588": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8900376,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.999982,
+                1,
+                0.994048
+            ],
+            "min": [
+                -0.999982,
+                -1,
+                -0.994048
+            ],
+            "type": 35665
+        },
+        "attribute_13606": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8908176,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.7137,
+                31.68,
+                17.5985
+            ],
+            "min": [
+                5.34017,
+                0,
+                2.58681
+            ],
+            "type": 35665
+        },
+        "attribute_13608": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8916456,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.898201,
+                1,
+                0.848187
+            ],
+            "min": [
+                -0.898201,
+                -1,
+                -0.848187
+            ],
+            "type": 35665
+        },
+        "attribute_13626": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8924736,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                13.7425,
+                31.68,
+                29.9507
+            ],
+            "min": [
+                0.0862085,
+                0,
+                19.1122
+            ],
+            "type": 35665
+        },
+        "attribute_13628": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8933016,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.994959,
+                1,
+                1
+            ],
+            "min": [
+                -0.994959,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13646": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8941296,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.7974,
+                31.68,
+                39.7167
+            ],
+            "min": [
+                0.709813,
+                0,
+                26.8693
+            ],
+            "type": 35665
+        },
+        "attribute_13648": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8949576,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.944513,
+                1,
+                0.973305
+            ],
+            "min": [
+                -0.944513,
+                -1,
+                -0.973305
+            ],
+            "type": 35665
+        },
+        "attribute_13666": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8957856,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.4296,
+                31.68,
+                5.89506
+            ],
+            "min": [
+                24.3684,
+                26.4,
+                3.02852
+            ],
+            "type": 35665
+        },
+        "attribute_13668": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8958072,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999886,
+                0.0117743,
+                0.0238999
+            ],
+            "min": [
+                -0.999886,
+                -0.0117743,
+                -0.0238999
+            ],
+            "type": 35665
+        },
+        "attribute_13686": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8958288,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                35.0439,
+                31.68,
+                48.8074
+            ],
+            "min": [
+                24.3621,
+                0,
+                34.3911
+            ],
+            "type": 35665
+        },
+        "attribute_13688": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8966304,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.999968,
+                1,
+                0.993831
+            ],
+            "min": [
+                -0.999968,
+                -1,
+                -0.993831
+            ],
+            "type": 35665
+        },
+        "attribute_13706": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8974320,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                48.7298,
+                31.68,
+                29.8696
+            ],
+            "min": [
+                35.0724,
+                0,
+                19.0312
+            ],
+            "type": 35665
+        },
+        "attribute_13708": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8982744,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                0.994983,
+                1,
+                1
+            ],
+            "min": [
+                -0.994983,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13726": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8991168,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1673,
+                31.68,
+                39.6312
+            ],
+            "min": [
+                32.9302,
+                0,
+                26.9846
+            ],
+            "type": 35665
+        },
+        "attribute_13728": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 8999448,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943851,
+                1,
+                0.98002
+            ],
+            "min": [
+                -0.943851,
+                -1,
+                -0.98002
+            ],
+            "type": 35665
+        },
+        "attribute_1374": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1183992,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                90.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                82.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_13746": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9007728,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                24.4898,
+                31.68,
+                48.8498
+            ],
+            "min": [
+                13.9102,
+                0,
+                34.3329
+            ],
+            "type": 35665
+        },
+        "attribute_13748": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9016008,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.999992,
+                1,
+                0.993874
+            ],
+            "min": [
+                -0.999992,
+                -1,
+                -0.993874
+            ],
+            "type": 35665
+        },
+        "attribute_1376": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1186488,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_13766": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9024288,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                48.1086,
+                31.68,
+                22.1069
+            ],
+            "min": [
+                33.0215,
+                0,
+                9.26313
+            ],
+            "type": 35665
+        },
+        "attribute_13768": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9032448,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                0.944656,
+                1,
+                0.973405
+            ],
+            "min": [
+                -0.944656,
+                -1,
+                -0.973405
+            ],
+            "type": 35665
+        },
+        "attribute_13786": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9040608,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.6062,
+                31.68,
+                46.4623
+            ],
+            "min": [
+                5.42806,
+                0,
+                31.2742
+            ],
+            "type": 35665
+        },
+        "attribute_13788": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9048888,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911749,
+                1,
+                0.847351
+            ],
+            "min": [
+                -0.911749,
+                -1,
+                -0.847351
+            ],
+            "type": 35665
+        },
+        "attribute_138": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 164784,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13806": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9057168,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                43.4692,
+                31.68,
+                46.3893
+            ],
+            "min": [
+                29.098,
+                0,
+                31.3767
+            ],
+            "type": 35665
+        },
+        "attribute_13808": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9064968,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.898392,
+                1,
+                0.848417
+            ],
+            "min": [
+                -0.898392,
+                -1,
+                -0.848417
+            ],
+            "type": 35665
+        },
+        "attribute_13826": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9072768,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7789,
+                5.28,
+                43.8332
+            ],
+            "min": [
+                32.5096,
+                0,
+                41.2579
+            ],
+            "type": 35665
+        },
+        "attribute_13828": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9072984,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.897081,
+                0.0007971,
+                0.443649
+            ],
+            "min": [
+                -0.897081,
+                -0.0007971,
+                -0.443649
+            ],
+            "type": 35665
+        },
+        "attribute_13846": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9073200,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7506,
+                31.68,
+                43.8188
+            ],
+            "min": [
+                32.4522,
+                26.4,
+                41.246
+            ],
+            "type": 35665
+        },
+        "attribute_13848": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9073416,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.896817,
+                0.0117743,
+                0.455144
+            ],
+            "min": [
+                -0.896817,
+                -0.0117743,
+                -0.455144
+            ],
+            "type": 35665
+        },
+        "attribute_13866": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9073632,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                41.2023,
+                5.28,
+                12.8738
+            ],
+            "min": [
+                38.9717,
+                0,
+                11.066
+            ],
+            "type": 35665
+        },
+        "attribute_13868": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9073848,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.630959,
+                0.0007971,
+                0.77707
+            ],
+            "min": [
+                -0.630959,
+                -0.0007971,
+                -0.77707
+            ],
+            "type": 35665
+        },
+        "attribute_13918": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9074064,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                36.5112,
+                27.84,
+                36.5112
+            ],
+            "min": [
+                -0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13920": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9146016,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                0.999277,
+                1,
+                0.999241
+            ],
+            "min": [
+                -0.999277,
+                -1,
+                -0.999241
+            ],
+            "type": 35665
+        },
+        "attribute_13938": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9217968,
+            "byteStride": 12,
+            "count": 8046,
+            "max": [
+                28.3932,
+                20.16,
+                28.3428
+            ],
+            "min": [
+                8.118,
+                7.2,
+                8.1684
+            ],
+            "type": 35665
+        },
+        "attribute_1394": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1188984,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13940": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9314520,
+            "byteStride": 12,
+            "count": 8046,
+            "max": [
+                0.998081,
+                1,
+                1
+            ],
+            "min": [
+                -0.998081,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13958": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9411072,
+            "byteStride": 12,
+            "count": 915,
+            "max": [
+                22.5791,
+                24,
+                22.5715
+            ],
+            "min": [
+                13.944,
+                14.4,
+                13.9363
+            ],
+            "type": 35665
+        },
+        "attribute_1396": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1191768,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_13960": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9422052,
+            "byteStride": 12,
+            "count": 915,
+            "max": [
+                0.998666,
+                1,
+                0.998631
+            ],
+            "min": [
+                -0.998666,
+                -1,
+                -0.998631
+            ],
+            "type": 35665
+        },
+        "attribute_13979": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9433032,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                36.5112,
+                27.84,
+                36.5112
+            ],
+            "min": [
+                -0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_13981": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9504984,
+            "byteStride": 12,
+            "count": 5996,
+            "max": [
+                0.999277,
+                1,
+                0.999241
+            ],
+            "min": [
+                -0.999277,
+                -1,
+                -0.999241
+            ],
+            "type": 35665
+        },
+        "attribute_13999": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9576936,
+            "byteStride": 12,
+            "count": 8051,
+            "max": [
+                28.3932,
+                20.16,
+                28.3428
+            ],
+            "min": [
+                8.118,
+                7.2,
+                8.1684
+            ],
+            "type": 35665
+        },
+        "attribute_140": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 167568,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14001": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9673548,
+            "byteStride": 12,
+            "count": 8051,
+            "max": [
+                0.998081,
+                1,
+                1
+            ],
+            "min": [
+                -0.998081,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14019": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9770160,
+            "byteStride": 12,
+            "count": 917,
+            "max": [
+                22.5791,
+                24,
+                22.5715
+            ],
+            "min": [
+                13.944,
+                14.4,
+                13.9363
+            ],
+            "type": 35665
+        },
+        "attribute_14021": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9781164,
+            "byteStride": 12,
+            "count": 917,
+            "max": [
+                0.998666,
+                1,
+                0.998631
+            ],
+            "min": [
+                -0.998666,
+                -1,
+                -0.998631
+            ],
+            "type": 35665
+        },
+        "attribute_14040": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9792168,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1038,
+                31.68,
+                22.0976
+            ],
+            "min": [
+                33.0156,
+                0,
+                9.24662
+            ],
+            "type": 35665
+        },
+        "attribute_14042": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9800448,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.94437,
+                1,
+                0.973205
+            ],
+            "min": [
+                -0.94437,
+                -1,
+                -0.973205
+            ],
+            "type": 35665
+        },
+        "attribute_14060": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9808728,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                48.7298,
+                31.68,
+                29.849
+            ],
+            "min": [
+                35.0746,
+                0,
+                19.0106
+            ],
+            "type": 35665
+        },
+        "attribute_14062": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9816528,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.994915,
+                1,
+                1
+            ],
+            "min": [
+                -0.994915,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14080": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9824328,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                45.3421,
+                31.68,
+                29.2335
+            ],
+            "min": [
+                42.5331,
+                26.4,
+                28.6205
+            ],
+            "type": 35665
+        },
+        "attribute_14082": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9824544,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.211997,
+                0.0117743,
+                0.980193
+            ],
+            "min": [
+                -0.211997,
+                -0.0117743,
+                -0.980193
+            ],
+            "type": 35665
+        },
+        "attribute_14100": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9824760,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                43.3813,
+                31.68,
+                17.6936
+            ],
+            "min": [
+                29.2055,
+                0,
+                2.50469
+            ],
+            "type": 35665
+        },
+        "attribute_14102": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9833040,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911927,
+                1,
+                0.847582
+            ],
+            "min": [
+                -0.911927,
+                -1,
+                -0.847582
+            ],
+            "type": 35665
+        },
+        "attribute_14120": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9841320,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                34.8963,
+                31.68,
+                14.6365
+            ],
+            "min": [
+                24.3324,
+                0,
+                0.12175
+            ],
+            "type": 35665
+        },
+        "attribute_14122": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9849336,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.99999,
+                1,
+                0.993922
+            ],
+            "min": [
+                -0.99999,
+                -1,
+                -0.993922
+            ],
+            "type": 35665
+        },
+        "attribute_1414": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1194552,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                107.52,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                103.679,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14140": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9857352,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.3831,
+                5.28,
+                5.85944
+            ],
+            "min": [
+                24.3564,
+                0,
+                2.98844
+            ],
+            "type": 35665
+        },
+        "attribute_14142": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9857568,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999959,
+                0.0007971,
+                0.0110205
+            ],
+            "min": [
+                -0.999959,
+                -0.0007971,
+                -0.0110205
+            ],
+            "type": 35665
+        },
+        "attribute_1416": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1197336,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14160": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9857784,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.8828,
+                31.68,
+                21.9916
+            ],
+            "min": [
+                0.64638,
+                0,
+                9.34862
+            ],
+            "type": 35665
+        },
+        "attribute_14162": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9866064,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943994,
+                1,
+                0.980107
+            ],
+            "min": [
+                -0.943994,
+                -1,
+                -0.980107
+            ],
+            "type": 35665
+        },
+        "attribute_14180": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9874344,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                24.4755,
+                31.68,
+                14.5712
+            ],
+            "min": [
+                13.8152,
+                0,
+                0.163971
+            ],
+            "type": 35665
+        },
+        "attribute_14182": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9882144,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.999982,
+                1,
+                0.994048
+            ],
+            "min": [
+                -0.999982,
+                -1,
+                -0.994048
+            ],
+            "type": 35665
+        },
+        "attribute_14200": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9889944,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.7137,
+                31.68,
+                17.5985
+            ],
+            "min": [
+                5.34017,
+                0,
+                2.58681
+            ],
+            "type": 35665
+        },
+        "attribute_14202": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9898224,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.898201,
+                1,
+                0.848187
+            ],
+            "min": [
+                -0.898201,
+                -1,
+                -0.848187
+            ],
+            "type": 35665
+        },
+        "attribute_14220": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9906504,
+            "byteStride": 12,
+            "count": 689,
+            "max": [
+                13.7425,
+                31.68,
+                29.9507
+            ],
+            "min": [
+                0.0862085,
+                0,
+                19.1122
+            ],
+            "type": 35665
+        },
+        "attribute_14222": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9914772,
+            "byteStride": 12,
+            "count": 689,
+            "max": [
+                0.994959,
+                1,
+                1
+            ],
+            "min": [
+                -0.994959,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14240": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9923040,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                15.7974,
+                31.68,
+                39.7167
+            ],
+            "min": [
+                0.709813,
+                0,
+                26.8693
+            ],
+            "type": 35665
+        },
+        "attribute_14242": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9931320,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.944513,
+                1,
+                0.973305
+            ],
+            "min": [
+                -0.944513,
+                -1,
+                -0.973305
+            ],
+            "type": 35665
+        },
+        "attribute_14260": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9939600,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                24.4296,
+                31.68,
+                5.89506
+            ],
+            "min": [
+                24.3684,
+                26.4,
+                3.02852
+            ],
+            "type": 35665
+        },
+        "attribute_14262": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9939816,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.999886,
+                0.0117743,
+                0.0238999
+            ],
+            "min": [
+                -0.999886,
+                -0.0117743,
+                -0.0238999
+            ],
+            "type": 35665
+        },
+        "attribute_14280": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9940032,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                35.0439,
+                31.68,
+                48.8074
+            ],
+            "min": [
+                24.3621,
+                0,
+                34.3911
+            ],
+            "type": 35665
+        },
+        "attribute_14282": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9948048,
+            "byteStride": 12,
+            "count": 668,
+            "max": [
+                0.999968,
+                1,
+                0.993831
+            ],
+            "min": [
+                -0.999968,
+                -1,
+                -0.993831
+            ],
+            "type": 35665
+        },
+        "attribute_14300": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9956064,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                48.7298,
+                31.68,
+                29.8696
+            ],
+            "min": [
+                35.0724,
+                0,
+                19.0312
+            ],
+            "type": 35665
+        },
+        "attribute_14302": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9964488,
+            "byteStride": 12,
+            "count": 702,
+            "max": [
+                0.994983,
+                1,
+                1
+            ],
+            "min": [
+                -0.994983,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14320": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9972912,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                48.1673,
+                31.68,
+                39.6312
+            ],
+            "min": [
+                32.9302,
+                0,
+                26.9846
+            ],
+            "type": 35665
+        },
+        "attribute_14322": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9981192,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.943851,
+                1,
+                0.98002
+            ],
+            "min": [
+                -0.943851,
+                -1,
+                -0.98002
+            ],
+            "type": 35665
+        },
+        "attribute_1434": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1200120,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                109.441,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                101.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_14340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9989472,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                24.4898,
+                31.68,
+                48.8498
+            ],
+            "min": [
+                13.9102,
+                0,
+                34.3329
+            ],
+            "type": 35665
+        },
+        "attribute_14342": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 9997752,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.999992,
+                1,
+                0.993874
+            ],
+            "min": [
+                -0.999992,
+                -1,
+                -0.993874
+            ],
+            "type": 35665
+        },
+        "attribute_1436": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1202616,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_14360": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10006032,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                48.1086,
+                31.68,
+                22.1069
+            ],
+            "min": [
+                33.0215,
+                0,
+                9.26313
+            ],
+            "type": 35665
+        },
+        "attribute_14362": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10014192,
+            "byteStride": 12,
+            "count": 680,
+            "max": [
+                0.944656,
+                1,
+                0.973405
+            ],
+            "min": [
+                -0.944656,
+                -1,
+                -0.973405
+            ],
+            "type": 35665
+        },
+        "attribute_14380": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10022352,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                19.6062,
+                31.68,
+                46.4623
+            ],
+            "min": [
+                5.42806,
+                0,
+                31.2742
+            ],
+            "type": 35665
+        },
+        "attribute_14382": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10030632,
+            "byteStride": 12,
+            "count": 690,
+            "max": [
+                0.911749,
+                1,
+                0.847351
+            ],
+            "min": [
+                -0.911749,
+                -1,
+                -0.847351
+            ],
+            "type": 35665
+        },
+        "attribute_14400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10038912,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                43.4692,
+                31.68,
+                46.3893
+            ],
+            "min": [
+                29.098,
+                0,
+                31.3767
+            ],
+            "type": 35665
+        },
+        "attribute_14402": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10046712,
+            "byteStride": 12,
+            "count": 650,
+            "max": [
+                0.898392,
+                1,
+                0.848417
+            ],
+            "min": [
+                -0.898392,
+                -1,
+                -0.848417
+            ],
+            "type": 35665
+        },
+        "attribute_14420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10054512,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7789,
+                5.28,
+                43.8332
+            ],
+            "min": [
+                32.5096,
+                0,
+                41.2579
+            ],
+            "type": 35665
+        },
+        "attribute_14422": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10054728,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.897081,
+                0.0007971,
+                0.443649
+            ],
+            "min": [
+                -0.897081,
+                -0.0007971,
+                -0.443649
+            ],
+            "type": 35665
+        },
+        "attribute_14440": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10054944,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                33.7506,
+                31.68,
+                43.8188
+            ],
+            "min": [
+                32.4522,
+                26.4,
+                41.246
+            ],
+            "type": 35665
+        },
+        "attribute_14442": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10055160,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.896817,
+                0.0117743,
+                0.455144
+            ],
+            "min": [
+                -0.896817,
+                -0.0117743,
+                -0.455144
+            ],
+            "type": 35665
+        },
+        "attribute_14460": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10055376,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                41.2023,
+                5.28,
+                12.8738
+            ],
+            "min": [
+                38.9717,
+                0,
+                11.066
+            ],
+            "type": 35665
+        },
+        "attribute_14462": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10055592,
+            "byteStride": 12,
+            "count": 18,
+            "max": [
+                0.630959,
+                0.0007971,
+                0.77707
+            ],
+            "min": [
+                -0.630959,
+                -0.0007971,
+                -0.77707
+            ],
+            "type": 35665
+        },
+        "attribute_14512": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10055808,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14514": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10056984,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14532": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10058160,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14534": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10059696,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1454": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1205112,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14552": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10061232,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14554": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10062408,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1456": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1207896,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14572": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10063584,
+            "byteStride": 12,
+            "count": 130,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14574": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10065144,
+            "byteStride": 12,
+            "count": 130,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14592": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10066704,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14594": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10067880,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14612": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10069056,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14614": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10070592,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14632": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10072128,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14634": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10073304,
+            "byteStride": 12,
+            "count": 98,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14652": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10074480,
+            "byteStride": 12,
+            "count": 130,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14654": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10076040,
+            "byteStride": 12,
+            "count": 130,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14672": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10149240,
+            "byteStride": 12,
+            "count": 640,
+            "max": [
+                7.68005,
+                3.63034,
+                7.68065
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14674": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10156920,
+            "byteStride": 12,
+            "count": 640,
+            "max": [
+                0.980948,
+                1,
+                0.980886
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980886
+            ],
+            "type": 35665
+        },
+        "attribute_14692": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10164600,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                17.2801,
+                3.63034,
+                7.68065
+            ],
+            "min": [
+                9.6,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14694": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10172328,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                0.980948,
+                1,
+                0.980886
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980886
+            ],
+            "type": 35665
+        },
+        "attribute_14712": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10180056,
+            "byteStride": 12,
+            "count": 639,
+            "max": [
+                7.68005,
+                3.63034,
+                7.68065
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14714": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10187724,
+            "byteStride": 12,
+            "count": 639,
+            "max": [
+                0.980948,
+                1,
+                0.980886
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980886
+            ],
+            "type": 35665
+        },
+        "attribute_14732": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10195392,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                17.2801,
+                3.63034,
+                7.68065
+            ],
+            "min": [
+                9.6,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14734": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10203120,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                0.980948,
+                1,
+                0.980886
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980886
+            ],
+            "type": 35665
+        },
+        "attribute_1474": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1210680,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_14752": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10077600,
+            "byteStride": 12,
+            "count": 1625,
+            "max": [
+                38.4,
+                38.4,
+                32.16
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14754": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10097100,
+            "byteStride": 12,
+            "count": 1625,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1476": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1214520,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14772": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10116600,
+            "byteStride": 12,
+            "count": 88,
+            "max": [
+                30.72,
+                20.16,
+                28.56
+            ],
+            "min": [
+                28.8,
+                4.8,
+                18.96
+            ],
+            "type": 35665
+        },
+        "attribute_14774": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10117656,
+            "byteStride": 12,
+            "count": 88,
+            "max": [
+                1,
+                1,
+                0.986394
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.986394
+            ],
+            "type": 35665
+        },
+        "attribute_14792": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10118712,
+            "byteStride": 12,
+            "count": 632,
+            "max": [
+                23.04,
+                28.8,
+                28.8
+            ],
+            "min": [
+                15.36,
+                21.12,
+                24.72
+            ],
+            "type": 35665
+        },
+        "attribute_14794": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10126296,
+            "byteStride": 12,
+            "count": 632,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14812": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10133880,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                23.04,
+                38.4,
+                23.04
+            ],
+            "min": [
+                15.36,
+                36.48,
+                15.36
+            ],
+            "type": 35665
+        },
+        "attribute_14814": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10137720,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                1,
+                0.986394
+            ],
+            "min": [
+                -0.986394,
+                -1,
+                -0.986394
+            ],
+            "type": 35665
+        },
+        "attribute_14832": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10141560,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                23.04,
+                38.4,
+                13.44
+            ],
+            "min": [
+                15.36,
+                36.48,
+                5.76
+            ],
+            "type": 35665
+        },
+        "attribute_14834": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10145400,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                1,
+                0.986394
+            ],
+            "min": [
+                -0.986394,
+                -1,
+                -0.986394
+            ],
+            "type": 35665
+        },
+        "attribute_14852": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10210848,
+            "byteStride": 12,
+            "count": 2016,
+            "max": [
+                8.64,
+                8.64,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14854": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10235040,
+            "byteStride": 12,
+            "count": 2016,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14872": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10259232,
+            "byteStride": 12,
+            "count": 768,
+            "max": [
+                8.64,
+                8.64,
+                4.8
+            ],
+            "min": [
+                0,
+                0,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14874": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10268448,
+            "byteStride": 12,
+            "count": 768,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14892": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10277664,
+            "byteStride": 12,
+            "count": 2016,
+            "max": [
+                8.64,
+                8.64,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_14894": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10301856,
+            "byteStride": 12,
+            "count": 2016,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_14912": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10326048,
+            "byteStride": 12,
+            "count": 768,
+            "max": [
+                8.64,
+                8.64,
+                4.8
+            ],
+            "min": [
+                0,
+                0,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_14914": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 10335264,
+            "byteStride": 12,
+            "count": 768,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1494": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1218360,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1496": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1220856,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1514": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1223352,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1516": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1227192,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1534": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1231032,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                103.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                97.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1536": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1234872,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1554": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1238712,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                71.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                63.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1556": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1241208,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1574": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1243704,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                59.5202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                55.6791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1576": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1246488,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_158": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 170352,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1594": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1249272,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                80.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                72.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1596": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1251768,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_160": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 172848,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1614": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1254264,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1616": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1258104,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1634": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1261944,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1636": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1264440,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1654": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1266936,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                69.1202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                65.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1656": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1269720,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1674": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1272504,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1676": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1276344,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1694": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1280184,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1696": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1282680,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1714": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1285176,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1716": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1287960,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1734": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1290744,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                99.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                92.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1736": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1293240,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1754": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1295736,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                74.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                69.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1756": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1299576,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1774": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1303416,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1776": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1307256,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_178": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 175344,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1794": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1311096,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1796": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1313592,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_18": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 0,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_180": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 177840,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1814": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1316088,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1816": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1319928,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1845": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1323768,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_1847": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1391196,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1865": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1458624,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1867": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1462740,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1885": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1466856,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1887": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1469640,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1905": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1472424,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1907": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1475208,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1925": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1477992,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1927": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1480776,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_1945": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1483560,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1947": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1486056,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_1965": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1488552,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_1967": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1491336,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_198": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 180336,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_1985": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1494120,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_1987": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1496616,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_20": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 67428,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_200": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 184464,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2005": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1499112,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2007": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1501608,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2025": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1504104,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2027": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1508232,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2045": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1512360,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2047": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1514856,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2065": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1517352,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2067": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1519848,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2085": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1522344,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2087": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1526472,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2105": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1530600,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2107": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1534716,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2125": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1538832,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2127": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1542960,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2145": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1547088,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2147": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1549872,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2165": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1552656,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2167": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1556784,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_218": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 188592,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2190": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1560912,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_2192": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1628340,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_220": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 191088,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2210": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1695768,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2212": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1699884,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2230": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1704000,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2232": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1706784,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2250": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1709568,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2252": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1712352,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2270": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1715136,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2272": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1717920,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2290": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1720704,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2292": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1723200,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2310": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1725696,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2312": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1728480,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2330": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1731264,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2332": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1733760,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2350": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1736256,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2352": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1738752,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2370": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1741248,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2372": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1745376,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_238": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 193584,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2390": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1749504,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2392": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1752000,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_240": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 196080,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2410": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1754496,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2412": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1756992,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2430": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1759488,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2432": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1763616,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2450": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1767744,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2452": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1771860,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2470": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1775976,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2472": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1780104,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2490": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1784232,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2492": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1787016,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2510": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1789800,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2512": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1793928,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2535": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1798056,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_2537": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1865484,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2555": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1932912,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2557": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1937028,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2575": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1941144,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2577": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1943928,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_258": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 198576,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2595": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1946712,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2597": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1949496,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_260": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 202704,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2615": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1952280,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2617": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1955064,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2635": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1957848,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2637": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1960344,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2655": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1962840,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2657": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1965624,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2675": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1968408,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2677": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1970904,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2695": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1973400,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2697": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1975896,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2715": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1978392,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2717": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1982520,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2735": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1986648,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2737": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1989144,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2755": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1991640,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_2757": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1994136,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_2775": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 1996632,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2777": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2000760,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_278": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 206832,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2795": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2004888,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2797": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2009004,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_280": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 210948,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2815": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2013120,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2817": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2017248,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2835": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2021376,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2837": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2024160,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2855": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2026944,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2857": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2031072,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2880": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2035200,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                19.2048,
+                57.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2882": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2036592,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2900": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2037984,
+            "byteStride": 12,
+            "count": 404,
+            "max": [
+                13.4448,
+                13.44,
+                1.92
+            ],
+            "min": [
+                5.7648,
+                5.76,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2902": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2042832,
+            "byteStride": 12,
+            "count": 404,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2920": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2047680,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                13.44,
+                51.84,
+                1.92
+            ],
+            "min": [
+                5.76,
+                44.16,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2922": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2052288,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2940": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2056896,
+            "byteStride": 12,
+            "count": 372,
+            "max": [
+                13.4436,
+                23.04,
+                1.92
+            ],
+            "min": [
+                5.7636,
+                15.36,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2942": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2061360,
+            "byteStride": 12,
+            "count": 372,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_2960": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2065824,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                13.4424,
+                32.64,
+                1.92
+            ],
+            "min": [
+                5.7624,
+                24.96,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2962": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2070432,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.980857,
+                0.980857,
+                1
+            ],
+            "min": [
+                -0.980857,
+                -0.980857,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_298": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 215064,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_2980": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2075040,
+            "byteStride": 12,
+            "count": 392,
+            "max": [
+                13.4412,
+                42.24,
+                1.92
+            ],
+            "min": [
+                5.7612,
+                34.56,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_2982": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2079744,
+            "byteStride": 12,
+            "count": 392,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_300": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 219192,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3000": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2084448,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                17.2848,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5248,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3002": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2086908,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3020": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2089368,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.2788,
+                26.8788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                21.1188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3022": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2091840,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3040": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2094312,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                17.268,
+                55.6788,
+                5.76
+            ],
+            "min": [
+                11.508,
+                49.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3042": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2096736,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3060": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2099160,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                17.2752,
+                36.4788,
+                5.76
+            ],
+            "min": [
+                11.5152,
+                30.7188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3062": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2101536,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3080": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2103912,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                17.2716,
+                46.0788,
+                5.76
+            ],
+            "min": [
+                11.5116,
+                40.3188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3082": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2106336,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3100": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2108760,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                17.2812,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.5212,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3102": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2111136,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3120": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2113512,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.6716,
+                46.0788,
+                5.76
+            ],
+            "min": [
+                1.9116,
+                40.3188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3122": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2115936,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3140": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2118360,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6752,
+                36.4788,
+                5.76
+            ],
+            "min": [
+                1.9152,
+                30.7188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3142": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2120736,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3160": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2123112,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.668,
+                55.6788,
+                5.76
+            ],
+            "min": [
+                1.908,
+                49.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3162": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2125524,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_318": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 223320,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3180": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2127936,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6812,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3182": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2130300,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_320": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 226104,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3200": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2132664,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6788,
+                26.8788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                21.1188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3202": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2135136,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3220": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2137608,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6848,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9248,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3222": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2140080,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3240": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2142552,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                7.6812,
+                46.08,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                40.32,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3242": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2146920,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3260": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2151288,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                9.6036,
+                57.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3262": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2162016,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3280": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2172744,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                9.6036,
+                9.6,
+                0.96
+            ],
+            "min": [
+                0.0036,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3282": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2183400,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3300": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2194056,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                7.6836,
+                17.28,
+                5.76
+            ],
+            "min": [
+                1.9236,
+                11.52,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3302": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2198496,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3320": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2202936,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                7.6824,
+                26.88,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                21.12,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3322": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2207232,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                0.980744,
+                0.980744,
+                1
+            ],
+            "min": [
+                -0.980744,
+                -0.980744,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2211528,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                9.6,
+                57.6,
+                0.96
+            ],
+            "min": [
+                0,
+                48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3342": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2221932,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3360": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2232336,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                7.6812,
+                36.48,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.72,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3362": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2236656,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_338": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 228888,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_3380": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2240976,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                6.7224,
+                21.12,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                17.28,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3382": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2243484,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 233016,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2245992,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7224,
+                30.72,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3402": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2248608,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2251224,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7212,
+                40.32,
+                1.92
+            ],
+            "min": [
+                2.8812,
+                36.48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3422": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2253924,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3444": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2256624,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                7.6812,
+                46.08,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                40.32,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3446": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2260992,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3464": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2265360,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                9.6036,
+                57.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3466": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2276088,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3484": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2286816,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                9.6036,
+                9.6,
+                0.96
+            ],
+            "min": [
+                0.0036,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3486": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2297472,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3504": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2308128,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                7.6836,
+                17.28,
+                5.76
+            ],
+            "min": [
+                1.9236,
+                11.52,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3506": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2312568,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3524": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2317008,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                7.6824,
+                26.88,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                21.12,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3526": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2321304,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                0.980744,
+                0.980744,
+                1
+            ],
+            "min": [
+                -0.980744,
+                -0.980744,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3544": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2325600,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                9.6,
+                57.6,
+                0.96
+            ],
+            "min": [
+                0,
+                48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3546": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2336004,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3564": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2346408,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                7.6812,
+                36.48,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.72,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3566": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2350728,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3584": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2355048,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                6.7224,
+                21.12,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                17.28,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3586": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2357556,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3604": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2360064,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7224,
+                30.72,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3606": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2362680,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3624": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2365296,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7212,
+                40.32,
+                1.92
+            ],
+            "min": [
+                2.8812,
+                36.48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3626": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2367996,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_363": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 237144,
+            "byteStride": 12,
+            "count": 1806,
+            "max": [
+                9.6,
+                28.8,
+                16.32
+            ],
+            "min": [
+                0,
+                0,
+                4.8
+            ],
+            "type": 35665
+        },
+        "attribute_3648": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2370696,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_365": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 258816,
+            "byteStride": 12,
+            "count": 1806,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3650": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2373168,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3668": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2375640,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3670": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2380392,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3688": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2385144,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3690": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2387568,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3708": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2389992,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3710": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2392464,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3728": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2394936,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3730": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2397360,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3748": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2399784,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3750": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2400936,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3773": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2402088,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3775": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2404560,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3793": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2407032,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3795": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2411784,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_38": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 134856,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_3813": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2416536,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3815": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2418960,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_383": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 280488,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                7.68,
+                7.68,
+                4.8
+            ],
+            "min": [
+                1.92,
+                1.92,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3833": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2421384,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3835": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2423856,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_385": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 288216,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3853": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2426328,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_3855": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2428752,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3873": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2431176,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3875": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2432328,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3898": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2433480,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                19.2048,
+                57.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3900": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2434872,
+            "byteStride": 12,
+            "count": 116,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3918": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2436264,
+            "byteStride": 12,
+            "count": 404,
+            "max": [
+                13.4448,
+                13.44,
+                1.92
+            ],
+            "min": [
+                5.7648,
+                5.76,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3920": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2441112,
+            "byteStride": 12,
+            "count": 404,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3938": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2445960,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                13.44,
+                51.84,
+                1.92
+            ],
+            "min": [
+                5.76,
+                44.16,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3940": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2450568,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3958": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2455176,
+            "byteStride": 12,
+            "count": 372,
+            "max": [
+                13.4436,
+                23.04,
+                1.92
+            ],
+            "min": [
+                5.7636,
+                15.36,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3960": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2459640,
+            "byteStride": 12,
+            "count": 372,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3978": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2464104,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                13.4424,
+                32.64,
+                1.92
+            ],
+            "min": [
+                5.7624,
+                24.96,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_3980": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2468712,
+            "byteStride": 12,
+            "count": 384,
+            "max": [
+                0.980857,
+                0.980857,
+                1
+            ],
+            "min": [
+                -0.980857,
+                -0.980857,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_3998": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2473320,
+            "byteStride": 12,
+            "count": 392,
+            "max": [
+                13.4412,
+                42.24,
+                1.92
+            ],
+            "min": [
+                5.7612,
+                34.56,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_40": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 138972,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4000": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2478024,
+            "byteStride": 12,
+            "count": 392,
+            "max": [
+                0.980908,
+                0.980887,
+                1
+            ],
+            "min": [
+                -0.980908,
+                -0.980887,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4018": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2482728,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                17.2848,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5248,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4020": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2485188,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_403": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 295944,
+            "byteStride": 12,
+            "count": 584,
+            "max": [
+                7.68,
+                7.68,
+                21.12
+            ],
+            "min": [
+                1.92,
+                1.92,
+                16.32
+            ],
+            "type": 35665
+        },
+        "attribute_4038": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2487648,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.2788,
+                26.8788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                21.1188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4040": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2490120,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_405": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 302952,
+            "byteStride": 12,
+            "count": 584,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4058": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2492592,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                17.268,
+                55.6788,
+                5.76
+            ],
+            "min": [
+                11.508,
+                49.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4060": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2495016,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4078": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2497440,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                17.2752,
+                36.4788,
+                5.76
+            ],
+            "min": [
+                11.5152,
+                30.7188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4080": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2499816,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4098": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2502192,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                17.2716,
+                46.0788,
+                5.76
+            ],
+            "min": [
+                11.5116,
+                40.3188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4100": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2504616,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4118": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2507040,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                17.2812,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.5212,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4120": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2509416,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4138": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2511792,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.6716,
+                46.0788,
+                5.76
+            ],
+            "min": [
+                1.9116,
+                40.3188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4140": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2514216,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4158": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2516640,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6752,
+                36.4788,
+                5.76
+            ],
+            "min": [
+                1.9152,
+                30.7188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4160": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2519016,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4178": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2521392,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.668,
+                55.6788,
+                5.76
+            ],
+            "min": [
+                1.908,
+                49.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4180": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2523804,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4198": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2526216,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6812,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4200": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2528580,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4218": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2530944,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6788,
+                26.8788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                21.1188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4220": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2533416,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_423": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 309960,
+            "byteStride": 12,
+            "count": 12441,
+            "max": [
+                115.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_4238": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2535888,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6848,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9248,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4240": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2538360,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_425": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 459252,
+            "byteStride": 12,
+            "count": 12441,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4258": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2540832,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                9.6204,
+                57.6192,
+                3.84
+            ],
+            "min": [
+                0.0024,
+                0.018,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4260": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2542248,
+            "byteStride": 12,
+            "count": 118,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4278": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2543664,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                7.6824,
+                55.698,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                49.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4280": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2546076,
+            "byteStride": 12,
+            "count": 201,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4298": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2548488,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                7.6956,
+                17.298,
+                5.76
+            ],
+            "min": [
+                1.9356,
+                11.538,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4300": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2550852,
+            "byteStride": 12,
+            "count": 197,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4318": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2553216,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.686,
+                46.098,
+                5.76
+            ],
+            "min": [
+                1.926,
+                40.338,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4320": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2555640,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4338": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2558064,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6932,
+                26.898,
+                5.76
+            ],
+            "min": [
+                1.9332,
+                21.138,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2560536,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4358": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2563008,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6896,
+                36.498,
+                5.76
+            ],
+            "min": [
+                1.9296,
+                30.738,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4360": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2565384,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4378": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2567760,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                7.6992,
+                7.698,
+                5.76
+            ],
+            "min": [
+                1.9392,
+                1.938,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_4380": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2570232,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4398": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2572704,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7308,
+                30.738,
+                1.92
+            ],
+            "min": [
+                2.8908,
+                26.898,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2575404,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4418": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2578104,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                6.7272,
+                40.338,
+                1.92
+            ],
+            "min": [
+                2.8872,
+                36.498,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2580672,
+            "byteStride": 12,
+            "count": 214,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_443": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 608544,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4438": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2583240,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7236,
+                49.938,
+                1.92
+            ],
+            "min": [
+                2.8836,
+                46.098,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4440": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2585856,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98107,
+                0.98101,
+                1
+            ],
+            "min": [
+                -0.98107,
+                -0.98101,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_445": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 611328,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4458": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2588472,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                6.7344,
+                21.138,
+                1.92
+            ],
+            "min": [
+                2.8944,
+                17.298,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4460": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2591136,
+            "byteStride": 12,
+            "count": 222,
+            "max": [
+                0.980765,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.980765,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4478": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2593800,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.738,
+                11.538,
+                1.92
+            ],
+            "min": [
+                2.898,
+                7.698,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4480": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2596500,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4502": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2599200,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_4504": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2603040,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4522": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2606880,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                19.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_4524": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2622096,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4542": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2637312,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_4544": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2641152,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4562": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2644992,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_4564": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2647488,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_4582": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2649984,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4584": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2652768,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4603": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2655552,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_4605": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2659392,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4623": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2663232,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                19.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_4625": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2678448,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_463": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 614112,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                97.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                94.0791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4643": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2693664,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_4645": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2697504,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_465": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 616896,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4663": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2701344,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_4665": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2703840,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_4683": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2706336,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4685": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2709120,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4704": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2711904,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                5.7624,
+                28.7988,
+                5.76
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4706": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2714688,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4724": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2717472,
+            "byteStride": 12,
+            "count": 2040,
+            "max": [
+                8.64,
+                9.6024,
+                8.6412
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4726": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2741952,
+            "byteStride": 12,
+            "count": 2040,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4744": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2766432,
+            "byteStride": 12,
+            "count": 1806,
+            "max": [
+                9.6,
+                28.8,
+                16.32
+            ],
+            "min": [
+                0,
+                0,
+                4.8
+            ],
+            "type": 35665
+        },
+        "attribute_4746": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2788104,
+            "byteStride": 12,
+            "count": 1806,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4764": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2809776,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                7.68,
+                7.68,
+                4.8
+            ],
+            "min": [
+                1.92,
+                1.92,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4766": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2817504,
+            "byteStride": 12,
+            "count": 644,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4784": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2825232,
+            "byteStride": 12,
+            "count": 584,
+            "max": [
+                7.68,
+                7.68,
+                21.12
+            ],
+            "min": [
+                1.92,
+                1.92,
+                16.32
+            ],
+            "type": 35665
+        },
+        "attribute_4786": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2832240,
+            "byteStride": 12,
+            "count": 584,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4804": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2839248,
+            "byteStride": 12,
+            "count": 2040,
+            "max": [
+                8.64,
+                9.6024,
+                8.6412
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4806": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2863728,
+            "byteStride": 12,
+            "count": 2040,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4824": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2888208,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                5.7624,
+                28.7988,
+                5.76
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4826": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2890992,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_483": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 619680,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                78.7203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                74.8791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4844": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2893776,
+            "byteStride": 12,
+            "count": 144,
+            "max": [
+                19.1976,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4846": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2895504,
+            "byteStride": 12,
+            "count": 144,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_485": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 622464,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4864": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2897232,
+            "byteStride": 12,
+            "count": 431,
+            "max": [
+                13.4388,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.7588,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4866": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2902404,
+            "byteStride": 12,
+            "count": 431,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4884": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2907576,
+            "byteStride": 12,
+            "count": 2057,
+            "max": [
+                7.6812,
+                19.2,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4886": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2932260,
+            "byteStride": 12,
+            "count": 2057,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4904": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2956944,
+            "byteStride": 12,
+            "count": 2057,
+            "max": [
+                7.6812,
+                19.2,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4906": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 2981628,
+            "byteStride": 12,
+            "count": 2057,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4924": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3006312,
+            "byteStride": 12,
+            "count": 1584,
+            "max": [
+                19.2,
+                7.68,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4926": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3025320,
+            "byteStride": 12,
+            "count": 1584,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4944": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3044328,
+            "byteStride": 12,
+            "count": 1584,
+            "max": [
+                19.2,
+                7.68,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4946": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3063336,
+            "byteStride": 12,
+            "count": 1584,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_4979": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3082344,
+            "byteStride": 12,
+            "count": 2805,
+            "max": [
+                7.68,
+                7.6812,
+                19.2036
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_4981": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3116004,
+            "byteStride": 12,
+            "count": 2805,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5014": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3149664,
+            "byteStride": 12,
+            "count": 2805,
+            "max": [
+                7.68,
+                7.6812,
+                19.2036
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5016": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3183324,
+            "byteStride": 12,
+            "count": 2805,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_503": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 625248,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_5034": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3216984,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5036": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3219456,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_505": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 627744,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_5054": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3221928,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5056": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3226680,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5074": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3231432,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5076": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3233856,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5094": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3236280,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5096": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3238752,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5114": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3241224,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5116": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3243648,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5134": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3246072,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5136": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3247224,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5159": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3248376,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5161": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3250848,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5179": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3253320,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5181": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3258072,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5199": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3262824,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5201": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3265248,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5219": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3267672,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5221": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3270144,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_523": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 630240,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                113.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                107.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_5239": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3272616,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5241": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3275040,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_525": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 634080,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5259": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3277464,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5261": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3278616,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5284": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3279768,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5286": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3282240,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5304": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3284712,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5306": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3289464,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5324": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3294216,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5326": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3296640,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5344": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3299064,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5346": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3301536,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5364": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3304008,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5366": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3306432,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5384": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3308856,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5386": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3310008,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5409": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3311160,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5411": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3313632,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5429": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3316104,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_543": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 637920,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                94.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                88.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_5431": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3320856,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5449": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3325608,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_545": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 641760,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5451": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3328032,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5469": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3330456,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5471": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3332928,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5489": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3335400,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5491": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3337824,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5509": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3340248,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5511": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3341400,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5534": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3342552,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5536": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3345024,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5554": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3347496,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5556": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3352248,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5574": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3357000,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5576": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3359424,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5594": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3361848,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5596": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3364320,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5614": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3366792,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5616": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3369216,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_563": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 645600,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5634": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3371640,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5636": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3372792,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_565": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 648384,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5659": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3373944,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                7.68095,
+                7.68645,
+                13.4464
+            ],
+            "min": [
+                1.92095,
+                1.92515,
+                11.5237
+            ],
+            "type": 35665
+        },
+        "attribute_5661": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3379416,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5679": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3384888,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                38.4007,
+                9.613,
+                11.5277
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5681": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3422340,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5699": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3459792,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                26.881,
+                7.69145,
+                13.4452
+            ],
+            "min": [
+                21.1209,
+                1.93015,
+                11.5219
+            ],
+            "type": 35665
+        },
+        "attribute_5701": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3465360,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5719": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3470928,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.721,
+                6.72765,
+                2.88455
+            ],
+            "min": [
+                26.8798,
+                2.8869,
+                0.0019495
+            ],
+            "type": 35665
+        },
+        "attribute_5721": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3473712,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5739": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3476496,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                23.0407,
+                9.60835,
+                10.5665
+            ],
+            "min": [
+                15.3576,
+                0.0047493,
+                2.8824
+            ],
+            "type": 35665
+        },
+        "attribute_5741": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3488880,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                0.980948,
+                1,
+                0.980887
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_5759": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3501264,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                23.042,
+                7.6889,
+                9.6052
+            ],
+            "min": [
+                15.3587,
+                1.92355,
+                2.8825
+            ],
+            "type": 35665
+        },
+        "attribute_5761": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3503712,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_5779": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3506160,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                36.4809,
+                7.69335,
+                13.444
+            ],
+            "min": [
+                30.721,
+                1.93325,
+                11.5213
+            ],
+            "type": 35665
+        },
+        "attribute_5781": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3511668,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                0.981,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5799": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3517176,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                17.2809,
+                7.68835,
+                13.4458
+            ],
+            "min": [
+                11.5209,
+                1.92825,
+                11.5225
+            ],
+            "type": 35665
+        },
+        "attribute_58": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 143088,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5801": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3522840,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5819": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3528504,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5234,
+                6.72265,
+                2.88575
+            ],
+            "min": [
+                7.68215,
+                2.8819,
+                0.003151
+            ],
+            "type": 35665
+        },
+        "attribute_5821": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3531288,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_583": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 651168,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                61.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                53.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_5839": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3534072,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.121,
+                6.72455,
+                2.88455
+            ],
+            "min": [
+                17.2798,
+                2.8838,
+                0.0019507
+            ],
+            "type": 35665
+        },
+        "attribute_5841": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3536856,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_585": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 653664,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_5861": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3539640,
+            "byteStride": 12,
+            "count": 1454,
+            "max": [
+                19.2,
+                19.2,
+                13.44
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5863": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3557088,
+            "byteStride": 12,
+            "count": 1454,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5881": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3574536,
+            "byteStride": 12,
+            "count": 106,
+            "max": [
+                7.68,
+                17.28,
+                13.44
+            ],
+            "min": [
+                1.92,
+                11.52,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_5883": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3575808,
+            "byteStride": 12,
+            "count": 106,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5901": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3577080,
+            "byteStride": 12,
+            "count": 1454,
+            "max": [
+                19.2,
+                19.2,
+                13.44
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5903": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3594528,
+            "byteStride": 12,
+            "count": 1454,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5921": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3611976,
+            "byteStride": 12,
+            "count": 106,
+            "max": [
+                7.68,
+                17.28,
+                13.44
+            ],
+            "min": [
+                1.92,
+                11.52,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_5923": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3613248,
+            "byteStride": 12,
+            "count": 106,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5941": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3614520,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5943": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3617136,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5961": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3619752,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_5963": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3621288,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_5981": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3622824,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_5983": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3625104,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_60": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 145872,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6001": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3627384,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6003": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3630144,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6021": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3632904,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6023": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3635520,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_603": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 656160,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                65.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                59.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6041": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3638136,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6043": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3639672,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_605": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 660000,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6061": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3641208,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6063": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3643488,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6081": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3645768,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6083": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3648528,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6101": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3651288,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6103": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3653904,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6121": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3656520,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6123": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3658056,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6141": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3659592,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6143": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3661872,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6161": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3664152,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6163": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3666912,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6181": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3669672,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6183": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3672288,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6201": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3674904,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6203": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3676440,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6221": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3677976,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6223": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3680256,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_623": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 663840,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                84.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                78.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6241": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3682536,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6243": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3685296,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_625": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 667680,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6261": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3688056,
+            "byteStride": 12,
+            "count": 5620,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_6263": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3755496,
+            "byteStride": 12,
+            "count": 5620,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6281": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3822936,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6283": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3827064,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6301": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3831192,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6303": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3833976,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6321": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3836760,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6323": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3839544,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6341": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3842328,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6343": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3845112,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6361": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3847896,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6363": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3850392,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6381": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3852888,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6383": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3855672,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6401": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3858456,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6403": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3860952,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6421": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3863448,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6423": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3865944,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_643": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 671520,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                88.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                84.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6441": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3868440,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6443": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3872568,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_645": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 674304,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6461": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3876696,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6463": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3879192,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6481": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3881688,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6483": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3884184,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6501": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3886680,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6503": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3890808,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6521": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3894936,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6523": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3899052,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6541": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3903168,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6543": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3907296,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6561": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3911424,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6563": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3914208,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6581": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3916992,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6583": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3921120,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6606": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3925248,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                57.6,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_6608": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 3992676,
+            "byteStride": 12,
+            "count": 5619,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6626": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4060104,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                36.48,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                30.72,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6628": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4064220,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_663": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 677088,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                90.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                82.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6646": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4068336,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.7202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                26.879,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6648": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4071120,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_665": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 679584,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6666": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4073904,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6668": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4076688,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6686": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4079472,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6688": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4082256,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6706": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4085040,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                42.2413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                34.558,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6708": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4087536,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6726": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4090032,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.1203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                17.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6728": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4092816,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6746": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4095600,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6748": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4098096,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6766": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4100592,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6768": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4103088,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6786": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4105584,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6788": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4109712,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6806": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4113840,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6808": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4116336,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_6826": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4118832,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                23.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                15.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_6828": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4121328,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_683": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 682080,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6846": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4123824,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                55.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                49.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6848": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4127952,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_685": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 684864,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6866": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4132080,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6868": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4136196,
+            "byteStride": 12,
+            "count": 343,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6886": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4140312,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6888": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4144440,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6906": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4148568,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6908": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4151352,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6926": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4154136,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_6928": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4158264,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6951": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4162392,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6953": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4193952,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6971": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4225512,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                7.6812,
+                46.08,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                40.32,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_6973": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4229880,
+            "byteStride": 12,
+            "count": 364,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_6991": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4234248,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                9.6036,
+                57.6,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_6993": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4244976,
+            "byteStride": 12,
+            "count": 894,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7011": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4255704,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                9.6036,
+                9.6,
+                0.96
+            ],
+            "min": [
+                0.0036,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7013": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4266360,
+            "byteStride": 12,
+            "count": 888,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_703": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 687648,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                107.52,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                103.679,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7031": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4277016,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                7.6836,
+                17.28,
+                5.76
+            ],
+            "min": [
+                1.9236,
+                11.52,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7033": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4281456,
+            "byteStride": 12,
+            "count": 370,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_705": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 690432,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7051": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4285896,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                7.6824,
+                26.88,
+                5.76
+            ],
+            "min": [
+                1.9224,
+                21.12,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7053": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4290192,
+            "byteStride": 12,
+            "count": 358,
+            "max": [
+                0.980744,
+                0.980744,
+                1
+            ],
+            "min": [
+                -0.980744,
+                -0.980744,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7071": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4294488,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                9.6,
+                57.6,
+                0.96
+            ],
+            "min": [
+                0,
+                48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7073": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4304892,
+            "byteStride": 12,
+            "count": 867,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7091": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4315296,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                7.6812,
+                36.48,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.72,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7093": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4319616,
+            "byteStride": 12,
+            "count": 360,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7111": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4323936,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                6.7224,
+                21.12,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                17.28,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7113": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4326444,
+            "byteStride": 12,
+            "count": 209,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7131": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4328952,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                6.7224,
+                30.72,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7133": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4331568,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.98101,
+                0.980765,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.980765,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7151": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4334184,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                6.7212,
+                40.32,
+                1.92
+            ],
+            "min": [
+                2.8812,
+                36.48,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7153": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4336884,
+            "byteStride": 12,
+            "count": 225,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7175": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4339584,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7177": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4371144,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7195": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4402704,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7197": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4434264,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7215": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4465824,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7217": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4497384,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_723": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 693216,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                109.441,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                101.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_7235": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4528944,
+            "byteStride": 12,
+            "count": 164,
+            "max": [
+                9.6,
+                19.2,
+                11.52
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7237": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4530912,
+            "byteStride": 12,
+            "count": 164,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_725": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 695712,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_7255": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4532880,
+            "byteStride": 12,
+            "count": 508,
+            "max": [
+                7.68,
+                7.68,
+                13.44
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7257": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4538976,
+            "byteStride": 12,
+            "count": 508,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7275": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4545072,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                17.28,
+                13.44
+            ],
+            "min": [
+                1.92,
+                11.52,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_7277": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4547016,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7295": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4548960,
+            "byteStride": 12,
+            "count": 164,
+            "max": [
+                9.6,
+                19.2,
+                11.52
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7297": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4550928,
+            "byteStride": 12,
+            "count": 164,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7315": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4552896,
+            "byteStride": 12,
+            "count": 508,
+            "max": [
+                7.68,
+                7.68,
+                13.44
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7317": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4558992,
+            "byteStride": 12,
+            "count": 508,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7335": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4565088,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                17.28,
+                13.44
+            ],
+            "min": [
+                1.92,
+                11.52,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_7337": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4567032,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7355": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4568976,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7357": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4571592,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7375": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4574208,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7377": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4575744,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7395": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4577280,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7397": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4579560,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7415": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4581840,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7417": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4584600,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_743": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 698208,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                49.9202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                46.079,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7435": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4587360,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                11.5188,
+                6.7188,
+                1.92
+            ],
+            "min": [
+                7.6788,
+                2.8788,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7437": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4589976,
+            "byteStride": 12,
+            "count": 218,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_745": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 700992,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7455": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4592592,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                19.1976,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7457": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4594128,
+            "byteStride": 12,
+            "count": 128,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7475": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4595664,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                17.2788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.5188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7477": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4597944,
+            "byteStride": 12,
+            "count": 190,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7495": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4600224,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                7.6788,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.9188,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7497": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4602984,
+            "byteStride": 12,
+            "count": 230,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7515": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4605744,
+            "byteStride": 12,
+            "count": 146,
+            "max": [
+                19.2,
+                19.2,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7517": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4607496,
+            "byteStride": 12,
+            "count": 146,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7535": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4609248,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                6.72,
+                11.52,
+                1.92
+            ],
+            "min": [
+                2.88,
+                7.68,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7537": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4611192,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7555": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4613136,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                17.28,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7557": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4615080,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7575": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4617024,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                17.28,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.52,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7577": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4618968,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7595": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4620912,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                11.52,
+                6.72,
+                1.92
+            ],
+            "min": [
+                7.68,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7597": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4622856,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7615": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4624800,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7617": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4626744,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_763": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 703776,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_7635": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4628688,
+            "byteStride": 12,
+            "count": 146,
+            "max": [
+                19.2,
+                19.2,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7637": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4630440,
+            "byteStride": 12,
+            "count": 146,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_765": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 707616,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7655": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4632192,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                6.72,
+                11.52,
+                1.92
+            ],
+            "min": [
+                2.88,
+                7.68,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7657": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4634136,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7675": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4636080,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                17.28,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7677": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4638024,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7695": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4639968,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                17.28,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.52,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7697": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4641912,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7715": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4643856,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                11.52,
+                6.72,
+                1.92
+            ],
+            "min": [
+                7.68,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7717": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4645800,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7735": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4647744,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                7.68,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_7737": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4649688,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.976187,
+                0.976187,
+                1
+            ],
+            "min": [
+                -0.976187,
+                -0.976187,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_7755": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4651632,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                22.3872,
+                9.6048,
+                14.7792
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7757": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4653888,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                0.866082,
+                1,
+                0.965935
+            ],
+            "min": [
+                -0.866082,
+                -1,
+                -0.965935
+            ],
+            "type": 35665
+        },
+        "attribute_7775": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4656144,
+            "byteStride": 12,
+            "count": 984,
+            "max": [
+                23.6508,
+                9.612,
+                15.57
+            ],
+            "min": [
+                0,
+                0.0024,
+                0.0036
+            ],
+            "type": 35665
+        },
+        "attribute_7777": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4667952,
+            "byteStride": 12,
+            "count": 984,
+            "max": [
+                0.997841,
+                1,
+                0.997841
+            ],
+            "min": [
+                -0.997841,
+                -1,
+                -0.997841
+            ],
+            "type": 35665
+        },
+        "attribute_7795": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4679760,
+            "byteStride": 12,
+            "count": 568,
+            "max": [
+                14.6328,
+                7.686,
+                13.632
+            ],
+            "min": [
+                8.6844,
+                1.926,
+                9.0888
+            ],
+            "type": 35665
+        },
+        "attribute_7797": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4686576,
+            "byteStride": 12,
+            "count": 568,
+            "max": [
+                0.84964,
+                0.981062,
+                0.866805
+            ],
+            "min": [
+                -0.84964,
+                -0.981062,
+                -0.866805
+            ],
+            "type": 35665
+        },
+        "attribute_78": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 148656,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                40.3203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                36.479,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7818": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4693392,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                9.5328,
+                55.6824,
+                8.8272
+            ],
+            "min": [
+                3.5844,
+                49.9224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7820": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4696848,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.849584,
+                0.980963,
+                0.866274
+            ],
+            "min": [
+                -0.849584,
+                -0.980963,
+                -0.866274
+            ],
+            "type": 35665
+        },
+        "attribute_783": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 711456,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_7838": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4700304,
+            "byteStride": 12,
+            "count": 280,
+            "max": [
+                9.5376,
+                46.0824,
+                8.8272
+            ],
+            "min": [
+                3.5892,
+                40.3224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7840": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4703664,
+            "byteStride": 12,
+            "count": 280,
+            "max": [
+                0.849613,
+                0.980928,
+                0.866315
+            ],
+            "min": [
+                -0.849613,
+                -0.980928,
+                -0.866315
+            ],
+            "type": 35665
+        },
+        "attribute_785": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 713952,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_7858": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4707024,
+            "byteStride": 12,
+            "count": 156,
+            "max": [
+                10.2624,
+                57.6036,
+                8.124
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7860": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4708896,
+            "byteStride": 12,
+            "count": 156,
+            "max": [
+                0.866081,
+                1,
+                0.86617
+            ],
+            "min": [
+                -0.866081,
+                -1,
+                -0.86617
+            ],
+            "type": 35665
+        },
+        "attribute_7878": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4710768,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                9.558,
+                7.6824,
+                8.8272
+            ],
+            "min": [
+                3.6096,
+                1.9224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7880": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4714176,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                0.849613,
+                0.980928,
+                0.866315
+            ],
+            "min": [
+                -0.849613,
+                -0.980928,
+                -0.866315
+            ],
+            "type": 35665
+        },
+        "attribute_7898": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4717584,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                9.5484,
+                26.8824,
+                8.8272
+            ],
+            "min": [
+                3.6,
+                21.1224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7900": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4720992,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                0.849584,
+                0.980963,
+                0.866274
+            ],
+            "min": [
+                -0.849584,
+                -0.980963,
+                -0.866274
+            ],
+            "type": 35665
+        },
+        "attribute_7918": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4724400,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                9.5532,
+                17.2824,
+                8.8272
+            ],
+            "min": [
+                3.6048,
+                11.5224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7920": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4727856,
+            "byteStride": 12,
+            "count": 288,
+            "max": [
+                0.849584,
+                0.980963,
+                0.866274
+            ],
+            "min": [
+                -0.849584,
+                -0.980963,
+                -0.866274
+            ],
+            "type": 35665
+        },
+        "attribute_7938": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4731312,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                9.5436,
+                36.4824,
+                8.8272
+            ],
+            "min": [
+                3.5952,
+                30.7224,
+                4.284
+            ],
+            "type": 35665
+        },
+        "attribute_7940": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4734720,
+            "byteStride": 12,
+            "count": 284,
+            "max": [
+                0.849736,
+                0.980928,
+                0.866315
+            ],
+            "min": [
+                -0.849736,
+                -0.980928,
+                -0.866315
+            ],
+            "type": 35665
+        },
+        "attribute_7958": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4738128,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                22.3872,
+                9.6048,
+                14.7792
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_7960": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4740384,
+            "byteStride": 12,
+            "count": 188,
+            "max": [
+                0.866082,
+                1,
+                0.965935
+            ],
+            "min": [
+                -0.866082,
+                -1,
+                -0.965935
+            ],
+            "type": 35665
+        },
+        "attribute_7978": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4742640,
+            "byteStride": 12,
+            "count": 984,
+            "max": [
+                23.6508,
+                9.612,
+                15.57
+            ],
+            "min": [
+                0,
+                0.0024,
+                0.0036
+            ],
+            "type": 35665
+        },
+        "attribute_7980": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4754448,
+            "byteStride": 12,
+            "count": 984,
+            "max": [
+                0.997841,
+                1,
+                0.997841
+            ],
+            "min": [
+                -0.997841,
+                -1,
+                -0.997841
+            ],
+            "type": 35665
+        },
+        "attribute_7998": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4766256,
+            "byteStride": 12,
+            "count": 568,
+            "max": [
+                14.6328,
+                7.686,
+                13.632
+            ],
+            "min": [
+                8.6844,
+                1.926,
+                9.0888
+            ],
+            "type": 35665
+        },
+        "attribute_80": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 151440,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8000": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4773072,
+            "byteStride": 12,
+            "count": 568,
+            "max": [
+                0.84964,
+                0.981062,
+                0.866805
+            ],
+            "min": [
+                -0.84964,
+                -0.981062,
+                -0.866805
+            ],
+            "type": 35665
+        },
+        "attribute_8021": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4779888,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.2812,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.5212,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8023": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4784016,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_803": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 716448,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8041": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4788144,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                7.6812,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8043": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4792272,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_805": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 720288,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8061": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4796400,
+            "byteStride": 12,
+            "count": 708,
+            "max": [
+                25.9212,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0.0036,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8063": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4804896,
+            "byteStride": 12,
+            "count": 708,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8081": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4813392,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.0024,
+                9.6012,
+                3.84
+            ],
+            "min": [
+                0,
+                0.0036,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8083": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4813536,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                1,
+                0.0002501,
+                0
+            ],
+            "min": [
+                -1,
+                -0.0002501,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8102": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4813680,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                17.2812,
+                7.68,
+                5.76
+            ],
+            "min": [
+                11.5212,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8104": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4817808,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8122": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4821936,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                7.6812,
+                7.68,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                1.92,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8124": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4826064,
+            "byteStride": 12,
+            "count": 344,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8142": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4830192,
+            "byteStride": 12,
+            "count": 708,
+            "max": [
+                25.9212,
+                9.5976,
+                3.84
+            ],
+            "min": [
+                0.0036,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8144": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4838688,
+            "byteStride": 12,
+            "count": 708,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8162": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4847184,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                0.0024,
+                9.6012,
+                3.84
+            ],
+            "min": [
+                0,
+                0.0036,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8164": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4847328,
+            "byteStride": 12,
+            "count": 12,
+            "max": [
+                1,
+                0.0002501,
+                0
+            ],
+            "min": [
+                -1,
+                -0.0002501,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8198": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4847472,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8200": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4849944,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_823": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 724128,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                103.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                97.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8233": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4852416,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8235": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4857168,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_825": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 727968,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8268": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4861920,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8270": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4864344,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8303": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4866768,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8305": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4869240,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8338": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4871712,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8340": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4874136,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8373": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4876560,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8375": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4877712,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8398": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4878864,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                9.612,
+                38.4012,
+                3.84
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8400": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4880208,
+            "byteStride": 12,
+            "count": 112,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8418": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4881552,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                7.6812,
+                36.4812,
+                5.76
+            ],
+            "min": [
+                1.9212,
+                30.7212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8420": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4883784,
+            "byteStride": 12,
+            "count": 186,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_843": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 731808,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                71.0413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                63.358,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_8438": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4886016,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                7.6848,
+                26.8812,
+                5.76
+            ],
+            "min": [
+                1.9248,
+                21.1212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8440": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4888392,
+            "byteStride": 12,
+            "count": 198,
+            "max": [
+                0.980948,
+                0.980948,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980948,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_845": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 734304,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_8458": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4890768,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                7.6908,
+                7.6812,
+                5.76
+            ],
+            "min": [
+                1.9308,
+                1.9212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8460": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4893228,
+            "byteStride": 12,
+            "count": 205,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8478": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4895688,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                7.6884,
+                17.2812,
+                5.76
+            ],
+            "min": [
+                1.9284,
+                11.5212,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8480": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4897824,
+            "byteStride": 12,
+            "count": 178,
+            "max": [
+                0.980948,
+                0.980908,
+                1
+            ],
+            "min": [
+                -0.980948,
+                -0.980908,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8498": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4899960,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.726,
+                21.1212,
+                1.92
+            ],
+            "min": [
+                2.886,
+                17.2812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8500": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4902672,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8518": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4905384,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7284,
+                11.5212,
+                1.92
+            ],
+            "min": [
+                2.8884,
+                7.6812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8520": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4908096,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8538": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4910808,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                6.7224,
+                30.7212,
+                1.92
+            ],
+            "min": [
+                2.8824,
+                26.8812,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8540": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4913520,
+            "byteStride": 12,
+            "count": 226,
+            "max": [
+                0.98101,
+                0.98107,
+                1
+            ],
+            "min": [
+                -0.98101,
+                -0.98107,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8560": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4916232,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8562": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4918704,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8580": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4921176,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                13.44,
+                13.4388,
+                1.92
+            ],
+            "min": [
+                5.76,
+                5.7588,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8582": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4925928,
+            "byteStride": 12,
+            "count": 396,
+            "max": [
+                0.980734,
+                0.980734,
+                1
+            ],
+            "min": [
+                -0.980734,
+                -0.980734,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8600": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4930680,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                17.2788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                11.5188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8602": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4933104,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8620": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4935528,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                17.28,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                11.52,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8622": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4938000,
+            "byteStride": 12,
+            "count": 206,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_863": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 736800,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                59.5202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                55.6791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8640": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4940472,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                7.68,
+                7.6788,
+                5.76
+            ],
+            "min": [
+                1.92,
+                1.9188,
+                3.84
+            ],
+            "type": 35665
+        },
+        "attribute_8642": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4942896,
+            "byteStride": 12,
+            "count": 202,
+            "max": [
+                0.980704,
+                0.980704,
+                1
+            ],
+            "min": [
+                -0.980704,
+                -0.980704,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_865": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 739584,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8660": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4945320,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                19.1988,
+                19.1976,
+                3.84
+            ],
+            "min": [
+                0.0012,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8662": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4946472,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8685": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4947624,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8687": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4951464,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8705": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4955304,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                19.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_8707": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4970520,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8725": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4985736,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8727": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4989576,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8745": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4993416,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_8747": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4995912,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_8765": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 4998408,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8767": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5001192,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8786": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5003976,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8788": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5007816,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8806": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5011656,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                19.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_8808": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5026872,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8826": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5042088,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_8828": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5045928,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_883": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 742368,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                80.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                72.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_8846": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5049768,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_8848": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5052264,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_885": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 744864,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_8866": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5054760,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8868": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5057544,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8887": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5060328,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8889": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5091888,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8922": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5123448,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                19.2,
+                7.44,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8924": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5155008,
+            "byteStride": 12,
+            "count": 2630,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8942": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5186568,
+            "byteStride": 12,
+            "count": 1180,
+            "max": [
+                9.6,
+                9.6,
+                11.52
+            ],
+            "min": [
+                0,
+                -0.004,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8944": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5200728,
+            "byteStride": 12,
+            "count": 1180,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8962": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5214888,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.68,
+                13.44
+            ],
+            "min": [
+                1.92,
+                1.92,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_8964": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5218728,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_8982": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5222568,
+            "byteStride": 12,
+            "count": 1180,
+            "max": [
+                9.6,
+                9.6,
+                11.52
+            ],
+            "min": [
+                0,
+                -0.004,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_8984": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5236728,
+            "byteStride": 12,
+            "count": 1180,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9002": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5250888,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.68,
+                13.44
+            ],
+            "min": [
+                1.92,
+                1.92,
+                11.52
+            ],
+            "type": 35665
+        },
+        "attribute_9004": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5254728,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9022": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5258568,
+            "byteStride": 12,
+            "count": 576,
+            "max": [
+                38.4,
+                9.6,
+                6.72
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9024": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5265480,
+            "byteStride": 12,
+            "count": 576,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_903": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 747360,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                26.88,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                21.12,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_9042": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5272392,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                30.72,
+                6.72,
+                1.92
+            ],
+            "min": [
+                26.88,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9044": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5274336,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_905": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 751200,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9062": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5276280,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                21.12,
+                6.72,
+                1.92
+            ],
+            "min": [
+                17.28,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9064": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5278224,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9082": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5280168,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                11.52,
+                6.72,
+                1.92
+            ],
+            "min": [
+                7.68,
+                2.88,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9084": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5282112,
+            "byteStride": 12,
+            "count": 162,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9102": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5284056,
+            "byteStride": 12,
+            "count": 2184,
+            "max": [
+                11.52,
+                7.68,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9104": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5310264,
+            "byteStride": 12,
+            "count": 2184,
+            "max": [
+                1,
+                0.980935,
+                1
+            ],
+            "min": [
+                -1,
+                -0.980935,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9122": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5336472,
+            "byteStride": 12,
+            "count": 2184,
+            "max": [
+                11.52,
+                7.68,
+                7.68
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9124": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5362680,
+            "byteStride": 12,
+            "count": 2184,
+            "max": [
+                1,
+                0.980935,
+                1
+            ],
+            "min": [
+                -1,
+                -0.980935,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9142": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5388888,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                7.68095,
+                7.68645,
+                13.4464
+            ],
+            "min": [
+                1.92095,
+                1.92515,
+                11.5237
+            ],
+            "type": 35665
+        },
+        "attribute_9144": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5394360,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9162": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5399832,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                38.4007,
+                9.613,
+                11.5277
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9164": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5437284,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9182": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5474736,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                26.881,
+                7.69145,
+                13.4452
+            ],
+            "min": [
+                21.1209,
+                1.93015,
+                11.5219
+            ],
+            "type": 35665
+        },
+        "attribute_9184": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5480304,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9202": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5485872,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.721,
+                6.72765,
+                2.88455
+            ],
+            "min": [
+                26.8798,
+                2.8869,
+                0.0019495
+            ],
+            "type": 35665
+        },
+        "attribute_9204": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5488656,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9222": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5491440,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                23.0407,
+                9.60835,
+                10.5665
+            ],
+            "min": [
+                15.3576,
+                0.0047493,
+                2.8824
+            ],
+            "type": 35665
+        },
+        "attribute_9224": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5503824,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                0.980948,
+                1,
+                0.980887
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_923": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 755040,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                51.8413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                44.158,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_9242": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5516208,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                23.042,
+                7.6889,
+                9.6052
+            ],
+            "min": [
+                15.3587,
+                1.92355,
+                2.8825
+            ],
+            "type": 35665
+        },
+        "attribute_9244": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5518656,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_925": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 757536,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_9262": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5521104,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                36.4809,
+                7.69335,
+                13.444
+            ],
+            "min": [
+                30.721,
+                1.93325,
+                11.5213
+            ],
+            "type": 35665
+        },
+        "attribute_9264": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5526612,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                0.981,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9282": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5532120,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                17.2809,
+                7.68835,
+                13.4458
+            ],
+            "min": [
+                11.5209,
+                1.92825,
+                11.5225
+            ],
+            "type": 35665
+        },
+        "attribute_9284": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5537784,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9302": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5543448,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5234,
+                6.72265,
+                2.88575
+            ],
+            "min": [
+                7.68215,
+                2.8819,
+                0.003151
+            ],
+            "type": 35665
+        },
+        "attribute_9304": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5546232,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9322": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5549016,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.121,
+                6.72455,
+                2.88455
+            ],
+            "min": [
+                17.2798,
+                2.8838,
+                0.0019507
+            ],
+            "type": 35665
+        },
+        "attribute_9324": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5551800,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9344": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5554584,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                7.68095,
+                7.68645,
+                13.4464
+            ],
+            "min": [
+                1.92095,
+                1.92515,
+                11.5237
+            ],
+            "type": 35665
+        },
+        "attribute_9346": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5560056,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9364": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5565528,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                38.4007,
+                9.613,
+                11.5277
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9366": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5602980,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9384": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5640432,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                26.881,
+                7.69145,
+                13.4452
+            ],
+            "min": [
+                21.1209,
+                1.93015,
+                11.5219
+            ],
+            "type": 35665
+        },
+        "attribute_9386": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5646000,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9404": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5651568,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.721,
+                6.72765,
+                2.88455
+            ],
+            "min": [
+                26.8798,
+                2.8869,
+                0.0019495
+            ],
+            "type": 35665
+        },
+        "attribute_9406": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5654352,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9424": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5657136,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                23.0407,
+                9.60835,
+                10.5665
+            ],
+            "min": [
+                15.3576,
+                0.0047493,
+                2.8824
+            ],
+            "type": 35665
+        },
+        "attribute_9426": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5669520,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                0.980948,
+                1,
+                0.980887
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_943": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 760032,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                69.1202,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                65.2791,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9444": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5681904,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                23.042,
+                7.6889,
+                9.6052
+            ],
+            "min": [
+                15.3587,
+                1.92355,
+                2.8825
+            ],
+            "type": 35665
+        },
+        "attribute_9446": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5684352,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_945": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 762816,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9464": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5686800,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                36.4809,
+                7.69335,
+                13.444
+            ],
+            "min": [
+                30.721,
+                1.93325,
+                11.5213
+            ],
+            "type": 35665
+        },
+        "attribute_9466": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5692308,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                0.981,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9484": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5697816,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                17.2809,
+                7.68835,
+                13.4458
+            ],
+            "min": [
+                11.5209,
+                1.92825,
+                11.5225
+            ],
+            "type": 35665
+        },
+        "attribute_9486": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5703480,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9504": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5709144,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5234,
+                6.72265,
+                2.88575
+            ],
+            "min": [
+                7.68215,
+                2.8819,
+                0.003151
+            ],
+            "type": 35665
+        },
+        "attribute_9506": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5711928,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9524": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5714712,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.121,
+                6.72455,
+                2.88455
+            ],
+            "min": [
+                17.2798,
+                2.8838,
+                0.0019507
+            ],
+            "type": 35665
+        },
+        "attribute_9526": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5717496,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9546": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5720280,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                17.28,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                11.52,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_9548": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5724120,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9566": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5727960,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                19.2,
+                9.606,
+                11.5245
+            ],
+            "min": [
+                0,
+                0,
+                0.0045481
+            ],
+            "type": 35665
+        },
+        "attribute_9568": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5743176,
+            "byteStride": 12,
+            "count": 1268,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9586": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5758392,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                7.68,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                1.92,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_9588": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5762232,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9606": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5766072,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                13.4413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                5.758,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_9608": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5768568,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_9626": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5771064,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9628": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5773848,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_963": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 765600,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                46.08,
+                7.686,
+                13.4445
+            ],
+            "min": [
+                40.32,
+                1.926,
+                11.5245
+            ],
+            "type": 35665
+        },
+        "attribute_9647": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5776632,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                7.68095,
+                7.68645,
+                13.4464
+            ],
+            "min": [
+                1.92095,
+                1.92515,
+                11.5237
+            ],
+            "type": 35665
+        },
+        "attribute_9649": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5782104,
+            "byteStride": 12,
+            "count": 456,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_965": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 769440,
+            "byteStride": 12,
+            "count": 320,
+            "max": [
+                0.986394,
+                0.986394,
+                1
+            ],
+            "min": [
+                -0.986394,
+                -0.986394,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9667": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5787576,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                38.4007,
+                9.613,
+                11.5277
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9669": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5825028,
+            "byteStride": 12,
+            "count": 3121,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9687": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5862480,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                26.881,
+                7.69145,
+                13.4452
+            ],
+            "min": [
+                21.1209,
+                1.93015,
+                11.5219
+            ],
+            "type": 35665
+        },
+        "attribute_9689": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5868048,
+            "byteStride": 12,
+            "count": 464,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9707": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5873616,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                30.721,
+                6.72765,
+                2.88455
+            ],
+            "min": [
+                26.8798,
+                2.8869,
+                0.0019495
+            ],
+            "type": 35665
+        },
+        "attribute_9709": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5876400,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9727": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5879184,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                23.0407,
+                9.60835,
+                10.5665
+            ],
+            "min": [
+                15.3576,
+                0.0047493,
+                2.8824
+            ],
+            "type": 35665
+        },
+        "attribute_9729": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5891568,
+            "byteStride": 12,
+            "count": 1032,
+            "max": [
+                0.980948,
+                1,
+                0.980887
+            ],
+            "min": [
+                -0.980948,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_9747": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5903952,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                23.042,
+                7.6889,
+                9.6052
+            ],
+            "min": [
+                15.3587,
+                1.92355,
+                2.8825
+            ],
+            "type": 35665
+        },
+        "attribute_9749": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5906400,
+            "byteStride": 12,
+            "count": 204,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_9767": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5908848,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                36.4809,
+                7.69335,
+                13.444
+            ],
+            "min": [
+                30.721,
+                1.93325,
+                11.5213
+            ],
+            "type": 35665
+        },
+        "attribute_9769": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5914356,
+            "byteStride": 12,
+            "count": 459,
+            "max": [
+                0.981,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9787": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5919864,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                17.2809,
+                7.68835,
+                13.4458
+            ],
+            "min": [
+                11.5209,
+                1.92825,
+                11.5225
+            ],
+            "type": 35665
+        },
+        "attribute_9789": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5925528,
+            "byteStride": 12,
+            "count": 472,
+            "max": [
+                0.98106,
+                0.98106,
+                1
+            ],
+            "min": [
+                -0.98106,
+                -0.98106,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_98": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 154224,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5203,
+                6.7198,
+                2.8826
+            ],
+            "min": [
+                7.67905,
+                2.87905,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9807": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5931192,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                11.5234,
+                6.72265,
+                2.88575
+            ],
+            "min": [
+                7.68215,
+                2.8819,
+                0.003151
+            ],
+            "type": 35665
+        },
+        "attribute_9809": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5933976,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9827": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5936760,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                21.121,
+                6.72455,
+                2.88455
+            ],
+            "min": [
+                17.2798,
+                2.8838,
+                0.0019507
+            ],
+            "type": 35665
+        },
+        "attribute_9829": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5939544,
+            "byteStride": 12,
+            "count": 232,
+            "max": [
+                0.981,
+                0.981,
+                1
+            ],
+            "min": [
+                -0.981,
+                -0.981,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_983": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 773280,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                32.6413,
+                7.68415,
+                9.60325
+            ],
+            "min": [
+                24.958,
+                1.9188,
+                2.88055
+            ],
+            "type": 35665
+        },
+        "attribute_9849": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5942328,
+            "byteStride": 12,
+            "count": 192,
+            "max": [
+                76.7988,
+                5.76,
+                5.76
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_985": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 775776,
+            "byteStride": 12,
+            "count": 208,
+            "max": [
+                1,
+                1,
+                0.980887
+            ],
+            "min": [
+                -1,
+                -1,
+                -0.980887
+            ],
+            "type": 35665
+        },
+        "attribute_9851": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5944632,
+            "byteStride": 12,
+            "count": 192,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9869": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5946936,
+            "byteStride": 12,
+            "count": 36,
+            "max": [
+                7.1052,
+                22.08,
+                16.32
+            ],
+            "min": [
+                4.8012,
+                19.9584,
+                14.3988
+            ],
+            "type": 35665
+        },
+        "attribute_9871": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5947368,
+            "byteStride": 12,
+            "count": 36,
+            "max": [
+                0.632063,
+                0.758455,
+                1
+            ],
+            "min": [
+                -0.632063,
+                -0.758455,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9889": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5947800,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                10.0812,
+                27.2832,
+                17.28
+            ],
+            "min": [
+                6.7212,
+                19.7664,
+                13.44
+            ],
+            "type": 35665
+        },
+        "attribute_9891": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5948568,
+            "byteStride": 12,
+            "count": 64,
+            "max": [
+                0.979365,
+                0.197985,
+                1
+            ],
+            "min": [
+                -0.979365,
+                -0.197985,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_9909": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5949336,
+            "byteStride": 12,
+            "count": 36,
+            "max": [
+                7.1052,
+                13.8912,
+                11.856
+            ],
+            "min": [
+                4.8012,
+                11.2704,
+                9.2352
+            ],
+            "type": 35665
+        },
+        "attribute_9911": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5949768,
+            "byteStride": 12,
+            "count": 36,
+            "max": [
+                0.63159,
+                0.8658,
+                0.73629
+            ],
+            "min": [
+                -0.63159,
+                -0.8658,
+                -0.73629
+            ],
+            "type": 35665
+        },
+        "attribute_9929": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5950200,
+            "byteStride": 12,
+            "count": 71,
+            "max": [
+                10.0812,
+                14.8176,
+                12.504
+            ],
+            "min": [
+                6.7212,
+                7.9344,
+                4.4172
+            ],
+            "type": 35665
+        },
+        "attribute_9931": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5951052,
+            "byteStride": 12,
+            "count": 71,
+            "max": [
+                0.979363,
+                0.865953,
+                0.500126
+            ],
+            "min": [
+                -0.979363,
+                -0.865953,
+                -0.500126
+            ],
+            "type": 35665
+        },
+        "attribute_9949": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5951904,
+            "byteStride": 12,
+            "count": 32,
+            "max": [
+                7.104,
+                13.8912,
+                21.4848
+            ],
+            "min": [
+                4.8,
+                11.2704,
+                18.8628
+            ],
+            "type": 35665
+        },
+        "attribute_9951": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5952288,
+            "byteStride": 12,
+            "count": 32,
+            "max": [
+                0.632028,
+                0.865737,
+                0.735933
+            ],
+            "min": [
+                -0.632028,
+                -0.865737,
+                -0.735933
+            ],
+            "type": 35665
+        },
+        "attribute_9969": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5952672,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                10.08,
+                14.8176,
+                26.3028
+            ],
+            "min": [
+                6.72,
+                7.9344,
+                18.216
+            ],
+            "type": 35665
+        },
+        "attribute_9971": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5953536,
+            "byteStride": 12,
+            "count": 72,
+            "max": [
+                0.97938,
+                0.865953,
+                0.500126
+            ],
+            "min": [
+                -0.97938,
+                -0.865953,
+                -0.500126
+            ],
+            "type": 35665
+        },
+        "attribute_9989": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5954400,
+            "byteStride": 12,
+            "count": 1536,
+            "max": [
+                11.0424,
+                30.72,
+                30.72
+            ],
+            "min": [
+                7.2,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_9991": {
+            "bufferView": "bufferView_15637",
+            "byteOffset": 5972832,
+            "byteStride": 12,
+            "count": 1536,
+            "max": [
+                0.920413,
+                0.907324,
+                0.907308
+            ],
+            "min": [
+                -0.920413,
+                -0.907324,
+                -0.907308
+            ],
+            "type": 35665
+        },
+        "indices_10007": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 706944,
+            "count": 1632,
+            "type": 5123
+        },
+        "indices_1001": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 88728,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10032": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 710208,
+            "count": 2388,
+            "type": 5123
+        },
+        "indices_10054": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 714984,
+            "count": 1056,
+            "type": 5123
+        },
+        "indices_10074": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717096,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10094": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717216,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10114": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717336,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10134": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717456,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10154": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717576,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10174": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717696,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10194": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717816,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_1021": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 89304,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_10214": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 717936,
+            "count": 60,
+            "type": 5123
+        },
+        "indices_10234": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 718056,
+            "count": 2388,
+            "type": 5123
+        },
+        "indices_10256": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 722832,
+            "count": 180,
+            "type": 5123
+        },
+        "indices_10276": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 723192,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10296": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 723768,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10316": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 724344,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10336": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 724920,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10356": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 725496,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10376": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 726072,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10396": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 726648,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1041": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 89760,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_10416": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 727224,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10436": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 727800,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10456": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 728376,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10476": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 728952,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10500": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 729528,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_10520": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 729864,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10540": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 730440,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10560": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 731016,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10580": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 731592,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10600": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 732168,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1061": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 90912,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_10620": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 732744,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10640": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 733320,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10662": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 733896,
+            "count": 180,
+            "type": 5123
+        },
+        "indices_10682": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 734256,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10702": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 734832,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10722": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 735408,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10742": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 735984,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10762": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 736560,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10782": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 737136,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10802": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 737712,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1081": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 92064,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_10822": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 738288,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10842": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 738864,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10862": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 739440,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10882": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 740016,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10906": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 740592,
+            "count": 180,
+            "type": 5123
+        },
+        "indices_10926": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 740952,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10946": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 741528,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10966": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 742104,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_10986": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 742680,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11006": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 743256,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1101": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 92520,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_11026": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 743832,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11046": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 744408,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11066": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 744984,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11086": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 745560,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11106": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 746136,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11126": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 746712,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11150": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 747288,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11170": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 747864,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_11190": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 748200,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11210": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 748776,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11230": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 749352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11250": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 749928,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11270": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 750504,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11290": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 751080,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_11310": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 751416,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1132": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 93672,
+            "count": 15336,
+            "type": 5123
+        },
+        "indices_11330": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 751992,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11350": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 752568,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11370": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 753144,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11390": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 753720,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_11410": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 754056,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_11430": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 754392,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11450": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 754968,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11470": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 755544,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11490": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 756120,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11510": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 756696,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1152": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 124344,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11530": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 757272,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11550": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 757848,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11572": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 758424,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_11592": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 759192,
+            "count": 2094,
+            "type": 5123
+        },
+        "indices_116": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 16896,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_11612": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 763380,
+            "count": 432,
+            "type": 5123
+        },
+        "indices_11632": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 764244,
+            "count": 192,
+            "type": 5123
+        },
+        "indices_11652": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 764628,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_11672": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 766164,
+            "count": 5814,
+            "type": 5123
+        },
+        "indices_11693": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 777792,
+            "count": 2244,
+            "type": 5123
+        },
+        "indices_11713": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 782280,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_1172": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 124920,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11733": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 782304,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_11753": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 782328,
+            "count": 876,
+            "type": 5123
+        },
+        "indices_11773": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 784080,
+            "count": 1536,
+            "type": 5123
+        },
+        "indices_11800": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 787152,
+            "count": 2244,
+            "type": 5123
+        },
+        "indices_11820": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 791640,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_11840": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 791664,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_11860": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 791688,
+            "count": 876,
+            "type": 5123
+        },
+        "indices_11880": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 793440,
+            "count": 1536,
+            "type": 5123
+        },
+        "indices_11907": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 796512,
+            "count": 2094,
+            "type": 5123
+        },
+        "indices_1192": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 125496,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_11927": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 800700,
+            "count": 432,
+            "type": 5123
+        },
+        "indices_11947": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 801564,
+            "count": 192,
+            "type": 5123
+        },
+        "indices_11967": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 801948,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_11987": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 803484,
+            "count": 5814,
+            "type": 5123
+        },
+        "indices_12008": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 815112,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_12028": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 815880,
+            "count": 960,
+            "type": 5123
+        },
+        "indices_12048": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 817800,
+            "count": 3870,
+            "type": 5123
+        },
+        "indices_12068": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 825540,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_12088": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 827844,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_12108": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 828612,
+            "count": 3876,
+            "type": 5123
+        },
+        "indices_1212": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 126072,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_12128": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 836364,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_12148": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 836940,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_12168": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 837516,
+            "count": 960,
+            "type": 5123
+        },
+        "indices_12188": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 839436,
+            "count": 3870,
+            "type": 5123
+        },
+        "indices_12208": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 847176,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_12228": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 849480,
+            "count": 3876,
+            "type": 5123
+        },
+        "indices_12248": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 857232,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_12268": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 857808,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_12288": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 858384,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_1232": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 126528,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_12320": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 859152,
+            "count": 369,
+            "type": 5123
+        },
+        "indices_12323": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 859890,
+            "count": 369,
+            "type": 5123
+        },
+        "indices_12355": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 860628,
+            "count": 369,
+            "type": 5123
+        },
+        "indices_12358": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 861366,
+            "count": 369,
+            "type": 5123
+        },
+        "indices_12378": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 862104,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12398": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 863700,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_12418": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 865152,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12438": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 865188,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12458": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 866784,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_12478": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 868320,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12498": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 868356,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12518": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 869952,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_1252": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 127680,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_12538": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 871404,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12558": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 873000,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12578": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 874596,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12598": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 876192,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12618": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 876228,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_12638": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 877764,
+            "count": 822,
+            "type": 5123
+        },
+        "indices_12658": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 879408,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12678": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 881004,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12698": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 882600,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_12718": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 884184,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_1272": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 128832,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_12738": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 885780,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_12758": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 887232,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12778": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 887268,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12798": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 887304,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12850": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 887340,
+            "count": 8400,
+            "type": 5123
+        },
+        "indices_12870": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 904140,
+            "count": 14988,
+            "type": 5123
+        },
+        "indices_12890": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 934116,
+            "count": 1392,
+            "type": 5123
+        },
+        "indices_12911": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 936900,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_1292": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 129408,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_12931": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 938496,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_12951": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 939948,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_12971": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 939984,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_12991": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 941580,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_13011": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 943116,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13031": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 943152,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13051": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 944748,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_13071": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 946200,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13091": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 947796,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13111": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 949392,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_1312": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 129864,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_13131": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 950988,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13151": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 951024,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_13171": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 952560,
+            "count": 822,
+            "type": 5123
+        },
+        "indices_13191": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 954204,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13211": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 955800,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13231": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 957396,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_13251": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 958980,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13271": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 960576,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_13291": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 962028,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13311": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 962064,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_1332": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 131016,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_13331": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 962100,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13383": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 962136,
+            "count": 8400,
+            "type": 5123
+        },
+        "indices_13403": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 978936,
+            "count": 14988,
+            "type": 5123
+        },
+        "indices_13423": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1008912,
+            "count": 1392,
+            "type": 5123
+        },
+        "indices_13444": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1011696,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13464": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1013292,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_13484": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1014744,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13504": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1014780,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_1352": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 132168,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_13524": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1016376,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_13544": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1017912,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13564": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1017948,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13584": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1019544,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_136": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 17352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_13604": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1020996,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13624": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1022592,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13644": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1024188,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13664": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1025784,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13684": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1025820,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_13704": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1027356,
+            "count": 822,
+            "type": 5123
+        },
+        "indices_1372": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 132744,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_13724": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1029000,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13744": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1030596,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13764": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1032192,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_13784": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1033776,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_13804": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1035372,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_13824": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1036824,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13844": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1036860,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13864": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1036896,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_13916": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1036932,
+            "count": 8400,
+            "type": 5123
+        },
+        "indices_1392": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 133200,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_13936": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1053732,
+            "count": 14988,
+            "type": 5123
+        },
+        "indices_13956": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1083708,
+            "count": 1392,
+            "type": 5123
+        },
+        "indices_13977": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1086492,
+            "count": 8400,
+            "type": 5123
+        },
+        "indices_13997": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1103292,
+            "count": 14988,
+            "type": 5123
+        },
+        "indices_14017": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1133268,
+            "count": 1392,
+            "type": 5123
+        },
+        "indices_14038": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1136052,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14058": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1137648,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_14078": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1139100,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14098": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1139136,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14118": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1140732,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_1412": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 133776,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_14138": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1142268,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14158": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1142304,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14178": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1143900,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_14198": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1145352,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14218": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1146948,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14238": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1148544,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14258": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1150140,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14278": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1150176,
+            "count": 768,
+            "type": 5123
+        },
+        "indices_14298": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1151712,
+            "count": 822,
+            "type": 5123
+        },
+        "indices_14318": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1153356,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_1432": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 134352,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_14338": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1154952,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14358": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1156548,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_14378": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1158132,
+            "count": 798,
+            "type": 5123
+        },
+        "indices_14398": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1159728,
+            "count": 726,
+            "type": 5123
+        },
+        "indices_14418": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1161180,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14438": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1161216,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14458": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1161252,
+            "count": 18,
+            "type": 5123
+        },
+        "indices_14510": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1161288,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1452": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 134808,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_14530": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1161864,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_14550": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1162416,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_14570": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1162992,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_14590": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1163736,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_14610": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1164312,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_14630": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1164864,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_14650": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1165440,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_14670": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1176564,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_14690": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1178148,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_14710": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1179732,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_1472": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 135384,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_14730": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1181316,
+            "count": 792,
+            "type": 5123
+        },
+        "indices_14750": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1166184,
+            "count": 2802,
+            "type": 5123
+        },
+        "indices_14770": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1171788,
+            "count": 156,
+            "type": 5123
+        },
+        "indices_14790": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1172100,
+            "count": 1080,
+            "type": 5123
+        },
+        "indices_14810": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1174260,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_14830": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1175412,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_14850": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1182900,
+            "count": 2496,
+            "type": 5123
+        },
+        "indices_14870": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1187892,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_14890": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1190196,
+            "count": 2496,
+            "type": 5123
+        },
+        "indices_14910": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 1195188,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_1492": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 136536,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1512": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 136992,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1532": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 138144,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1552": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 139296,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_156": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 17928,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1572": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 139752,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1592": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 140328,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_16": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 0,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_1612": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 140784,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1632": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 141936,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1652": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 142392,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1672": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 142968,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1692": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 144120,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1712": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 144576,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1732": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 145152,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1752": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 145608,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_176": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 18384,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1772": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 146760,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1792": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 147912,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_1812": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 148368,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1843": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 149520,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_1863": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 163536,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1883": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 164688,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1903": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 165264,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1923": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 165840,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1943": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 166416,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_196": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 18840,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_1963": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 166872,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_1983": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 167448,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2003": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 167904,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2023": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 168360,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2043": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 169512,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2063": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 169968,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2083": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 170424,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2103": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 171576,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2123": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 172728,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2143": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 173880,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_216": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 19992,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2163": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 174456,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2188": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 175608,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_2208": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 189624,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2228": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 190776,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2248": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 191352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2268": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 191928,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2288": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 192504,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2308": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 192960,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2328": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 193536,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2348": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 193992,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_236": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 20448,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2368": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 194448,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2388": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 195600,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2408": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 196056,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2428": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 196512,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2448": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 197664,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2468": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 198816,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2488": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 199968,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2508": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 200544,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2533": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 201696,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_2553": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 215712,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_256": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 20904,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2573": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 216864,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2593": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 217440,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2613": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 218016,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2633": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 218592,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2653": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 219048,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2673": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 219624,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2693": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 220080,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2713": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 220536,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2733": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 221688,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_2753": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 222144,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_276": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 22056,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2773": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 222600,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2793": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 223752,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2813": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 224904,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2833": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 226056,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_2853": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 226632,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2878": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 227784,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_2898": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 228120,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2918": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 229272,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2938": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 230424,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2958": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 231576,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_296": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 23208,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2978": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 232728,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_2998": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 233880,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3018": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 234456,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3038": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 235032,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3058": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 235608,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3078": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 236184,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3098": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 236760,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3118": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 237336,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3138": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 237912,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3158": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 238488,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_316": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 24360,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3178": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 239064,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3198": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 239640,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3218": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 240216,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3238": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 240792,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3258": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 241944,
+            "count": 1296,
+            "type": 5123
+        },
+        "indices_3278": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 244536,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_3298": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 246840,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_3318": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 248028,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_3338": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 249216,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_3358": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 251520,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_336": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 24936,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3378": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 252672,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3398": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 253248,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3418": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 253824,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3442": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 254400,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3462": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 255552,
+            "count": 1296,
+            "type": 5123
+        },
+        "indices_3482": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 258144,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_3502": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 260448,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_3522": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 261636,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_3542": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 262824,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_3562": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 265128,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3582": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 266280,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_36": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 14016,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3602": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 266856,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_361": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 26088,
+            "count": 3756,
+            "type": 5123
+        },
+        "indices_3622": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 267432,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3646": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 268008,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3666": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 268584,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3686": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 269736,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3706": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 270312,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3726": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 270888,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3746": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 271464,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_3771": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 271800,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3791": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 272376,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_381": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 33600,
+            "count": 1056,
+            "type": 5123
+        },
+        "indices_3811": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 273528,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3831": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 274104,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3851": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 274680,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_3871": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 275256,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_3896": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 275592,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_3916": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 275928,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3936": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 277080,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3956": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 278232,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3976": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 279384,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_3996": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 280536,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_401": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 35712,
+            "count": 1056,
+            "type": 5123
+        },
+        "indices_4016": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 281688,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4036": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 282264,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4056": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 282840,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4076": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 283416,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4096": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 283992,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4116": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 284568,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4136": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 285144,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4156": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 285720,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4176": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 286296,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4196": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 286872,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_421": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 37824,
+            "count": 15336,
+            "type": 5123
+        },
+        "indices_4216": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 287448,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4236": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 288024,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4256": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 288600,
+            "count": 180,
+            "type": 5123
+        },
+        "indices_4276": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 288960,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4296": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 289536,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4316": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 290112,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4336": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 290688,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4356": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 291264,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4376": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 291840,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4396": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 292416,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_441": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 68496,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4416": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 292992,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4436": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 293568,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4456": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 294144,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4476": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 294720,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4500": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 295296,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_4520": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 296448,
+            "count": 1578,
+            "type": 5123
+        },
+        "indices_4540": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 299604,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_4560": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 300756,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_4580": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 301212,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4601": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 301788,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_461": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 69072,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4621": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 302940,
+            "count": 1578,
+            "type": 5123
+        },
+        "indices_4641": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 306096,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_4661": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 307248,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_4681": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 307704,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4702": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 308280,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_4722": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 309048,
+            "count": 2352,
+            "type": 5123
+        },
+        "indices_4742": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 313752,
+            "count": 3756,
+            "type": 5123
+        },
+        "indices_4762": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 321264,
+            "count": 1056,
+            "type": 5123
+        },
+        "indices_4782": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 323376,
+            "count": 1056,
+            "type": 5123
+        },
+        "indices_4802": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 325488,
+            "count": 2352,
+            "type": 5123
+        },
+        "indices_481": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 69648,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_4822": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 330192,
+            "count": 384,
+            "type": 5123
+        },
+        "indices_4842": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 330960,
+            "count": 264,
+            "type": 5123
+        },
+        "indices_4862": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 331488,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_4882": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 332640,
+            "count": 3192,
+            "type": 5123
+        },
+        "indices_4902": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 339024,
+            "count": 3192,
+            "type": 5123
+        },
+        "indices_4922": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 345408,
+            "count": 2880,
+            "type": 5123
+        },
+        "indices_4942": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 351168,
+            "count": 2880,
+            "type": 5123
+        },
+        "indices_4974": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 356928,
+            "count": 1587,
+            "type": 5123
+        },
+        "indices_4977": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 360102,
+            "count": 1587,
+            "type": 5123
+        },
+        "indices_5009": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 363276,
+            "count": 1587,
+            "type": 5123
+        },
+        "indices_501": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 70224,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_5012": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 366450,
+            "count": 1587,
+            "type": 5123
+        },
+        "indices_5032": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 369624,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5052": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 370200,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5072": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 371352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5092": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 371928,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5112": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 372504,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5132": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 373080,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_5157": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 373416,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5177": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 373992,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5197": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 375144,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_521": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 70680,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5217": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 375720,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5237": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 376296,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5257": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 376872,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_5282": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 377208,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5302": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 377784,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5322": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 378936,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5342": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 379512,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5362": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 380088,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5382": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 380664,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_5407": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 381000,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_541": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 71832,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5427": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 381576,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5447": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 382728,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5467": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 383304,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5487": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 383880,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5507": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 384456,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_5532": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 384792,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5552": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 385368,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5572": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 386520,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5592": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 387096,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_56": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 15168,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_561": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 72984,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5612": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 387672,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5632": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 388248,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_5657": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 388584,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5677": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 389736,
+            "count": 3654,
+            "type": 5123
+        },
+        "indices_5697": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 397044,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5717": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 398196,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5737": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 398772,
+            "count": 1176,
+            "type": 5123
+        },
+        "indices_5757": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 401124,
+            "count": 216,
+            "type": 5123
+        },
+        "indices_5777": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 401556,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_5797": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 402708,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_581": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 73560,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_5817": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 403860,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5837": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 404436,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5859": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 405012,
+            "count": 4560,
+            "type": 5123
+        },
+        "indices_5879": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 414132,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5899": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 414708,
+            "count": 4560,
+            "type": 5123
+        },
+        "indices_5919": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 423828,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5939": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 424404,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5959": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 424980,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_5979": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 425532,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_5999": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 426108,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_601": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 74016,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6019": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 426852,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6039": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 427428,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_6059": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 427980,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6079": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 428556,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_6099": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 429300,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6119": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 429876,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_6139": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 430428,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6159": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 431004,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_6179": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 431748,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6199": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 432324,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_621": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 75168,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6219": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 432876,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6239": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 433452,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_6259": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 434196,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_6279": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 448212,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6299": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 449364,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6319": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 449940,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6339": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 450516,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6359": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 451092,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6379": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 451548,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6399": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 452124,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_641": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 76320,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6419": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 452580,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6439": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 453036,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6459": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 454188,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6479": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 454644,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6499": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 455100,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6519": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 456252,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6539": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 457404,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6559": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 458556,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6579": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 459132,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6604": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 460284,
+            "count": 7008,
+            "type": 5123
+        },
+        "indices_661": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 76896,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6624": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 474300,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6644": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 475452,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6664": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 476028,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6684": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 476604,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6704": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 477180,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6724": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 477636,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6744": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 478212,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6764": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 478668,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6784": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 479124,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6804": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 480276,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_681": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 77352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6824": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 480732,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_6844": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 481188,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6864": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 482340,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6884": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 483492,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6904": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 484644,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_6924": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 485220,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6949": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 486372,
+            "count": 4896,
+            "type": 5123
+        },
+        "indices_6969": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 496164,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_6989": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 497316,
+            "count": 1296,
+            "type": 5123
+        },
+        "indices_7009": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 499908,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_701": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 77928,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7029": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 502212,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_7049": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 503400,
+            "count": 594,
+            "type": 5123
+        },
+        "indices_7069": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 504588,
+            "count": 1152,
+            "type": 5123
+        },
+        "indices_7089": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 506892,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_7109": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 508044,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7129": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 508620,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7149": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 509196,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7173": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 509772,
+            "count": 4896,
+            "type": 5123
+        },
+        "indices_7193": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 519564,
+            "count": 4896,
+            "type": 5123
+        },
+        "indices_721": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 78504,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_7213": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 529356,
+            "count": 4896,
+            "type": 5123
+        },
+        "indices_7233": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 539148,
+            "count": 312,
+            "type": 5123
+        },
+        "indices_7253": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 539772,
+            "count": 1320,
+            "type": 5123
+        },
+        "indices_7273": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 542412,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7293": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 542988,
+            "count": 312,
+            "type": 5123
+        },
+        "indices_7313": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 543612,
+            "count": 1320,
+            "type": 5123
+        },
+        "indices_7333": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 546252,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7353": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 546828,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7373": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 547404,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_7393": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 547956,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_741": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 78960,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7413": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 548532,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_7433": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 549276,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7453": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 549852,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_7473": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 550404,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7493": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 550980,
+            "count": 372,
+            "type": 5123
+        },
+        "indices_7513": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 551724,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_7533": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 552276,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7553": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 552852,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7573": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 553428,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7593": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 554004,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_76": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 15744,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_761": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 79536,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_7613": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 554580,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7633": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 555156,
+            "count": 276,
+            "type": 5123
+        },
+        "indices_7653": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 555708,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7673": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 556284,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7693": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 556860,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7713": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 557436,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7733": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 558012,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7753": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 558588,
+            "count": 192,
+            "type": 5123
+        },
+        "indices_7773": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 558972,
+            "count": 1092,
+            "type": 5123
+        },
+        "indices_7793": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 561156,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_781": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 80688,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_7816": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 562308,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7836": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 562884,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7856": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 563460,
+            "count": 204,
+            "type": 5123
+        },
+        "indices_7876": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 563868,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7896": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 564444,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7916": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 565020,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7936": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 565596,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_7956": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 566172,
+            "count": 192,
+            "type": 5123
+        },
+        "indices_7976": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 566556,
+            "count": 1092,
+            "type": 5123
+        },
+        "indices_7996": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 568740,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_801": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 81144,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8019": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 569892,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8039": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 571044,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8059": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 572196,
+            "count": 1200,
+            "type": 5123
+        },
+        "indices_8079": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 574596,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_8100": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 574620,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8120": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 575772,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8140": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 576924,
+            "count": 1200,
+            "type": 5123
+        },
+        "indices_8160": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 579324,
+            "count": 12,
+            "type": 5123
+        },
+        "indices_8193": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 579348,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8196": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 579636,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_821": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 82296,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8228": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 579924,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8231": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 580500,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8263": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 581076,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8266": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 581364,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8298": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 581652,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8301": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 581940,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8333": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 582228,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8336": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 582516,
+            "count": 144,
+            "type": 5123
+        },
+        "indices_8368": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 582804,
+            "count": 84,
+            "type": 5123
+        },
+        "indices_8371": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 582972,
+            "count": 84,
+            "type": 5123
+        },
+        "indices_8396": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 583140,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_841": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 83448,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_8416": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 583476,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8436": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 584052,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8456": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 584628,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8476": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 585204,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8496": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 585780,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8516": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 586356,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8536": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 586932,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8558": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 587508,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8578": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 588084,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8598": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 589236,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_861": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 83904,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8618": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 589812,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8638": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 590388,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8658": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 590964,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_8683": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 591300,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8703": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 592452,
+            "count": 1578,
+            "type": 5123
+        },
+        "indices_8723": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 595608,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8743": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 596760,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_8763": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 597216,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8784": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 597792,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8804": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 598944,
+            "count": 1578,
+            "type": 5123
+        },
+        "indices_881": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 84480,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_8824": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 602100,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8844": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 603252,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_8864": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 603708,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_8885": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 604284,
+            "count": 4896,
+            "type": 5123
+        },
+        "indices_8917": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 614076,
+            "count": 2448,
+            "type": 5123
+        },
+        "indices_8920": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 618972,
+            "count": 2448,
+            "type": 5123
+        },
+        "indices_8940": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 623868,
+            "count": 1452,
+            "type": 5123
+        },
+        "indices_8960": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 626772,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_8980": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 627924,
+            "count": 1452,
+            "type": 5123
+        },
+        "indices_9000": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 630828,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_901": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 84936,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9020": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 631980,
+            "count": 1038,
+            "type": 5123
+        },
+        "indices_9040": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 634056,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9060": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 634632,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9080": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 635208,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9100": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 635784,
+            "count": 2736,
+            "type": 5123
+        },
+        "indices_9120": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 641256,
+            "count": 2736,
+            "type": 5123
+        },
+        "indices_9140": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 646728,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9160": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 647880,
+            "count": 3654,
+            "type": 5123
+        },
+        "indices_9180": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 655188,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9200": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 656340,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_921": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 86088,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_9220": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 656916,
+            "count": 1176,
+            "type": 5123
+        },
+        "indices_9240": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 659268,
+            "count": 216,
+            "type": 5123
+        },
+        "indices_9260": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 659700,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9280": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 660852,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9300": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 662004,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9320": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 662580,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9342": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 663156,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9362": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 664308,
+            "count": 3654,
+            "type": 5123
+        },
+        "indices_9382": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 671616,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9402": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 672768,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_941": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 86544,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9422": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 673344,
+            "count": 1176,
+            "type": 5123
+        },
+        "indices_9442": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 675696,
+            "count": 216,
+            "type": 5123
+        },
+        "indices_9462": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 676128,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9482": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 677280,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9502": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 678432,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9522": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 679008,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9544": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 679584,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9564": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 680736,
+            "count": 1578,
+            "type": 5123
+        },
+        "indices_9584": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 683892,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_96": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 16320,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9604": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 685044,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_961": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 87120,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9624": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 685500,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9645": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 686076,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9665": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 687228,
+            "count": 3654,
+            "type": 5123
+        },
+        "indices_9685": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 694536,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9705": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 695688,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9725": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 696264,
+            "count": 1176,
+            "type": 5123
+        },
+        "indices_9745": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 698616,
+            "count": 216,
+            "type": 5123
+        },
+        "indices_9765": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 699048,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9785": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 700200,
+            "count": 576,
+            "type": 5123
+        },
+        "indices_9805": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 701352,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_981": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 88272,
+            "count": 228,
+            "type": 5123
+        },
+        "indices_9825": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 701928,
+            "count": 288,
+            "type": 5123
+        },
+        "indices_9847": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 702504,
+            "count": 360,
+            "type": 5123
+        },
+        "indices_9867": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703224,
+            "count": 36,
+            "type": 5123
+        },
+        "indices_9887": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703296,
+            "count": 72,
+            "type": 5123
+        },
+        "indices_9907": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703440,
+            "count": 36,
+            "type": 5123
+        },
+        "indices_9927": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703512,
+            "count": 72,
+            "type": 5123
+        },
+        "indices_9947": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703656,
+            "count": 36,
+            "type": 5123
+        },
+        "indices_9967": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703728,
+            "count": 72,
+            "type": 5123
+        },
+        "indices_9987": {
+            "bufferView": "bufferView_15638",
+            "byteOffset": 703872,
+            "count": 1536,
+            "type": 5123
+        }
+    },
+    "animations": {},
+    "asset": {
+        "generator": "collada2gltf@75061f683116dc0ffdad48f33c226e933132e98c"
+    },
+    "bufferViews": {
+        "bufferView_15637": {
+            "buffer": "Rambler",
+            "byteLength": 10344480,
+            "byteOffset": 0,
+            "target": 34962
+        },
+        "bufferView_15638": {
+            "buffer": "Rambler",
+            "byteLength": 1197492,
+            "byteOffset": 10344480,
+            "target": 34963
+        },
+        "bufferView_15639": {
+            "buffer": "Rambler",
+            "byteLength": 0,
+            "byteOffset": 11541972
+        }
+    },
+    "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": "attribute_2857",
+                        "POSITION": "attribute_2855"
+                    },
+                    "indices": "indices_2853",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID101": {
+            "name": "ID101",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_340",
+                        "POSITION": "attribute_338"
+                    },
+                    "indices": "indices_336",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1032": {
+            "name": "ID1032",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2882",
+                        "POSITION": "attribute_2880"
+                    },
+                    "indices": "indices_2878",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1038": {
+            "name": "ID1038",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2902",
+                        "POSITION": "attribute_2900"
+                    },
+                    "indices": "indices_2898",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1044": {
+            "name": "ID1044",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2922",
+                        "POSITION": "attribute_2920"
+                    },
+                    "indices": "indices_2918",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1050": {
+            "name": "ID1050",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2942",
+                        "POSITION": "attribute_2940"
+                    },
+                    "indices": "indices_2938",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1056": {
+            "name": "ID1056",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2962",
+                        "POSITION": "attribute_2960"
+                    },
+                    "indices": "indices_2958",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1062": {
+            "name": "ID1062",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2982",
+                        "POSITION": "attribute_2980"
+                    },
+                    "indices": "indices_2978",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1068": {
+            "name": "ID1068",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3002",
+                        "POSITION": "attribute_3000"
+                    },
+                    "indices": "indices_2998",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1074": {
+            "name": "ID1074",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3022",
+                        "POSITION": "attribute_3020"
+                    },
+                    "indices": "indices_3018",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1080": {
+            "name": "ID1080",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3042",
+                        "POSITION": "attribute_3040"
+                    },
+                    "indices": "indices_3038",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1086": {
+            "name": "ID1086",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3062",
+                        "POSITION": "attribute_3060"
+                    },
+                    "indices": "indices_3058",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1092": {
+            "name": "ID1092",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3082",
+                        "POSITION": "attribute_3080"
+                    },
+                    "indices": "indices_3078",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1098": {
+            "name": "ID1098",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3102",
+                        "POSITION": "attribute_3100"
+                    },
+                    "indices": "indices_3098",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID11": {
+            "name": "ID11",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_40",
+                        "POSITION": "attribute_38"
+                    },
+                    "indices": "indices_36",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1104": {
+            "name": "ID1104",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3122",
+                        "POSITION": "attribute_3120"
+                    },
+                    "indices": "indices_3118",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1110": {
+            "name": "ID1110",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3142",
+                        "POSITION": "attribute_3140"
+                    },
+                    "indices": "indices_3138",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1116": {
+            "name": "ID1116",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3162",
+                        "POSITION": "attribute_3160"
+                    },
+                    "indices": "indices_3158",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1122": {
+            "name": "ID1122",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3182",
+                        "POSITION": "attribute_3180"
+                    },
+                    "indices": "indices_3178",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1128": {
+            "name": "ID1128",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3202",
+                        "POSITION": "attribute_3200"
+                    },
+                    "indices": "indices_3198",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1134": {
+            "name": "ID1134",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3222",
+                        "POSITION": "attribute_3220"
+                    },
+                    "indices": "indices_3218",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1141": {
+            "name": "ID1141",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3242",
+                        "POSITION": "attribute_3240"
+                    },
+                    "indices": "indices_3238",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1147": {
+            "name": "ID1147",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3262",
+                        "POSITION": "attribute_3260"
+                    },
+                    "indices": "indices_3258",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1153": {
+            "name": "ID1153",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3282",
+                        "POSITION": "attribute_3280"
+                    },
+                    "indices": "indices_3278",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1159": {
+            "name": "ID1159",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3302",
+                        "POSITION": "attribute_3300"
+                    },
+                    "indices": "indices_3298",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1165": {
+            "name": "ID1165",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3322",
+                        "POSITION": "attribute_3320"
+                    },
+                    "indices": "indices_3318",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1171": {
+            "name": "ID1171",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3342",
+                        "POSITION": "attribute_3340"
+                    },
+                    "indices": "indices_3338",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1177": {
+            "name": "ID1177",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3362",
+                        "POSITION": "attribute_3360"
+                    },
+                    "indices": "indices_3358",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1183": {
+            "name": "ID1183",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3382",
+                        "POSITION": "attribute_3380"
+                    },
+                    "indices": "indices_3378",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1189": {
+            "name": "ID1189",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3402",
+                        "POSITION": "attribute_3400"
+                    },
+                    "indices": "indices_3398",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1195": {
+            "name": "ID1195",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3422",
+                        "POSITION": "attribute_3420"
+                    },
+                    "indices": "indices_3418",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1218": {
+            "name": "ID1218",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3446",
+                        "POSITION": "attribute_3444"
+                    },
+                    "indices": "indices_3442",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1224": {
+            "name": "ID1224",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3466",
+                        "POSITION": "attribute_3464"
+                    },
+                    "indices": "indices_3462",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1230": {
+            "name": "ID1230",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3486",
+                        "POSITION": "attribute_3484"
+                    },
+                    "indices": "indices_3482",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1236": {
+            "name": "ID1236",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3506",
+                        "POSITION": "attribute_3504"
+                    },
+                    "indices": "indices_3502",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1242": {
+            "name": "ID1242",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3526",
+                        "POSITION": "attribute_3524"
+                    },
+                    "indices": "indices_3522",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1248": {
+            "name": "ID1248",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3546",
+                        "POSITION": "attribute_3544"
+                    },
+                    "indices": "indices_3542",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1254": {
+            "name": "ID1254",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3566",
+                        "POSITION": "attribute_3564"
+                    },
+                    "indices": "indices_3562",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1260": {
+            "name": "ID1260",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3586",
+                        "POSITION": "attribute_3584"
+                    },
+                    "indices": "indices_3582",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1266": {
+            "name": "ID1266",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3606",
+                        "POSITION": "attribute_3604"
+                    },
+                    "indices": "indices_3602",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1272": {
+            "name": "ID1272",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3626",
+                        "POSITION": "attribute_3624"
+                    },
+                    "indices": "indices_3622",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1295": {
+            "name": "ID1295",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3650",
+                        "POSITION": "attribute_3648"
+                    },
+                    "indices": "indices_3646",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID130": {
+            "name": "ID130",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_365",
+                        "POSITION": "attribute_363"
+                    },
+                    "indices": "indices_361",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1301": {
+            "name": "ID1301",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3670",
+                        "POSITION": "attribute_3668"
+                    },
+                    "indices": "indices_3666",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1307": {
+            "name": "ID1307",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3690",
+                        "POSITION": "attribute_3688"
+                    },
+                    "indices": "indices_3686",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1313": {
+            "name": "ID1313",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3710",
+                        "POSITION": "attribute_3708"
+                    },
+                    "indices": "indices_3706",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1319": {
+            "name": "ID1319",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3730",
+                        "POSITION": "attribute_3728"
+                    },
+                    "indices": "indices_3726",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1325": {
+            "name": "ID1325",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3750",
+                        "POSITION": "attribute_3748"
+                    },
+                    "indices": "indices_3746",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1352": {
+            "name": "ID1352",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3775",
+                        "POSITION": "attribute_3773"
+                    },
+                    "indices": "indices_3771",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1358": {
+            "name": "ID1358",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3795",
+                        "POSITION": "attribute_3793"
+                    },
+                    "indices": "indices_3791",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID136": {
+            "name": "ID136",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_385",
+                        "POSITION": "attribute_383"
+                    },
+                    "indices": "indices_381",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1364": {
+            "name": "ID1364",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3815",
+                        "POSITION": "attribute_3813"
+                    },
+                    "indices": "indices_3811",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1370": {
+            "name": "ID1370",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3835",
+                        "POSITION": "attribute_3833"
+                    },
+                    "indices": "indices_3831",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1376": {
+            "name": "ID1376",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3855",
+                        "POSITION": "attribute_3853"
+                    },
+                    "indices": "indices_3851",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1382": {
+            "name": "ID1382",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3875",
+                        "POSITION": "attribute_3873"
+                    },
+                    "indices": "indices_3871",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1409": {
+            "name": "ID1409",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3900",
+                        "POSITION": "attribute_3898"
+                    },
+                    "indices": "indices_3896",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1417": {
+            "name": "ID1417",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3920",
+                        "POSITION": "attribute_3918"
+                    },
+                    "indices": "indices_3916",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID142": {
+            "name": "ID142",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_405",
+                        "POSITION": "attribute_403"
+                    },
+                    "indices": "indices_401",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1423": {
+            "name": "ID1423",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3940",
+                        "POSITION": "attribute_3938"
+                    },
+                    "indices": "indices_3936",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1429": {
+            "name": "ID1429",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3960",
+                        "POSITION": "attribute_3958"
+                    },
+                    "indices": "indices_3956",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1435": {
+            "name": "ID1435",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_3980",
+                        "POSITION": "attribute_3978"
+                    },
+                    "indices": "indices_3976",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1441": {
+            "name": "ID1441",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4000",
+                        "POSITION": "attribute_3998"
+                    },
+                    "indices": "indices_3996",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1447": {
+            "name": "ID1447",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4020",
+                        "POSITION": "attribute_4018"
+                    },
+                    "indices": "indices_4016",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1453": {
+            "name": "ID1453",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4040",
+                        "POSITION": "attribute_4038"
+                    },
+                    "indices": "indices_4036",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1459": {
+            "name": "ID1459",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4060",
+                        "POSITION": "attribute_4058"
+                    },
+                    "indices": "indices_4056",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1465": {
+            "name": "ID1465",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4080",
+                        "POSITION": "attribute_4078"
+                    },
+                    "indices": "indices_4076",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1471": {
+            "name": "ID1471",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4100",
+                        "POSITION": "attribute_4098"
+                    },
+                    "indices": "indices_4096",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1477": {
+            "name": "ID1477",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4120",
+                        "POSITION": "attribute_4118"
+                    },
+                    "indices": "indices_4116",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1483": {
+            "name": "ID1483",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4140",
+                        "POSITION": "attribute_4138"
+                    },
+                    "indices": "indices_4136",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1489": {
+            "name": "ID1489",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4160",
+                        "POSITION": "attribute_4158"
+                    },
+                    "indices": "indices_4156",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID149": {
+            "name": "ID149",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_425",
+                        "POSITION": "attribute_423"
+                    },
+                    "indices": "indices_421",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1495": {
+            "name": "ID1495",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4180",
+                        "POSITION": "attribute_4178"
+                    },
+                    "indices": "indices_4176",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1501": {
+            "name": "ID1501",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4200",
+                        "POSITION": "attribute_4198"
+                    },
+                    "indices": "indices_4196",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1507": {
+            "name": "ID1507",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4220",
+                        "POSITION": "attribute_4218"
+                    },
+                    "indices": "indices_4216",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1513": {
+            "name": "ID1513",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4240",
+                        "POSITION": "attribute_4238"
+                    },
+                    "indices": "indices_4236",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1520": {
+            "name": "ID1520",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4260",
+                        "POSITION": "attribute_4258"
+                    },
+                    "indices": "indices_4256",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1526": {
+            "name": "ID1526",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4280",
+                        "POSITION": "attribute_4278"
+                    },
+                    "indices": "indices_4276",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1532": {
+            "name": "ID1532",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4300",
+                        "POSITION": "attribute_4298"
+                    },
+                    "indices": "indices_4296",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1538": {
+            "name": "ID1538",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4320",
+                        "POSITION": "attribute_4318"
+                    },
+                    "indices": "indices_4316",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1544": {
+            "name": "ID1544",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4340",
+                        "POSITION": "attribute_4338"
+                    },
+                    "indices": "indices_4336",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1550": {
+            "name": "ID1550",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4360",
+                        "POSITION": "attribute_4358"
+                    },
+                    "indices": "indices_4356",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1556": {
+            "name": "ID1556",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4380",
+                        "POSITION": "attribute_4378"
+                    },
+                    "indices": "indices_4376",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1562": {
+            "name": "ID1562",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4400",
+                        "POSITION": "attribute_4398"
+                    },
+                    "indices": "indices_4396",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1568": {
+            "name": "ID1568",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4420",
+                        "POSITION": "attribute_4418"
+                    },
+                    "indices": "indices_4416",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID157": {
+            "name": "ID157",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_445",
+                        "POSITION": "attribute_443"
+                    },
+                    "indices": "indices_441",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1574": {
+            "name": "ID1574",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4440",
+                        "POSITION": "attribute_4438"
+                    },
+                    "indices": "indices_4436",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1580": {
+            "name": "ID1580",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4460",
+                        "POSITION": "attribute_4458"
+                    },
+                    "indices": "indices_4456",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1586": {
+            "name": "ID1586",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4480",
+                        "POSITION": "attribute_4478"
+                    },
+                    "indices": "indices_4476",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1611": {
+            "name": "ID1611",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4504",
+                        "POSITION": "attribute_4502"
+                    },
+                    "indices": "indices_4500",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1617": {
+            "name": "ID1617",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4524",
+                        "POSITION": "attribute_4522"
+                    },
+                    "indices": "indices_4520",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1623": {
+            "name": "ID1623",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4544",
+                        "POSITION": "attribute_4542"
+                    },
+                    "indices": "indices_4540",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1629": {
+            "name": "ID1629",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4564",
+                        "POSITION": "attribute_4562"
+                    },
+                    "indices": "indices_4560",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID163": {
+            "name": "ID163",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_465",
+                        "POSITION": "attribute_463"
+                    },
+                    "indices": "indices_461",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1635": {
+            "name": "ID1635",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4584",
+                        "POSITION": "attribute_4582"
+                    },
+                    "indices": "indices_4580",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1646": {
+            "name": "ID1646",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4605",
+                        "POSITION": "attribute_4603"
+                    },
+                    "indices": "indices_4601",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1652": {
+            "name": "ID1652",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4625",
+                        "POSITION": "attribute_4623"
+                    },
+                    "indices": "indices_4621",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1658": {
+            "name": "ID1658",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4645",
+                        "POSITION": "attribute_4643"
+                    },
+                    "indices": "indices_4641",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1664": {
+            "name": "ID1664",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4665",
+                        "POSITION": "attribute_4663"
+                    },
+                    "indices": "indices_4661",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1670": {
+            "name": "ID1670",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4685",
+                        "POSITION": "attribute_4683"
+                    },
+                    "indices": "indices_4681",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1681": {
+            "name": "ID1681",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4706",
+                        "POSITION": "attribute_4704"
+                    },
+                    "indices": "indices_4702",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID169": {
+            "name": "ID169",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_485",
+                        "POSITION": "attribute_483"
+                    },
+                    "indices": "indices_481",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1690": {
+            "name": "ID1690",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4726",
+                        "POSITION": "attribute_4724"
+                    },
+                    "indices": "indices_4722",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1697": {
+            "name": "ID1697",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4746",
+                        "POSITION": "attribute_4744"
+                    },
+                    "indices": "indices_4742",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID17": {
+            "name": "ID17",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_60",
+                        "POSITION": "attribute_58"
+                    },
+                    "indices": "indices_56",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1703": {
+            "name": "ID1703",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4766",
+                        "POSITION": "attribute_4764"
+                    },
+                    "indices": "indices_4762",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1709": {
+            "name": "ID1709",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4786",
+                        "POSITION": "attribute_4784"
+                    },
+                    "indices": "indices_4782",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1716": {
+            "name": "ID1716",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4806",
+                        "POSITION": "attribute_4804"
+                    },
+                    "indices": "indices_4802",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1723": {
+            "name": "ID1723",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4826",
+                        "POSITION": "attribute_4824"
+                    },
+                    "indices": "indices_4822",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1730": {
+            "name": "ID1730",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4846",
+                        "POSITION": "attribute_4844"
+                    },
+                    "indices": "indices_4842",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1736": {
+            "name": "ID1736",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4866",
+                        "POSITION": "attribute_4864"
+                    },
+                    "indices": "indices_4862",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1743": {
+            "name": "ID1743",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4886",
+                        "POSITION": "attribute_4884"
+                    },
+                    "indices": "indices_4882",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID175": {
+            "name": "ID175",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_505",
+                        "POSITION": "attribute_503"
+                    },
+                    "indices": "indices_501",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1750": {
+            "name": "ID1750",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4906",
+                        "POSITION": "attribute_4904"
+                    },
+                    "indices": "indices_4902",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1757": {
+            "name": "ID1757",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4926",
+                        "POSITION": "attribute_4924"
+                    },
+                    "indices": "indices_4922",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1764": {
+            "name": "ID1764",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4946",
+                        "POSITION": "attribute_4944"
+                    },
+                    "indices": "indices_4942",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1771": {
+            "name": "ID1771",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4981",
+                        "POSITION": "attribute_4979"
+                    },
+                    "indices": "indices_4974",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_4981",
+                        "POSITION": "attribute_4979"
+                    },
+                    "indices": "indices_4977",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1782": {
+            "name": "ID1782",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5016",
+                        "POSITION": "attribute_5014"
+                    },
+                    "indices": "indices_5009",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5016",
+                        "POSITION": "attribute_5014"
+                    },
+                    "indices": "indices_5012",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1789": {
+            "name": "ID1789",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5036",
+                        "POSITION": "attribute_5034"
+                    },
+                    "indices": "indices_5032",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1795": {
+            "name": "ID1795",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5056",
+                        "POSITION": "attribute_5054"
+                    },
+                    "indices": "indices_5052",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1801": {
+            "name": "ID1801",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5076",
+                        "POSITION": "attribute_5074"
+                    },
+                    "indices": "indices_5072",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1807": {
+            "name": "ID1807",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5096",
+                        "POSITION": "attribute_5094"
+                    },
+                    "indices": "indices_5092",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID181": {
+            "name": "ID181",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_525",
+                        "POSITION": "attribute_523"
+                    },
+                    "indices": "indices_521",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1813": {
+            "name": "ID1813",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5116",
+                        "POSITION": "attribute_5114"
+                    },
+                    "indices": "indices_5112",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1819": {
+            "name": "ID1819",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5136",
+                        "POSITION": "attribute_5134"
+                    },
+                    "indices": "indices_5132",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1846": {
+            "name": "ID1846",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5161",
+                        "POSITION": "attribute_5159"
+                    },
+                    "indices": "indices_5157",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1852": {
+            "name": "ID1852",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5181",
+                        "POSITION": "attribute_5179"
+                    },
+                    "indices": "indices_5177",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1858": {
+            "name": "ID1858",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5201",
+                        "POSITION": "attribute_5199"
+                    },
+                    "indices": "indices_5197",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1864": {
+            "name": "ID1864",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5221",
+                        "POSITION": "attribute_5219"
+                    },
+                    "indices": "indices_5217",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID187": {
+            "name": "ID187",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_545",
+                        "POSITION": "attribute_543"
+                    },
+                    "indices": "indices_541",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1870": {
+            "name": "ID1870",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5241",
+                        "POSITION": "attribute_5239"
+                    },
+                    "indices": "indices_5237",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1876": {
+            "name": "ID1876",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5261",
+                        "POSITION": "attribute_5259"
+                    },
+                    "indices": "indices_5257",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1903": {
+            "name": "ID1903",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5286",
+                        "POSITION": "attribute_5284"
+                    },
+                    "indices": "indices_5282",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1909": {
+            "name": "ID1909",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5306",
+                        "POSITION": "attribute_5304"
+                    },
+                    "indices": "indices_5302",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1915": {
+            "name": "ID1915",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5326",
+                        "POSITION": "attribute_5324"
+                    },
+                    "indices": "indices_5322",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1921": {
+            "name": "ID1921",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5346",
+                        "POSITION": "attribute_5344"
+                    },
+                    "indices": "indices_5342",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1927": {
+            "name": "ID1927",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5366",
+                        "POSITION": "attribute_5364"
+                    },
+                    "indices": "indices_5362",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID193": {
+            "name": "ID193",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_565",
+                        "POSITION": "attribute_563"
+                    },
+                    "indices": "indices_561",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1933": {
+            "name": "ID1933",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5386",
+                        "POSITION": "attribute_5384"
+                    },
+                    "indices": "indices_5382",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1960": {
+            "name": "ID1960",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5411",
+                        "POSITION": "attribute_5409"
+                    },
+                    "indices": "indices_5407",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1966": {
+            "name": "ID1966",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5431",
+                        "POSITION": "attribute_5429"
+                    },
+                    "indices": "indices_5427",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1972": {
+            "name": "ID1972",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5451",
+                        "POSITION": "attribute_5449"
+                    },
+                    "indices": "indices_5447",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1978": {
+            "name": "ID1978",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5471",
+                        "POSITION": "attribute_5469"
+                    },
+                    "indices": "indices_5467",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1984": {
+            "name": "ID1984",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5491",
+                        "POSITION": "attribute_5489"
+                    },
+                    "indices": "indices_5487",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID199": {
+            "name": "ID199",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_585",
+                        "POSITION": "attribute_583"
+                    },
+                    "indices": "indices_581",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID1990": {
+            "name": "ID1990",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5511",
+                        "POSITION": "attribute_5509"
+                    },
+                    "indices": "indices_5507",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2017": {
+            "name": "ID2017",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5536",
+                        "POSITION": "attribute_5534"
+                    },
+                    "indices": "indices_5532",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2023": {
+            "name": "ID2023",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5556",
+                        "POSITION": "attribute_5554"
+                    },
+                    "indices": "indices_5552",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2029": {
+            "name": "ID2029",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5576",
+                        "POSITION": "attribute_5574"
+                    },
+                    "indices": "indices_5572",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2035": {
+            "name": "ID2035",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5596",
+                        "POSITION": "attribute_5594"
+                    },
+                    "indices": "indices_5592",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2041": {
+            "name": "ID2041",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5616",
+                        "POSITION": "attribute_5614"
+                    },
+                    "indices": "indices_5612",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2047": {
+            "name": "ID2047",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5636",
+                        "POSITION": "attribute_5634"
+                    },
+                    "indices": "indices_5632",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID205": {
+            "name": "ID205",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_605",
+                        "POSITION": "attribute_603"
+                    },
+                    "indices": "indices_601",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2074": {
+            "name": "ID2074",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5661",
+                        "POSITION": "attribute_5659"
+                    },
+                    "indices": "indices_5657",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2080": {
+            "name": "ID2080",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5681",
+                        "POSITION": "attribute_5679"
+                    },
+                    "indices": "indices_5677",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2086": {
+            "name": "ID2086",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5701",
+                        "POSITION": "attribute_5699"
+                    },
+                    "indices": "indices_5697",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2092": {
+            "name": "ID2092",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5721",
+                        "POSITION": "attribute_5719"
+                    },
+                    "indices": "indices_5717",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2098": {
+            "name": "ID2098",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5741",
+                        "POSITION": "attribute_5739"
+                    },
+                    "indices": "indices_5737",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2104": {
+            "name": "ID2104",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5761",
+                        "POSITION": "attribute_5759"
+                    },
+                    "indices": "indices_5757",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID211": {
+            "name": "ID211",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_625",
+                        "POSITION": "attribute_623"
+                    },
+                    "indices": "indices_621",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2110": {
+            "name": "ID2110",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5781",
+                        "POSITION": "attribute_5779"
+                    },
+                    "indices": "indices_5777",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2116": {
+            "name": "ID2116",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5801",
+                        "POSITION": "attribute_5799"
+                    },
+                    "indices": "indices_5797",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2122": {
+            "name": "ID2122",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5821",
+                        "POSITION": "attribute_5819"
+                    },
+                    "indices": "indices_5817",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2128": {
+            "name": "ID2128",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5841",
+                        "POSITION": "attribute_5839"
+                    },
+                    "indices": "indices_5837",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2143": {
+            "name": "ID2143",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5863",
+                        "POSITION": "attribute_5861"
+                    },
+                    "indices": "indices_5859",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2149": {
+            "name": "ID2149",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5883",
+                        "POSITION": "attribute_5881"
+                    },
+                    "indices": "indices_5879",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2156": {
+            "name": "ID2156",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5903",
+                        "POSITION": "attribute_5901"
+                    },
+                    "indices": "indices_5899",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2162": {
+            "name": "ID2162",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5923",
+                        "POSITION": "attribute_5921"
+                    },
+                    "indices": "indices_5919",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2169": {
+            "name": "ID2169",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5943",
+                        "POSITION": "attribute_5941"
+                    },
+                    "indices": "indices_5939",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID217": {
+            "name": "ID217",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_645",
+                        "POSITION": "attribute_643"
+                    },
+                    "indices": "indices_641",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2175": {
+            "name": "ID2175",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5963",
+                        "POSITION": "attribute_5961"
+                    },
+                    "indices": "indices_5959",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2181": {
+            "name": "ID2181",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_5983",
+                        "POSITION": "attribute_5981"
+                    },
+                    "indices": "indices_5979",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2187": {
+            "name": "ID2187",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6003",
+                        "POSITION": "attribute_6001"
+                    },
+                    "indices": "indices_5999",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2194": {
+            "name": "ID2194",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6023",
+                        "POSITION": "attribute_6021"
+                    },
+                    "indices": "indices_6019",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2200": {
+            "name": "ID2200",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6043",
+                        "POSITION": "attribute_6041"
+                    },
+                    "indices": "indices_6039",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2206": {
+            "name": "ID2206",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6063",
+                        "POSITION": "attribute_6061"
+                    },
+                    "indices": "indices_6059",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2212": {
+            "name": "ID2212",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6083",
+                        "POSITION": "attribute_6081"
+                    },
+                    "indices": "indices_6079",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2219": {
+            "name": "ID2219",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6103",
+                        "POSITION": "attribute_6101"
+                    },
+                    "indices": "indices_6099",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2225": {
+            "name": "ID2225",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6123",
+                        "POSITION": "attribute_6121"
+                    },
+                    "indices": "indices_6119",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID223": {
+            "name": "ID223",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_665",
+                        "POSITION": "attribute_663"
+                    },
+                    "indices": "indices_661",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2231": {
+            "name": "ID2231",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6143",
+                        "POSITION": "attribute_6141"
+                    },
+                    "indices": "indices_6139",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2237": {
+            "name": "ID2237",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6163",
+                        "POSITION": "attribute_6161"
+                    },
+                    "indices": "indices_6159",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2244": {
+            "name": "ID2244",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6183",
+                        "POSITION": "attribute_6181"
+                    },
+                    "indices": "indices_6179",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2250": {
+            "name": "ID2250",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6203",
+                        "POSITION": "attribute_6201"
+                    },
+                    "indices": "indices_6199",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2256": {
+            "name": "ID2256",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6223",
+                        "POSITION": "attribute_6221"
+                    },
+                    "indices": "indices_6219",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2262": {
+            "name": "ID2262",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6243",
+                        "POSITION": "attribute_6241"
+                    },
+                    "indices": "indices_6239",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2269": {
+            "name": "ID2269",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6263",
+                        "POSITION": "attribute_6261"
+                    },
+                    "indices": "indices_6259",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2275": {
+            "name": "ID2275",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6283",
+                        "POSITION": "attribute_6281"
+                    },
+                    "indices": "indices_6279",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2281": {
+            "name": "ID2281",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6303",
+                        "POSITION": "attribute_6301"
+                    },
+                    "indices": "indices_6299",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2287": {
+            "name": "ID2287",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6323",
+                        "POSITION": "attribute_6321"
+                    },
+                    "indices": "indices_6319",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID229": {
+            "name": "ID229",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_685",
+                        "POSITION": "attribute_683"
+                    },
+                    "indices": "indices_681",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2293": {
+            "name": "ID2293",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6343",
+                        "POSITION": "attribute_6341"
+                    },
+                    "indices": "indices_6339",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2299": {
+            "name": "ID2299",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6363",
+                        "POSITION": "attribute_6361"
+                    },
+                    "indices": "indices_6359",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID23": {
+            "name": "ID23",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_80",
+                        "POSITION": "attribute_78"
+                    },
+                    "indices": "indices_76",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2305": {
+            "name": "ID2305",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6383",
+                        "POSITION": "attribute_6381"
+                    },
+                    "indices": "indices_6379",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2311": {
+            "name": "ID2311",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6403",
+                        "POSITION": "attribute_6401"
+                    },
+                    "indices": "indices_6399",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2317": {
+            "name": "ID2317",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6423",
+                        "POSITION": "attribute_6421"
+                    },
+                    "indices": "indices_6419",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2323": {
+            "name": "ID2323",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6443",
+                        "POSITION": "attribute_6441"
+                    },
+                    "indices": "indices_6439",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2329": {
+            "name": "ID2329",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6463",
+                        "POSITION": "attribute_6461"
+                    },
+                    "indices": "indices_6459",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2335": {
+            "name": "ID2335",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6483",
+                        "POSITION": "attribute_6481"
+                    },
+                    "indices": "indices_6479",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2341": {
+            "name": "ID2341",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6503",
+                        "POSITION": "attribute_6501"
+                    },
+                    "indices": "indices_6499",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2347": {
+            "name": "ID2347",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6523",
+                        "POSITION": "attribute_6521"
+                    },
+                    "indices": "indices_6519",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID235": {
+            "name": "ID235",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_705",
+                        "POSITION": "attribute_703"
+                    },
+                    "indices": "indices_701",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2353": {
+            "name": "ID2353",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6543",
+                        "POSITION": "attribute_6541"
+                    },
+                    "indices": "indices_6539",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2359": {
+            "name": "ID2359",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6563",
+                        "POSITION": "attribute_6561"
+                    },
+                    "indices": "indices_6559",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2365": {
+            "name": "ID2365",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6583",
+                        "POSITION": "attribute_6581"
+                    },
+                    "indices": "indices_6579",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2392": {
+            "name": "ID2392",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6608",
+                        "POSITION": "attribute_6606"
+                    },
+                    "indices": "indices_6604",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2398": {
+            "name": "ID2398",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6628",
+                        "POSITION": "attribute_6626"
+                    },
+                    "indices": "indices_6624",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2404": {
+            "name": "ID2404",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6648",
+                        "POSITION": "attribute_6646"
+                    },
+                    "indices": "indices_6644",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID241": {
+            "name": "ID241",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_725",
+                        "POSITION": "attribute_723"
+                    },
+                    "indices": "indices_721",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2410": {
+            "name": "ID2410",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6668",
+                        "POSITION": "attribute_6666"
+                    },
+                    "indices": "indices_6664",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2416": {
+            "name": "ID2416",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6688",
+                        "POSITION": "attribute_6686"
+                    },
+                    "indices": "indices_6684",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2422": {
+            "name": "ID2422",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6708",
+                        "POSITION": "attribute_6706"
+                    },
+                    "indices": "indices_6704",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2428": {
+            "name": "ID2428",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6728",
+                        "POSITION": "attribute_6726"
+                    },
+                    "indices": "indices_6724",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2434": {
+            "name": "ID2434",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6748",
+                        "POSITION": "attribute_6746"
+                    },
+                    "indices": "indices_6744",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2440": {
+            "name": "ID2440",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6768",
+                        "POSITION": "attribute_6766"
+                    },
+                    "indices": "indices_6764",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2446": {
+            "name": "ID2446",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6788",
+                        "POSITION": "attribute_6786"
+                    },
+                    "indices": "indices_6784",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2452": {
+            "name": "ID2452",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6808",
+                        "POSITION": "attribute_6806"
+                    },
+                    "indices": "indices_6804",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2458": {
+            "name": "ID2458",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6828",
+                        "POSITION": "attribute_6826"
+                    },
+                    "indices": "indices_6824",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2464": {
+            "name": "ID2464",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6848",
+                        "POSITION": "attribute_6846"
+                    },
+                    "indices": "indices_6844",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID247": {
+            "name": "ID247",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_745",
+                        "POSITION": "attribute_743"
+                    },
+                    "indices": "indices_741",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2470": {
+            "name": "ID2470",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6868",
+                        "POSITION": "attribute_6866"
+                    },
+                    "indices": "indices_6864",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2476": {
+            "name": "ID2476",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6888",
+                        "POSITION": "attribute_6886"
+                    },
+                    "indices": "indices_6884",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2482": {
+            "name": "ID2482",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6908",
+                        "POSITION": "attribute_6906"
+                    },
+                    "indices": "indices_6904",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2488": {
+            "name": "ID2488",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6928",
+                        "POSITION": "attribute_6926"
+                    },
+                    "indices": "indices_6924",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2515": {
+            "name": "ID2515",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6953",
+                        "POSITION": "attribute_6951"
+                    },
+                    "indices": "indices_6949",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2522": {
+            "name": "ID2522",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6973",
+                        "POSITION": "attribute_6971"
+                    },
+                    "indices": "indices_6969",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2528": {
+            "name": "ID2528",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_6993",
+                        "POSITION": "attribute_6991"
+                    },
+                    "indices": "indices_6989",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID253": {
+            "name": "ID253",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_765",
+                        "POSITION": "attribute_763"
+                    },
+                    "indices": "indices_761",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2534": {
+            "name": "ID2534",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7013",
+                        "POSITION": "attribute_7011"
+                    },
+                    "indices": "indices_7009",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2540": {
+            "name": "ID2540",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7033",
+                        "POSITION": "attribute_7031"
+                    },
+                    "indices": "indices_7029",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2546": {
+            "name": "ID2546",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7053",
+                        "POSITION": "attribute_7051"
+                    },
+                    "indices": "indices_7049",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2552": {
+            "name": "ID2552",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7073",
+                        "POSITION": "attribute_7071"
+                    },
+                    "indices": "indices_7069",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2558": {
+            "name": "ID2558",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7093",
+                        "POSITION": "attribute_7091"
+                    },
+                    "indices": "indices_7089",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2564": {
+            "name": "ID2564",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7113",
+                        "POSITION": "attribute_7111"
+                    },
+                    "indices": "indices_7109",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2570": {
+            "name": "ID2570",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7133",
+                        "POSITION": "attribute_7131"
+                    },
+                    "indices": "indices_7129",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2576": {
+            "name": "ID2576",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7153",
+                        "POSITION": "attribute_7151"
+                    },
+                    "indices": "indices_7149",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID259": {
+            "name": "ID259",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_785",
+                        "POSITION": "attribute_783"
+                    },
+                    "indices": "indices_781",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2599": {
+            "name": "ID2599",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7177",
+                        "POSITION": "attribute_7175"
+                    },
+                    "indices": "indices_7173",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2606": {
+            "name": "ID2606",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7197",
+                        "POSITION": "attribute_7195"
+                    },
+                    "indices": "indices_7193",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2613": {
+            "name": "ID2613",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7217",
+                        "POSITION": "attribute_7215"
+                    },
+                    "indices": "indices_7213",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2620": {
+            "name": "ID2620",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7237",
+                        "POSITION": "attribute_7235"
+                    },
+                    "indices": "indices_7233",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2626": {
+            "name": "ID2626",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7257",
+                        "POSITION": "attribute_7255"
+                    },
+                    "indices": "indices_7253",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2632": {
+            "name": "ID2632",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7277",
+                        "POSITION": "attribute_7275"
+                    },
+                    "indices": "indices_7273",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2639": {
+            "name": "ID2639",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7297",
+                        "POSITION": "attribute_7295"
+                    },
+                    "indices": "indices_7293",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2645": {
+            "name": "ID2645",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7317",
+                        "POSITION": "attribute_7315"
+                    },
+                    "indices": "indices_7313",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID265": {
+            "name": "ID265",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_805",
+                        "POSITION": "attribute_803"
+                    },
+                    "indices": "indices_801",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2651": {
+            "name": "ID2651",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7337",
+                        "POSITION": "attribute_7335"
+                    },
+                    "indices": "indices_7333",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2658": {
+            "name": "ID2658",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7357",
+                        "POSITION": "attribute_7355"
+                    },
+                    "indices": "indices_7353",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2664": {
+            "name": "ID2664",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7377",
+                        "POSITION": "attribute_7375"
+                    },
+                    "indices": "indices_7373",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2670": {
+            "name": "ID2670",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7397",
+                        "POSITION": "attribute_7395"
+                    },
+                    "indices": "indices_7393",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2676": {
+            "name": "ID2676",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7417",
+                        "POSITION": "attribute_7415"
+                    },
+                    "indices": "indices_7413",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2683": {
+            "name": "ID2683",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7437",
+                        "POSITION": "attribute_7435"
+                    },
+                    "indices": "indices_7433",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2689": {
+            "name": "ID2689",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7457",
+                        "POSITION": "attribute_7455"
+                    },
+                    "indices": "indices_7453",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2695": {
+            "name": "ID2695",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7477",
+                        "POSITION": "attribute_7475"
+                    },
+                    "indices": "indices_7473",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2701": {
+            "name": "ID2701",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7497",
+                        "POSITION": "attribute_7495"
+                    },
+                    "indices": "indices_7493",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2708": {
+            "name": "ID2708",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7517",
+                        "POSITION": "attribute_7515"
+                    },
+                    "indices": "indices_7513",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID271": {
+            "name": "ID271",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_825",
+                        "POSITION": "attribute_823"
+                    },
+                    "indices": "indices_821",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2714": {
+            "name": "ID2714",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7537",
+                        "POSITION": "attribute_7535"
+                    },
+                    "indices": "indices_7533",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2720": {
+            "name": "ID2720",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7557",
+                        "POSITION": "attribute_7555"
+                    },
+                    "indices": "indices_7553",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2726": {
+            "name": "ID2726",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7577",
+                        "POSITION": "attribute_7575"
+                    },
+                    "indices": "indices_7573",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2732": {
+            "name": "ID2732",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7597",
+                        "POSITION": "attribute_7595"
+                    },
+                    "indices": "indices_7593",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2738": {
+            "name": "ID2738",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7617",
+                        "POSITION": "attribute_7615"
+                    },
+                    "indices": "indices_7613",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2745": {
+            "name": "ID2745",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7637",
+                        "POSITION": "attribute_7635"
+                    },
+                    "indices": "indices_7633",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2751": {
+            "name": "ID2751",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7657",
+                        "POSITION": "attribute_7655"
+                    },
+                    "indices": "indices_7653",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2757": {
+            "name": "ID2757",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7677",
+                        "POSITION": "attribute_7675"
+                    },
+                    "indices": "indices_7673",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2763": {
+            "name": "ID2763",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7697",
+                        "POSITION": "attribute_7695"
+                    },
+                    "indices": "indices_7693",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2769": {
+            "name": "ID2769",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7717",
+                        "POSITION": "attribute_7715"
+                    },
+                    "indices": "indices_7713",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID277": {
+            "name": "ID277",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_845",
+                        "POSITION": "attribute_843"
+                    },
+                    "indices": "indices_841",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2775": {
+            "name": "ID2775",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7737",
+                        "POSITION": "attribute_7735"
+                    },
+                    "indices": "indices_7733",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2782": {
+            "name": "ID2782",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7757",
+                        "POSITION": "attribute_7755"
+                    },
+                    "indices": "indices_7753",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2789": {
+            "name": "ID2789",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7777",
+                        "POSITION": "attribute_7775"
+                    },
+                    "indices": "indices_7773",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2795": {
+            "name": "ID2795",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7797",
+                        "POSITION": "attribute_7795"
+                    },
+                    "indices": "indices_7793",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2814": {
+            "name": "ID2814",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7820",
+                        "POSITION": "attribute_7818"
+                    },
+                    "indices": "indices_7816",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2820": {
+            "name": "ID2820",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7840",
+                        "POSITION": "attribute_7838"
+                    },
+                    "indices": "indices_7836",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2826": {
+            "name": "ID2826",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7860",
+                        "POSITION": "attribute_7858"
+                    },
+                    "indices": "indices_7856",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID283": {
+            "name": "ID283",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_865",
+                        "POSITION": "attribute_863"
+                    },
+                    "indices": "indices_861",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2832": {
+            "name": "ID2832",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7880",
+                        "POSITION": "attribute_7878"
+                    },
+                    "indices": "indices_7876",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2838": {
+            "name": "ID2838",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7900",
+                        "POSITION": "attribute_7898"
+                    },
+                    "indices": "indices_7896",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2844": {
+            "name": "ID2844",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7920",
+                        "POSITION": "attribute_7918"
+                    },
+                    "indices": "indices_7916",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2850": {
+            "name": "ID2850",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7940",
+                        "POSITION": "attribute_7938"
+                    },
+                    "indices": "indices_7936",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2857": {
+            "name": "ID2857",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7960",
+                        "POSITION": "attribute_7958"
+                    },
+                    "indices": "indices_7956",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2864": {
+            "name": "ID2864",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_7980",
+                        "POSITION": "attribute_7978"
+                    },
+                    "indices": "indices_7976",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2870": {
+            "name": "ID2870",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8000",
+                        "POSITION": "attribute_7998"
+                    },
+                    "indices": "indices_7996",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2889": {
+            "name": "ID2889",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8023",
+                        "POSITION": "attribute_8021"
+                    },
+                    "indices": "indices_8019",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID289": {
+            "name": "ID289",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_885",
+                        "POSITION": "attribute_883"
+                    },
+                    "indices": "indices_881",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2895": {
+            "name": "ID2895",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8043",
+                        "POSITION": "attribute_8041"
+                    },
+                    "indices": "indices_8039",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID29": {
+            "name": "ID29",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_100",
+                        "POSITION": "attribute_98"
+                    },
+                    "indices": "indices_96",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2901": {
+            "name": "ID2901",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8063",
+                        "POSITION": "attribute_8061"
+                    },
+                    "indices": "indices_8059",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2907": {
+            "name": "ID2907",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8083",
+                        "POSITION": "attribute_8081"
+                    },
+                    "indices": "indices_8079",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2918": {
+            "name": "ID2918",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8104",
+                        "POSITION": "attribute_8102"
+                    },
+                    "indices": "indices_8100",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2924": {
+            "name": "ID2924",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8124",
+                        "POSITION": "attribute_8122"
+                    },
+                    "indices": "indices_8120",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2930": {
+            "name": "ID2930",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8144",
+                        "POSITION": "attribute_8142"
+                    },
+                    "indices": "indices_8140",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2936": {
+            "name": "ID2936",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8164",
+                        "POSITION": "attribute_8162"
+                    },
+                    "indices": "indices_8160",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2947": {
+            "name": "ID2947",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8200",
+                        "POSITION": "attribute_8198"
+                    },
+                    "indices": "indices_8193",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8200",
+                        "POSITION": "attribute_8198"
+                    },
+                    "indices": "indices_8196",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID295": {
+            "name": "ID295",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_905",
+                        "POSITION": "attribute_903"
+                    },
+                    "indices": "indices_901",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2953": {
+            "name": "ID2953",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8235",
+                        "POSITION": "attribute_8233"
+                    },
+                    "indices": "indices_8228",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8235",
+                        "POSITION": "attribute_8233"
+                    },
+                    "indices": "indices_8231",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2959": {
+            "name": "ID2959",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8270",
+                        "POSITION": "attribute_8268"
+                    },
+                    "indices": "indices_8263",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8270",
+                        "POSITION": "attribute_8268"
+                    },
+                    "indices": "indices_8266",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2965": {
+            "name": "ID2965",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8305",
+                        "POSITION": "attribute_8303"
+                    },
+                    "indices": "indices_8298",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8305",
+                        "POSITION": "attribute_8303"
+                    },
+                    "indices": "indices_8301",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2971": {
+            "name": "ID2971",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8340",
+                        "POSITION": "attribute_8338"
+                    },
+                    "indices": "indices_8333",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8340",
+                        "POSITION": "attribute_8338"
+                    },
+                    "indices": "indices_8336",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID2977": {
+            "name": "ID2977",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8375",
+                        "POSITION": "attribute_8373"
+                    },
+                    "indices": "indices_8368",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8375",
+                        "POSITION": "attribute_8373"
+                    },
+                    "indices": "indices_8371",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3": {
+            "name": "ID3",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_20",
+                        "POSITION": "attribute_18"
+                    },
+                    "indices": "indices_16",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3006": {
+            "name": "ID3006",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8400",
+                        "POSITION": "attribute_8398"
+                    },
+                    "indices": "indices_8396",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID301": {
+            "name": "ID301",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_925",
+                        "POSITION": "attribute_923"
+                    },
+                    "indices": "indices_921",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3012": {
+            "name": "ID3012",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8420",
+                        "POSITION": "attribute_8418"
+                    },
+                    "indices": "indices_8416",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3018": {
+            "name": "ID3018",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8440",
+                        "POSITION": "attribute_8438"
+                    },
+                    "indices": "indices_8436",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3024": {
+            "name": "ID3024",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8460",
+                        "POSITION": "attribute_8458"
+                    },
+                    "indices": "indices_8456",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3030": {
+            "name": "ID3030",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8480",
+                        "POSITION": "attribute_8478"
+                    },
+                    "indices": "indices_8476",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3036": {
+            "name": "ID3036",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8500",
+                        "POSITION": "attribute_8498"
+                    },
+                    "indices": "indices_8496",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3042": {
+            "name": "ID3042",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8520",
+                        "POSITION": "attribute_8518"
+                    },
+                    "indices": "indices_8516",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3048": {
+            "name": "ID3048",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8540",
+                        "POSITION": "attribute_8538"
+                    },
+                    "indices": "indices_8536",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3063": {
+            "name": "ID3063",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8562",
+                        "POSITION": "attribute_8560"
+                    },
+                    "indices": "indices_8558",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3069": {
+            "name": "ID3069",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8582",
+                        "POSITION": "attribute_8580"
+                    },
+                    "indices": "indices_8578",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID307": {
+            "name": "ID307",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_945",
+                        "POSITION": "attribute_943"
+                    },
+                    "indices": "indices_941",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3075": {
+            "name": "ID3075",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8602",
+                        "POSITION": "attribute_8600"
+                    },
+                    "indices": "indices_8598",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3081": {
+            "name": "ID3081",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8622",
+                        "POSITION": "attribute_8620"
+                    },
+                    "indices": "indices_8618",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3087": {
+            "name": "ID3087",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8642",
+                        "POSITION": "attribute_8640"
+                    },
+                    "indices": "indices_8638",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3093": {
+            "name": "ID3093",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8662",
+                        "POSITION": "attribute_8660"
+                    },
+                    "indices": "indices_8658",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3120": {
+            "name": "ID3120",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8687",
+                        "POSITION": "attribute_8685"
+                    },
+                    "indices": "indices_8683",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3126": {
+            "name": "ID3126",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8707",
+                        "POSITION": "attribute_8705"
+                    },
+                    "indices": "indices_8703",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID313": {
+            "name": "ID313",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_965",
+                        "POSITION": "attribute_963"
+                    },
+                    "indices": "indices_961",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3132": {
+            "name": "ID3132",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8727",
+                        "POSITION": "attribute_8725"
+                    },
+                    "indices": "indices_8723",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3138": {
+            "name": "ID3138",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8747",
+                        "POSITION": "attribute_8745"
+                    },
+                    "indices": "indices_8743",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3144": {
+            "name": "ID3144",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8767",
+                        "POSITION": "attribute_8765"
+                    },
+                    "indices": "indices_8763",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3155": {
+            "name": "ID3155",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8788",
+                        "POSITION": "attribute_8786"
+                    },
+                    "indices": "indices_8784",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3161": {
+            "name": "ID3161",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8808",
+                        "POSITION": "attribute_8806"
+                    },
+                    "indices": "indices_8804",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3167": {
+            "name": "ID3167",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8828",
+                        "POSITION": "attribute_8826"
+                    },
+                    "indices": "indices_8824",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3173": {
+            "name": "ID3173",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8848",
+                        "POSITION": "attribute_8846"
+                    },
+                    "indices": "indices_8844",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3179": {
+            "name": "ID3179",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8868",
+                        "POSITION": "attribute_8866"
+                    },
+                    "indices": "indices_8864",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID319": {
+            "name": "ID319",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_985",
+                        "POSITION": "attribute_983"
+                    },
+                    "indices": "indices_981",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3190": {
+            "name": "ID3190",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8889",
+                        "POSITION": "attribute_8887"
+                    },
+                    "indices": "indices_8885",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3197": {
+            "name": "ID3197",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8924",
+                        "POSITION": "attribute_8922"
+                    },
+                    "indices": "indices_8917",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8924",
+                        "POSITION": "attribute_8922"
+                    },
+                    "indices": "indices_8920",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3204": {
+            "name": "ID3204",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8944",
+                        "POSITION": "attribute_8942"
+                    },
+                    "indices": "indices_8940",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3210": {
+            "name": "ID3210",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8964",
+                        "POSITION": "attribute_8962"
+                    },
+                    "indices": "indices_8960",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3217": {
+            "name": "ID3217",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_8984",
+                        "POSITION": "attribute_8982"
+                    },
+                    "indices": "indices_8980",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3223": {
+            "name": "ID3223",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9004",
+                        "POSITION": "attribute_9002"
+                    },
+                    "indices": "indices_9000",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3230": {
+            "name": "ID3230",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9024",
+                        "POSITION": "attribute_9022"
+                    },
+                    "indices": "indices_9020",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3236": {
+            "name": "ID3236",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9044",
+                        "POSITION": "attribute_9042"
+                    },
+                    "indices": "indices_9040",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3242": {
+            "name": "ID3242",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9064",
+                        "POSITION": "attribute_9062"
+                    },
+                    "indices": "indices_9060",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3248": {
+            "name": "ID3248",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9084",
+                        "POSITION": "attribute_9082"
+                    },
+                    "indices": "indices_9080",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID325": {
+            "name": "ID325",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1005",
+                        "POSITION": "attribute_1003"
+                    },
+                    "indices": "indices_1001",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3255": {
+            "name": "ID3255",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9104",
+                        "POSITION": "attribute_9102"
+                    },
+                    "indices": "indices_9100",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3262": {
+            "name": "ID3262",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9124",
+                        "POSITION": "attribute_9122"
+                    },
+                    "indices": "indices_9120",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3269": {
+            "name": "ID3269",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9144",
+                        "POSITION": "attribute_9142"
+                    },
+                    "indices": "indices_9140",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3275": {
+            "name": "ID3275",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9164",
+                        "POSITION": "attribute_9162"
+                    },
+                    "indices": "indices_9160",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3281": {
+            "name": "ID3281",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9184",
+                        "POSITION": "attribute_9182"
+                    },
+                    "indices": "indices_9180",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3287": {
+            "name": "ID3287",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9204",
+                        "POSITION": "attribute_9202"
+                    },
+                    "indices": "indices_9200",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3293": {
+            "name": "ID3293",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9224",
+                        "POSITION": "attribute_9222"
+                    },
+                    "indices": "indices_9220",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3299": {
+            "name": "ID3299",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9244",
+                        "POSITION": "attribute_9242"
+                    },
+                    "indices": "indices_9240",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3305": {
+            "name": "ID3305",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9264",
+                        "POSITION": "attribute_9262"
+                    },
+                    "indices": "indices_9260",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID331": {
+            "name": "ID331",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1025",
+                        "POSITION": "attribute_1023"
+                    },
+                    "indices": "indices_1021",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3311": {
+            "name": "ID3311",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9284",
+                        "POSITION": "attribute_9282"
+                    },
+                    "indices": "indices_9280",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3317": {
+            "name": "ID3317",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9304",
+                        "POSITION": "attribute_9302"
+                    },
+                    "indices": "indices_9300",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3323": {
+            "name": "ID3323",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9324",
+                        "POSITION": "attribute_9322"
+                    },
+                    "indices": "indices_9320",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3338": {
+            "name": "ID3338",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9346",
+                        "POSITION": "attribute_9344"
+                    },
+                    "indices": "indices_9342",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3344": {
+            "name": "ID3344",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9366",
+                        "POSITION": "attribute_9364"
+                    },
+                    "indices": "indices_9362",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3350": {
+            "name": "ID3350",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9386",
+                        "POSITION": "attribute_9384"
+                    },
+                    "indices": "indices_9382",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3356": {
+            "name": "ID3356",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9406",
+                        "POSITION": "attribute_9404"
+                    },
+                    "indices": "indices_9402",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3362": {
+            "name": "ID3362",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9426",
+                        "POSITION": "attribute_9424"
+                    },
+                    "indices": "indices_9422",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3368": {
+            "name": "ID3368",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9446",
+                        "POSITION": "attribute_9444"
+                    },
+                    "indices": "indices_9442",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID337": {
+            "name": "ID337",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1045",
+                        "POSITION": "attribute_1043"
+                    },
+                    "indices": "indices_1041",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3374": {
+            "name": "ID3374",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9466",
+                        "POSITION": "attribute_9464"
+                    },
+                    "indices": "indices_9462",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3380": {
+            "name": "ID3380",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9486",
+                        "POSITION": "attribute_9484"
+                    },
+                    "indices": "indices_9482",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3386": {
+            "name": "ID3386",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9506",
+                        "POSITION": "attribute_9504"
+                    },
+                    "indices": "indices_9502",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3392": {
+            "name": "ID3392",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9526",
+                        "POSITION": "attribute_9524"
+                    },
+                    "indices": "indices_9522",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3407": {
+            "name": "ID3407",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9548",
+                        "POSITION": "attribute_9546"
+                    },
+                    "indices": "indices_9544",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3413": {
+            "name": "ID3413",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9568",
+                        "POSITION": "attribute_9566"
+                    },
+                    "indices": "indices_9564",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3419": {
+            "name": "ID3419",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9588",
+                        "POSITION": "attribute_9586"
+                    },
+                    "indices": "indices_9584",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3425": {
+            "name": "ID3425",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9608",
+                        "POSITION": "attribute_9606"
+                    },
+                    "indices": "indices_9604",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID343": {
+            "name": "ID343",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1065",
+                        "POSITION": "attribute_1063"
+                    },
+                    "indices": "indices_1061",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3431": {
+            "name": "ID3431",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9628",
+                        "POSITION": "attribute_9626"
+                    },
+                    "indices": "indices_9624",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3442": {
+            "name": "ID3442",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9649",
+                        "POSITION": "attribute_9647"
+                    },
+                    "indices": "indices_9645",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3448": {
+            "name": "ID3448",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9669",
+                        "POSITION": "attribute_9667"
+                    },
+                    "indices": "indices_9665",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3454": {
+            "name": "ID3454",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9689",
+                        "POSITION": "attribute_9687"
+                    },
+                    "indices": "indices_9685",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3460": {
+            "name": "ID3460",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9709",
+                        "POSITION": "attribute_9707"
+                    },
+                    "indices": "indices_9705",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3466": {
+            "name": "ID3466",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9729",
+                        "POSITION": "attribute_9727"
+                    },
+                    "indices": "indices_9725",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3472": {
+            "name": "ID3472",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9749",
+                        "POSITION": "attribute_9747"
+                    },
+                    "indices": "indices_9745",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3478": {
+            "name": "ID3478",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9769",
+                        "POSITION": "attribute_9767"
+                    },
+                    "indices": "indices_9765",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3484": {
+            "name": "ID3484",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9789",
+                        "POSITION": "attribute_9787"
+                    },
+                    "indices": "indices_9785",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID349": {
+            "name": "ID349",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1085",
+                        "POSITION": "attribute_1083"
+                    },
+                    "indices": "indices_1081",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3490": {
+            "name": "ID3490",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9809",
+                        "POSITION": "attribute_9807"
+                    },
+                    "indices": "indices_9805",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3496": {
+            "name": "ID3496",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9829",
+                        "POSITION": "attribute_9827"
+                    },
+                    "indices": "indices_9825",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID35": {
+            "name": "ID35",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_120",
+                        "POSITION": "attribute_118"
+                    },
+                    "indices": "indices_116",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3511": {
+            "name": "ID3511",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9851",
+                        "POSITION": "attribute_9849"
+                    },
+                    "indices": "indices_9847",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3518": {
+            "name": "ID3518",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9871",
+                        "POSITION": "attribute_9869"
+                    },
+                    "indices": "indices_9867",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3524": {
+            "name": "ID3524",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9891",
+                        "POSITION": "attribute_9889"
+                    },
+                    "indices": "indices_9887",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3530": {
+            "name": "ID3530",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9911",
+                        "POSITION": "attribute_9909"
+                    },
+                    "indices": "indices_9907",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3536": {
+            "name": "ID3536",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9931",
+                        "POSITION": "attribute_9929"
+                    },
+                    "indices": "indices_9927",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3542": {
+            "name": "ID3542",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9951",
+                        "POSITION": "attribute_9949"
+                    },
+                    "indices": "indices_9947",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3548": {
+            "name": "ID3548",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9971",
+                        "POSITION": "attribute_9969"
+                    },
+                    "indices": "indices_9967",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID355": {
+            "name": "ID355",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1105",
+                        "POSITION": "attribute_1103"
+                    },
+                    "indices": "indices_1101",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3554": {
+            "name": "ID3554",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_9991",
+                        "POSITION": "attribute_9989"
+                    },
+                    "indices": "indices_9987",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3560": {
+            "name": "ID3560",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10011",
+                        "POSITION": "attribute_10009"
+                    },
+                    "indices": "indices_10007",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3587": {
+            "name": "ID3587",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10036",
+                        "POSITION": "attribute_10034"
+                    },
+                    "indices": "indices_10032",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3602": {
+            "name": "ID3602",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10058",
+                        "POSITION": "attribute_10056"
+                    },
+                    "indices": "indices_10054",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3608": {
+            "name": "ID3608",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10078",
+                        "POSITION": "attribute_10076"
+                    },
+                    "indices": "indices_10074",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3614": {
+            "name": "ID3614",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10098",
+                        "POSITION": "attribute_10096"
+                    },
+                    "indices": "indices_10094",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3620": {
+            "name": "ID3620",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10118",
+                        "POSITION": "attribute_10116"
+                    },
+                    "indices": "indices_10114",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3626": {
+            "name": "ID3626",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10138",
+                        "POSITION": "attribute_10136"
+                    },
+                    "indices": "indices_10134",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3632": {
+            "name": "ID3632",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10158",
+                        "POSITION": "attribute_10156"
+                    },
+                    "indices": "indices_10154",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3638": {
+            "name": "ID3638",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10178",
+                        "POSITION": "attribute_10176"
+                    },
+                    "indices": "indices_10174",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3644": {
+            "name": "ID3644",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10198",
+                        "POSITION": "attribute_10196"
+                    },
+                    "indices": "indices_10194",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3650": {
+            "name": "ID3650",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10218",
+                        "POSITION": "attribute_10216"
+                    },
+                    "indices": "indices_10214",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3657": {
+            "name": "ID3657",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10238",
+                        "POSITION": "attribute_10236"
+                    },
+                    "indices": "indices_10234",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3672": {
+            "name": "ID3672",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10260",
+                        "POSITION": "attribute_10258"
+                    },
+                    "indices": "indices_10256",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3678": {
+            "name": "ID3678",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10280",
+                        "POSITION": "attribute_10278"
+                    },
+                    "indices": "indices_10276",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3684": {
+            "name": "ID3684",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10300",
+                        "POSITION": "attribute_10298"
+                    },
+                    "indices": "indices_10296",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3690": {
+            "name": "ID3690",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10320",
+                        "POSITION": "attribute_10318"
+                    },
+                    "indices": "indices_10316",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3696": {
+            "name": "ID3696",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10340",
+                        "POSITION": "attribute_10338"
+                    },
+                    "indices": "indices_10336",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3702": {
+            "name": "ID3702",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10360",
+                        "POSITION": "attribute_10358"
+                    },
+                    "indices": "indices_10356",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3708": {
+            "name": "ID3708",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10380",
+                        "POSITION": "attribute_10378"
+                    },
+                    "indices": "indices_10376",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3714": {
+            "name": "ID3714",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10400",
+                        "POSITION": "attribute_10398"
+                    },
+                    "indices": "indices_10396",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3720": {
+            "name": "ID3720",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10420",
+                        "POSITION": "attribute_10418"
+                    },
+                    "indices": "indices_10416",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3726": {
+            "name": "ID3726",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10440",
+                        "POSITION": "attribute_10438"
+                    },
+                    "indices": "indices_10436",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3732": {
+            "name": "ID3732",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10460",
+                        "POSITION": "attribute_10458"
+                    },
+                    "indices": "indices_10456",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3738": {
+            "name": "ID3738",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10480",
+                        "POSITION": "attribute_10478"
+                    },
+                    "indices": "indices_10476",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3761": {
+            "name": "ID3761",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10504",
+                        "POSITION": "attribute_10502"
+                    },
+                    "indices": "indices_10500",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3767": {
+            "name": "ID3767",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10524",
+                        "POSITION": "attribute_10522"
+                    },
+                    "indices": "indices_10520",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3773": {
+            "name": "ID3773",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10544",
+                        "POSITION": "attribute_10542"
+                    },
+                    "indices": "indices_10540",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3779": {
+            "name": "ID3779",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10564",
+                        "POSITION": "attribute_10562"
+                    },
+                    "indices": "indices_10560",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3785": {
+            "name": "ID3785",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10584",
+                        "POSITION": "attribute_10582"
+                    },
+                    "indices": "indices_10580",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3791": {
+            "name": "ID3791",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10604",
+                        "POSITION": "attribute_10602"
+                    },
+                    "indices": "indices_10600",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3797": {
+            "name": "ID3797",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10624",
+                        "POSITION": "attribute_10622"
+                    },
+                    "indices": "indices_10620",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3803": {
+            "name": "ID3803",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10644",
+                        "POSITION": "attribute_10642"
+                    },
+                    "indices": "indices_10640",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3818": {
+            "name": "ID3818",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10666",
+                        "POSITION": "attribute_10664"
+                    },
+                    "indices": "indices_10662",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3824": {
+            "name": "ID3824",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10686",
+                        "POSITION": "attribute_10684"
+                    },
+                    "indices": "indices_10682",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3830": {
+            "name": "ID3830",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10706",
+                        "POSITION": "attribute_10704"
+                    },
+                    "indices": "indices_10702",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3836": {
+            "name": "ID3836",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10726",
+                        "POSITION": "attribute_10724"
+                    },
+                    "indices": "indices_10722",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3842": {
+            "name": "ID3842",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10746",
+                        "POSITION": "attribute_10744"
+                    },
+                    "indices": "indices_10742",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3848": {
+            "name": "ID3848",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10766",
+                        "POSITION": "attribute_10764"
+                    },
+                    "indices": "indices_10762",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3854": {
+            "name": "ID3854",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10786",
+                        "POSITION": "attribute_10784"
+                    },
+                    "indices": "indices_10782",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3860": {
+            "name": "ID3860",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10806",
+                        "POSITION": "attribute_10804"
+                    },
+                    "indices": "indices_10802",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3866": {
+            "name": "ID3866",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10826",
+                        "POSITION": "attribute_10824"
+                    },
+                    "indices": "indices_10822",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3872": {
+            "name": "ID3872",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10846",
+                        "POSITION": "attribute_10844"
+                    },
+                    "indices": "indices_10842",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3878": {
+            "name": "ID3878",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10866",
+                        "POSITION": "attribute_10864"
+                    },
+                    "indices": "indices_10862",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3884": {
+            "name": "ID3884",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10886",
+                        "POSITION": "attribute_10884"
+                    },
+                    "indices": "indices_10882",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3907": {
+            "name": "ID3907",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10910",
+                        "POSITION": "attribute_10908"
+                    },
+                    "indices": "indices_10906",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3913": {
+            "name": "ID3913",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10930",
+                        "POSITION": "attribute_10928"
+                    },
+                    "indices": "indices_10926",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3919": {
+            "name": "ID3919",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10950",
+                        "POSITION": "attribute_10948"
+                    },
+                    "indices": "indices_10946",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3925": {
+            "name": "ID3925",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10970",
+                        "POSITION": "attribute_10968"
+                    },
+                    "indices": "indices_10966",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3931": {
+            "name": "ID3931",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_10990",
+                        "POSITION": "attribute_10988"
+                    },
+                    "indices": "indices_10986",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3937": {
+            "name": "ID3937",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11010",
+                        "POSITION": "attribute_11008"
+                    },
+                    "indices": "indices_11006",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3943": {
+            "name": "ID3943",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11030",
+                        "POSITION": "attribute_11028"
+                    },
+                    "indices": "indices_11026",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3949": {
+            "name": "ID3949",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11050",
+                        "POSITION": "attribute_11048"
+                    },
+                    "indices": "indices_11046",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3955": {
+            "name": "ID3955",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11070",
+                        "POSITION": "attribute_11068"
+                    },
+                    "indices": "indices_11066",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3961": {
+            "name": "ID3961",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11090",
+                        "POSITION": "attribute_11088"
+                    },
+                    "indices": "indices_11086",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3967": {
+            "name": "ID3967",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11110",
+                        "POSITION": "attribute_11108"
+                    },
+                    "indices": "indices_11106",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3973": {
+            "name": "ID3973",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11130",
+                        "POSITION": "attribute_11128"
+                    },
+                    "indices": "indices_11126",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID3996": {
+            "name": "ID3996",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11154",
+                        "POSITION": "attribute_11152"
+                    },
+                    "indices": "indices_11150",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4002": {
+            "name": "ID4002",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11174",
+                        "POSITION": "attribute_11172"
+                    },
+                    "indices": "indices_11170",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4008": {
+            "name": "ID4008",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11194",
+                        "POSITION": "attribute_11192"
+                    },
+                    "indices": "indices_11190",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4014": {
+            "name": "ID4014",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11214",
+                        "POSITION": "attribute_11212"
+                    },
+                    "indices": "indices_11210",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4020": {
+            "name": "ID4020",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11234",
+                        "POSITION": "attribute_11232"
+                    },
+                    "indices": "indices_11230",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4026": {
+            "name": "ID4026",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11254",
+                        "POSITION": "attribute_11252"
+                    },
+                    "indices": "indices_11250",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4033": {
+            "name": "ID4033",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11274",
+                        "POSITION": "attribute_11272"
+                    },
+                    "indices": "indices_11270",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4039": {
+            "name": "ID4039",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11294",
+                        "POSITION": "attribute_11292"
+                    },
+                    "indices": "indices_11290",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4045": {
+            "name": "ID4045",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11314",
+                        "POSITION": "attribute_11312"
+                    },
+                    "indices": "indices_11310",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4051": {
+            "name": "ID4051",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11334",
+                        "POSITION": "attribute_11332"
+                    },
+                    "indices": "indices_11330",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4057": {
+            "name": "ID4057",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11354",
+                        "POSITION": "attribute_11352"
+                    },
+                    "indices": "indices_11350",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4063": {
+            "name": "ID4063",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11374",
+                        "POSITION": "attribute_11372"
+                    },
+                    "indices": "indices_11370",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4070": {
+            "name": "ID4070",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11394",
+                        "POSITION": "attribute_11392"
+                    },
+                    "indices": "indices_11390",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4077": {
+            "name": "ID4077",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11414",
+                        "POSITION": "attribute_11412"
+                    },
+                    "indices": "indices_11410",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID408": {
+            "name": "ID408",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1136",
+                        "POSITION": "attribute_1134"
+                    },
+                    "indices": "indices_1132",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4083": {
+            "name": "ID4083",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11434",
+                        "POSITION": "attribute_11432"
+                    },
+                    "indices": "indices_11430",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4089": {
+            "name": "ID4089",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11454",
+                        "POSITION": "attribute_11452"
+                    },
+                    "indices": "indices_11450",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4095": {
+            "name": "ID4095",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11474",
+                        "POSITION": "attribute_11472"
+                    },
+                    "indices": "indices_11470",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID41": {
+            "name": "ID41",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_140",
+                        "POSITION": "attribute_138"
+                    },
+                    "indices": "indices_136",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4101": {
+            "name": "ID4101",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11494",
+                        "POSITION": "attribute_11492"
+                    },
+                    "indices": "indices_11490",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4107": {
+            "name": "ID4107",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11514",
+                        "POSITION": "attribute_11512"
+                    },
+                    "indices": "indices_11510",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4113": {
+            "name": "ID4113",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11534",
+                        "POSITION": "attribute_11532"
+                    },
+                    "indices": "indices_11530",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4119": {
+            "name": "ID4119",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11554",
+                        "POSITION": "attribute_11552"
+                    },
+                    "indices": "indices_11550",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4134": {
+            "name": "ID4134",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11576",
+                        "POSITION": "attribute_11574"
+                    },
+                    "indices": "indices_11572",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID414": {
+            "name": "ID414",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1156",
+                        "POSITION": "attribute_1154"
+                    },
+                    "indices": "indices_1152",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4141": {
+            "name": "ID4141",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11596",
+                        "POSITION": "attribute_11594"
+                    },
+                    "indices": "indices_11592",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4147": {
+            "name": "ID4147",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11616",
+                        "POSITION": "attribute_11614"
+                    },
+                    "indices": "indices_11612",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4153": {
+            "name": "ID4153",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11636",
+                        "POSITION": "attribute_11634"
+                    },
+                    "indices": "indices_11632",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4159": {
+            "name": "ID4159",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11656",
+                        "POSITION": "attribute_11654"
+                    },
+                    "indices": "indices_11652",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4165": {
+            "name": "ID4165",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11676",
+                        "POSITION": "attribute_11674"
+                    },
+                    "indices": "indices_11672",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4176": {
+            "name": "ID4176",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11697",
+                        "POSITION": "attribute_11695"
+                    },
+                    "indices": "indices_11693",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4182": {
+            "name": "ID4182",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11717",
+                        "POSITION": "attribute_11715"
+                    },
+                    "indices": "indices_11713",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4188": {
+            "name": "ID4188",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11737",
+                        "POSITION": "attribute_11735"
+                    },
+                    "indices": "indices_11733",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4194": {
+            "name": "ID4194",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11757",
+                        "POSITION": "attribute_11755"
+                    },
+                    "indices": "indices_11753",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID420": {
+            "name": "ID420",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1176",
+                        "POSITION": "attribute_1174"
+                    },
+                    "indices": "indices_1172",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4200": {
+            "name": "ID4200",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11777",
+                        "POSITION": "attribute_11775"
+                    },
+                    "indices": "indices_11773",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4235": {
+            "name": "ID4235",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11804",
+                        "POSITION": "attribute_11802"
+                    },
+                    "indices": "indices_11800",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4241": {
+            "name": "ID4241",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11824",
+                        "POSITION": "attribute_11822"
+                    },
+                    "indices": "indices_11820",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4247": {
+            "name": "ID4247",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11844",
+                        "POSITION": "attribute_11842"
+                    },
+                    "indices": "indices_11840",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4253": {
+            "name": "ID4253",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11864",
+                        "POSITION": "attribute_11862"
+                    },
+                    "indices": "indices_11860",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4259": {
+            "name": "ID4259",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11884",
+                        "POSITION": "attribute_11882"
+                    },
+                    "indices": "indices_11880",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID426": {
+            "name": "ID426",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1196",
+                        "POSITION": "attribute_1194"
+                    },
+                    "indices": "indices_1192",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4294": {
+            "name": "ID4294",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11911",
+                        "POSITION": "attribute_11909"
+                    },
+                    "indices": "indices_11907",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4300": {
+            "name": "ID4300",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11931",
+                        "POSITION": "attribute_11929"
+                    },
+                    "indices": "indices_11927",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4306": {
+            "name": "ID4306",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11951",
+                        "POSITION": "attribute_11949"
+                    },
+                    "indices": "indices_11947",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4312": {
+            "name": "ID4312",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11971",
+                        "POSITION": "attribute_11969"
+                    },
+                    "indices": "indices_11967",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4318": {
+            "name": "ID4318",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_11991",
+                        "POSITION": "attribute_11989"
+                    },
+                    "indices": "indices_11987",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID432": {
+            "name": "ID432",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1216",
+                        "POSITION": "attribute_1214"
+                    },
+                    "indices": "indices_1212",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4329": {
+            "name": "ID4329",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12012",
+                        "POSITION": "attribute_12010"
+                    },
+                    "indices": "indices_12008",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4336": {
+            "name": "ID4336",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12032",
+                        "POSITION": "attribute_12030"
+                    },
+                    "indices": "indices_12028",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4342": {
+            "name": "ID4342",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12052",
+                        "POSITION": "attribute_12050"
+                    },
+                    "indices": "indices_12048",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4348": {
+            "name": "ID4348",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12072",
+                        "POSITION": "attribute_12070"
+                    },
+                    "indices": "indices_12068",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4355": {
+            "name": "ID4355",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12092",
+                        "POSITION": "attribute_12090"
+                    },
+                    "indices": "indices_12088",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4362": {
+            "name": "ID4362",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12112",
+                        "POSITION": "attribute_12110"
+                    },
+                    "indices": "indices_12108",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4368": {
+            "name": "ID4368",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12132",
+                        "POSITION": "attribute_12130"
+                    },
+                    "indices": "indices_12128",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4374": {
+            "name": "ID4374",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12152",
+                        "POSITION": "attribute_12150"
+                    },
+                    "indices": "indices_12148",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID438": {
+            "name": "ID438",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1236",
+                        "POSITION": "attribute_1234"
+                    },
+                    "indices": "indices_1232",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4381": {
+            "name": "ID4381",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12172",
+                        "POSITION": "attribute_12170"
+                    },
+                    "indices": "indices_12168",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4387": {
+            "name": "ID4387",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12192",
+                        "POSITION": "attribute_12190"
+                    },
+                    "indices": "indices_12188",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4393": {
+            "name": "ID4393",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12212",
+                        "POSITION": "attribute_12210"
+                    },
+                    "indices": "indices_12208",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4400": {
+            "name": "ID4400",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12232",
+                        "POSITION": "attribute_12230"
+                    },
+                    "indices": "indices_12228",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4406": {
+            "name": "ID4406",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12252",
+                        "POSITION": "attribute_12250"
+                    },
+                    "indices": "indices_12248",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4412": {
+            "name": "ID4412",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12272",
+                        "POSITION": "attribute_12270"
+                    },
+                    "indices": "indices_12268",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4419": {
+            "name": "ID4419",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12292",
+                        "POSITION": "attribute_12290"
+                    },
+                    "indices": "indices_12288",
+                    "material": "ID1683",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4426": {
+            "name": "ID4426",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12327",
+                        "POSITION": "attribute_12325"
+                    },
+                    "indices": "indices_12320",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12327",
+                        "POSITION": "attribute_12325"
+                    },
+                    "indices": "indices_12323",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4433": {
+            "name": "ID4433",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12362",
+                        "POSITION": "attribute_12360"
+                    },
+                    "indices": "indices_12355",
+                    "material": "ID1772",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12362",
+                        "POSITION": "attribute_12360"
+                    },
+                    "indices": "indices_12358",
+                    "material": "ID1777",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID444": {
+            "name": "ID444",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1256",
+                        "POSITION": "attribute_1254"
+                    },
+                    "indices": "indices_1252",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4441": {
+            "name": "ID4441",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12382",
+                        "POSITION": "attribute_12380"
+                    },
+                    "indices": "indices_12378",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4447": {
+            "name": "ID4447",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12402",
+                        "POSITION": "attribute_12400"
+                    },
+                    "indices": "indices_12398",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4453": {
+            "name": "ID4453",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12422",
+                        "POSITION": "attribute_12420"
+                    },
+                    "indices": "indices_12418",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4459": {
+            "name": "ID4459",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12442",
+                        "POSITION": "attribute_12440"
+                    },
+                    "indices": "indices_12438",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4465": {
+            "name": "ID4465",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12462",
+                        "POSITION": "attribute_12460"
+                    },
+                    "indices": "indices_12458",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4471": {
+            "name": "ID4471",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12482",
+                        "POSITION": "attribute_12480"
+                    },
+                    "indices": "indices_12478",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4477": {
+            "name": "ID4477",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12502",
+                        "POSITION": "attribute_12500"
+                    },
+                    "indices": "indices_12498",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4483": {
+            "name": "ID4483",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12522",
+                        "POSITION": "attribute_12520"
+                    },
+                    "indices": "indices_12518",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4489": {
+            "name": "ID4489",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12542",
+                        "POSITION": "attribute_12540"
+                    },
+                    "indices": "indices_12538",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4495": {
+            "name": "ID4495",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12562",
+                        "POSITION": "attribute_12560"
+                    },
+                    "indices": "indices_12558",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID450": {
+            "name": "ID450",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1276",
+                        "POSITION": "attribute_1274"
+                    },
+                    "indices": "indices_1272",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4501": {
+            "name": "ID4501",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12582",
+                        "POSITION": "attribute_12580"
+                    },
+                    "indices": "indices_12578",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4507": {
+            "name": "ID4507",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12602",
+                        "POSITION": "attribute_12600"
+                    },
+                    "indices": "indices_12598",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4513": {
+            "name": "ID4513",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12622",
+                        "POSITION": "attribute_12620"
+                    },
+                    "indices": "indices_12618",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4519": {
+            "name": "ID4519",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12642",
+                        "POSITION": "attribute_12640"
+                    },
+                    "indices": "indices_12638",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4525": {
+            "name": "ID4525",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12662",
+                        "POSITION": "attribute_12660"
+                    },
+                    "indices": "indices_12658",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4531": {
+            "name": "ID4531",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12682",
+                        "POSITION": "attribute_12680"
+                    },
+                    "indices": "indices_12678",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4537": {
+            "name": "ID4537",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12702",
+                        "POSITION": "attribute_12700"
+                    },
+                    "indices": "indices_12698",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4543": {
+            "name": "ID4543",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12722",
+                        "POSITION": "attribute_12720"
+                    },
+                    "indices": "indices_12718",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4549": {
+            "name": "ID4549",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12742",
+                        "POSITION": "attribute_12740"
+                    },
+                    "indices": "indices_12738",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4555": {
+            "name": "ID4555",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12762",
+                        "POSITION": "attribute_12760"
+                    },
+                    "indices": "indices_12758",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID456": {
+            "name": "ID456",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1296",
+                        "POSITION": "attribute_1294"
+                    },
+                    "indices": "indices_1292",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4561": {
+            "name": "ID4561",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12782",
+                        "POSITION": "attribute_12780"
+                    },
+                    "indices": "indices_12778",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4567": {
+            "name": "ID4567",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12802",
+                        "POSITION": "attribute_12800"
+                    },
+                    "indices": "indices_12798",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID462": {
+            "name": "ID462",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1316",
+                        "POSITION": "attribute_1314"
+                    },
+                    "indices": "indices_1312",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID468": {
+            "name": "ID468",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1336",
+                        "POSITION": "attribute_1334"
+                    },
+                    "indices": "indices_1332",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID47": {
+            "name": "ID47",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_160",
+                        "POSITION": "attribute_158"
+                    },
+                    "indices": "indices_156",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4702": {
+            "name": "ID4702",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12854",
+                        "POSITION": "attribute_12852"
+                    },
+                    "indices": "indices_12850",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4708": {
+            "name": "ID4708",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12874",
+                        "POSITION": "attribute_12872"
+                    },
+                    "indices": "indices_12870",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4714": {
+            "name": "ID4714",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12894",
+                        "POSITION": "attribute_12892"
+                    },
+                    "indices": "indices_12890",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4726": {
+            "name": "ID4726",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12915",
+                        "POSITION": "attribute_12913"
+                    },
+                    "indices": "indices_12911",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4732": {
+            "name": "ID4732",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12935",
+                        "POSITION": "attribute_12933"
+                    },
+                    "indices": "indices_12931",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4738": {
+            "name": "ID4738",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12955",
+                        "POSITION": "attribute_12953"
+                    },
+                    "indices": "indices_12951",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID474": {
+            "name": "ID474",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1356",
+                        "POSITION": "attribute_1354"
+                    },
+                    "indices": "indices_1352",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4744": {
+            "name": "ID4744",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12975",
+                        "POSITION": "attribute_12973"
+                    },
+                    "indices": "indices_12971",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4750": {
+            "name": "ID4750",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_12995",
+                        "POSITION": "attribute_12993"
+                    },
+                    "indices": "indices_12991",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4756": {
+            "name": "ID4756",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13015",
+                        "POSITION": "attribute_13013"
+                    },
+                    "indices": "indices_13011",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4762": {
+            "name": "ID4762",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13035",
+                        "POSITION": "attribute_13033"
+                    },
+                    "indices": "indices_13031",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4768": {
+            "name": "ID4768",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13055",
+                        "POSITION": "attribute_13053"
+                    },
+                    "indices": "indices_13051",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4774": {
+            "name": "ID4774",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13075",
+                        "POSITION": "attribute_13073"
+                    },
+                    "indices": "indices_13071",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4780": {
+            "name": "ID4780",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13095",
+                        "POSITION": "attribute_13093"
+                    },
+                    "indices": "indices_13091",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4786": {
+            "name": "ID4786",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13115",
+                        "POSITION": "attribute_13113"
+                    },
+                    "indices": "indices_13111",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4792": {
+            "name": "ID4792",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13135",
+                        "POSITION": "attribute_13133"
+                    },
+                    "indices": "indices_13131",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4798": {
+            "name": "ID4798",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13155",
+                        "POSITION": "attribute_13153"
+                    },
+                    "indices": "indices_13151",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID480": {
+            "name": "ID480",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1376",
+                        "POSITION": "attribute_1374"
+                    },
+                    "indices": "indices_1372",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4804": {
+            "name": "ID4804",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13175",
+                        "POSITION": "attribute_13173"
+                    },
+                    "indices": "indices_13171",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4810": {
+            "name": "ID4810",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13195",
+                        "POSITION": "attribute_13193"
+                    },
+                    "indices": "indices_13191",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4816": {
+            "name": "ID4816",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13215",
+                        "POSITION": "attribute_13213"
+                    },
+                    "indices": "indices_13211",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4822": {
+            "name": "ID4822",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13235",
+                        "POSITION": "attribute_13233"
+                    },
+                    "indices": "indices_13231",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4828": {
+            "name": "ID4828",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13255",
+                        "POSITION": "attribute_13253"
+                    },
+                    "indices": "indices_13251",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4834": {
+            "name": "ID4834",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13275",
+                        "POSITION": "attribute_13273"
+                    },
+                    "indices": "indices_13271",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4840": {
+            "name": "ID4840",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13295",
+                        "POSITION": "attribute_13293"
+                    },
+                    "indices": "indices_13291",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4846": {
+            "name": "ID4846",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13315",
+                        "POSITION": "attribute_13313"
+                    },
+                    "indices": "indices_13311",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4852": {
+            "name": "ID4852",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13335",
+                        "POSITION": "attribute_13333"
+                    },
+                    "indices": "indices_13331",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID486": {
+            "name": "ID486",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1396",
+                        "POSITION": "attribute_1394"
+                    },
+                    "indices": "indices_1392",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID492": {
+            "name": "ID492",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1416",
+                        "POSITION": "attribute_1414"
+                    },
+                    "indices": "indices_1412",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID498": {
+            "name": "ID498",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1436",
+                        "POSITION": "attribute_1434"
+                    },
+                    "indices": "indices_1432",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4987": {
+            "name": "ID4987",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13387",
+                        "POSITION": "attribute_13385"
+                    },
+                    "indices": "indices_13383",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4993": {
+            "name": "ID4993",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13407",
+                        "POSITION": "attribute_13405"
+                    },
+                    "indices": "indices_13403",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID4999": {
+            "name": "ID4999",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13427",
+                        "POSITION": "attribute_13425"
+                    },
+                    "indices": "indices_13423",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5011": {
+            "name": "ID5011",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13448",
+                        "POSITION": "attribute_13446"
+                    },
+                    "indices": "indices_13444",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5017": {
+            "name": "ID5017",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13468",
+                        "POSITION": "attribute_13466"
+                    },
+                    "indices": "indices_13464",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5023": {
+            "name": "ID5023",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13488",
+                        "POSITION": "attribute_13486"
+                    },
+                    "indices": "indices_13484",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5029": {
+            "name": "ID5029",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13508",
+                        "POSITION": "attribute_13506"
+                    },
+                    "indices": "indices_13504",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5035": {
+            "name": "ID5035",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13528",
+                        "POSITION": "attribute_13526"
+                    },
+                    "indices": "indices_13524",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID504": {
+            "name": "ID504",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1456",
+                        "POSITION": "attribute_1454"
+                    },
+                    "indices": "indices_1452",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5041": {
+            "name": "ID5041",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13548",
+                        "POSITION": "attribute_13546"
+                    },
+                    "indices": "indices_13544",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5047": {
+            "name": "ID5047",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13568",
+                        "POSITION": "attribute_13566"
+                    },
+                    "indices": "indices_13564",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5053": {
+            "name": "ID5053",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13588",
+                        "POSITION": "attribute_13586"
+                    },
+                    "indices": "indices_13584",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5059": {
+            "name": "ID5059",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13608",
+                        "POSITION": "attribute_13606"
+                    },
+                    "indices": "indices_13604",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5065": {
+            "name": "ID5065",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13628",
+                        "POSITION": "attribute_13626"
+                    },
+                    "indices": "indices_13624",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5071": {
+            "name": "ID5071",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13648",
+                        "POSITION": "attribute_13646"
+                    },
+                    "indices": "indices_13644",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5077": {
+            "name": "ID5077",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13668",
+                        "POSITION": "attribute_13666"
+                    },
+                    "indices": "indices_13664",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5083": {
+            "name": "ID5083",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13688",
+                        "POSITION": "attribute_13686"
+                    },
+                    "indices": "indices_13684",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5089": {
+            "name": "ID5089",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13708",
+                        "POSITION": "attribute_13706"
+                    },
+                    "indices": "indices_13704",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5095": {
+            "name": "ID5095",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13728",
+                        "POSITION": "attribute_13726"
+                    },
+                    "indices": "indices_13724",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID510": {
+            "name": "ID510",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1476",
+                        "POSITION": "attribute_1474"
+                    },
+                    "indices": "indices_1472",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5101": {
+            "name": "ID5101",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13748",
+                        "POSITION": "attribute_13746"
+                    },
+                    "indices": "indices_13744",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5107": {
+            "name": "ID5107",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13768",
+                        "POSITION": "attribute_13766"
+                    },
+                    "indices": "indices_13764",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5113": {
+            "name": "ID5113",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13788",
+                        "POSITION": "attribute_13786"
+                    },
+                    "indices": "indices_13784",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5119": {
+            "name": "ID5119",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13808",
+                        "POSITION": "attribute_13806"
+                    },
+                    "indices": "indices_13804",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5125": {
+            "name": "ID5125",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13828",
+                        "POSITION": "attribute_13826"
+                    },
+                    "indices": "indices_13824",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5131": {
+            "name": "ID5131",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13848",
+                        "POSITION": "attribute_13846"
+                    },
+                    "indices": "indices_13844",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5137": {
+            "name": "ID5137",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13868",
+                        "POSITION": "attribute_13866"
+                    },
+                    "indices": "indices_13864",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID516": {
+            "name": "ID516",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1496",
+                        "POSITION": "attribute_1494"
+                    },
+                    "indices": "indices_1492",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID522": {
+            "name": "ID522",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1516",
+                        "POSITION": "attribute_1514"
+                    },
+                    "indices": "indices_1512",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5272": {
+            "name": "ID5272",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13920",
+                        "POSITION": "attribute_13918"
+                    },
+                    "indices": "indices_13916",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5278": {
+            "name": "ID5278",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13940",
+                        "POSITION": "attribute_13938"
+                    },
+                    "indices": "indices_13936",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID528": {
+            "name": "ID528",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1536",
+                        "POSITION": "attribute_1534"
+                    },
+                    "indices": "indices_1532",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5284": {
+            "name": "ID5284",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13960",
+                        "POSITION": "attribute_13958"
+                    },
+                    "indices": "indices_13956",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5296": {
+            "name": "ID5296",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_13981",
+                        "POSITION": "attribute_13979"
+                    },
+                    "indices": "indices_13977",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID53": {
+            "name": "ID53",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_180",
+                        "POSITION": "attribute_178"
+                    },
+                    "indices": "indices_176",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5302": {
+            "name": "ID5302",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14001",
+                        "POSITION": "attribute_13999"
+                    },
+                    "indices": "indices_13997",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5308": {
+            "name": "ID5308",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14021",
+                        "POSITION": "attribute_14019"
+                    },
+                    "indices": "indices_14017",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5319": {
+            "name": "ID5319",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14042",
+                        "POSITION": "attribute_14040"
+                    },
+                    "indices": "indices_14038",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5325": {
+            "name": "ID5325",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14062",
+                        "POSITION": "attribute_14060"
+                    },
+                    "indices": "indices_14058",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5331": {
+            "name": "ID5331",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14082",
+                        "POSITION": "attribute_14080"
+                    },
+                    "indices": "indices_14078",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5337": {
+            "name": "ID5337",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14102",
+                        "POSITION": "attribute_14100"
+                    },
+                    "indices": "indices_14098",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID534": {
+            "name": "ID534",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1556",
+                        "POSITION": "attribute_1554"
+                    },
+                    "indices": "indices_1552",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5343": {
+            "name": "ID5343",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14122",
+                        "POSITION": "attribute_14120"
+                    },
+                    "indices": "indices_14118",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5349": {
+            "name": "ID5349",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14142",
+                        "POSITION": "attribute_14140"
+                    },
+                    "indices": "indices_14138",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5355": {
+            "name": "ID5355",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14162",
+                        "POSITION": "attribute_14160"
+                    },
+                    "indices": "indices_14158",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5361": {
+            "name": "ID5361",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14182",
+                        "POSITION": "attribute_14180"
+                    },
+                    "indices": "indices_14178",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5367": {
+            "name": "ID5367",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14202",
+                        "POSITION": "attribute_14200"
+                    },
+                    "indices": "indices_14198",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5373": {
+            "name": "ID5373",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14222",
+                        "POSITION": "attribute_14220"
+                    },
+                    "indices": "indices_14218",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5379": {
+            "name": "ID5379",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14242",
+                        "POSITION": "attribute_14240"
+                    },
+                    "indices": "indices_14238",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5385": {
+            "name": "ID5385",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14262",
+                        "POSITION": "attribute_14260"
+                    },
+                    "indices": "indices_14258",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5391": {
+            "name": "ID5391",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14282",
+                        "POSITION": "attribute_14280"
+                    },
+                    "indices": "indices_14278",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5397": {
+            "name": "ID5397",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14302",
+                        "POSITION": "attribute_14300"
+                    },
+                    "indices": "indices_14298",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID540": {
+            "name": "ID540",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1576",
+                        "POSITION": "attribute_1574"
+                    },
+                    "indices": "indices_1572",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5403": {
+            "name": "ID5403",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14322",
+                        "POSITION": "attribute_14320"
+                    },
+                    "indices": "indices_14318",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5409": {
+            "name": "ID5409",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14342",
+                        "POSITION": "attribute_14340"
+                    },
+                    "indices": "indices_14338",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5415": {
+            "name": "ID5415",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14362",
+                        "POSITION": "attribute_14360"
+                    },
+                    "indices": "indices_14358",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5421": {
+            "name": "ID5421",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14382",
+                        "POSITION": "attribute_14380"
+                    },
+                    "indices": "indices_14378",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5427": {
+            "name": "ID5427",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14402",
+                        "POSITION": "attribute_14400"
+                    },
+                    "indices": "indices_14398",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5433": {
+            "name": "ID5433",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14422",
+                        "POSITION": "attribute_14420"
+                    },
+                    "indices": "indices_14418",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5439": {
+            "name": "ID5439",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14442",
+                        "POSITION": "attribute_14440"
+                    },
+                    "indices": "indices_14438",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5445": {
+            "name": "ID5445",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14462",
+                        "POSITION": "attribute_14460"
+                    },
+                    "indices": "indices_14458",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID546": {
+            "name": "ID546",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1596",
+                        "POSITION": "attribute_1594"
+                    },
+                    "indices": "indices_1592",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID552": {
+            "name": "ID552",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1616",
+                        "POSITION": "attribute_1614"
+                    },
+                    "indices": "indices_1612",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID558": {
+            "name": "ID558",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1636",
+                        "POSITION": "attribute_1634"
+                    },
+                    "indices": "indices_1632",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5580": {
+            "name": "ID5580",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14514",
+                        "POSITION": "attribute_14512"
+                    },
+                    "indices": "indices_14510",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5586": {
+            "name": "ID5586",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14534",
+                        "POSITION": "attribute_14532"
+                    },
+                    "indices": "indices_14530",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5592": {
+            "name": "ID5592",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14554",
+                        "POSITION": "attribute_14552"
+                    },
+                    "indices": "indices_14550",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5598": {
+            "name": "ID5598",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14574",
+                        "POSITION": "attribute_14572"
+                    },
+                    "indices": "indices_14570",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5605": {
+            "name": "ID5605",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14594",
+                        "POSITION": "attribute_14592"
+                    },
+                    "indices": "indices_14590",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5611": {
+            "name": "ID5611",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14614",
+                        "POSITION": "attribute_14612"
+                    },
+                    "indices": "indices_14610",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5617": {
+            "name": "ID5617",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14634",
+                        "POSITION": "attribute_14632"
+                    },
+                    "indices": "indices_14630",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5623": {
+            "name": "ID5623",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14654",
+                        "POSITION": "attribute_14652"
+                    },
+                    "indices": "indices_14650",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5632": {
+            "name": "ID5632",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14674",
+                        "POSITION": "attribute_14672"
+                    },
+                    "indices": "indices_14670",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5638": {
+            "name": "ID5638",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14694",
+                        "POSITION": "attribute_14692"
+                    },
+                    "indices": "indices_14690",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID564": {
+            "name": "ID564",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1656",
+                        "POSITION": "attribute_1654"
+                    },
+                    "indices": "indices_1652",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5645": {
+            "name": "ID5645",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14714",
+                        "POSITION": "attribute_14712"
+                    },
+                    "indices": "indices_14710",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5651": {
+            "name": "ID5651",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14734",
+                        "POSITION": "attribute_14732"
+                    },
+                    "indices": "indices_14730",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5657": {
+            "name": "ID5657",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14754",
+                        "POSITION": "attribute_14752"
+                    },
+                    "indices": "indices_14750",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5663": {
+            "name": "ID5663",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14774",
+                        "POSITION": "attribute_14772"
+                    },
+                    "indices": "indices_14770",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5669": {
+            "name": "ID5669",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14794",
+                        "POSITION": "attribute_14792"
+                    },
+                    "indices": "indices_14790",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5675": {
+            "name": "ID5675",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14814",
+                        "POSITION": "attribute_14812"
+                    },
+                    "indices": "indices_14810",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5681": {
+            "name": "ID5681",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14834",
+                        "POSITION": "attribute_14832"
+                    },
+                    "indices": "indices_14830",
+                    "material": "ID1411",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5689": {
+            "name": "ID5689",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14854",
+                        "POSITION": "attribute_14852"
+                    },
+                    "indices": "indices_14850",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5695": {
+            "name": "ID5695",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14874",
+                        "POSITION": "attribute_14872"
+                    },
+                    "indices": "indices_14870",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID570": {
+            "name": "ID570",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1676",
+                        "POSITION": "attribute_1674"
+                    },
+                    "indices": "indices_1672",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5704": {
+            "name": "ID5704",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14894",
+                        "POSITION": "attribute_14892"
+                    },
+                    "indices": "indices_14890",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID5710": {
+            "name": "ID5710",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_14914",
+                        "POSITION": "attribute_14912"
+                    },
+                    "indices": "indices_14910",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID576": {
+            "name": "ID576",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1696",
+                        "POSITION": "attribute_1694"
+                    },
+                    "indices": "indices_1692",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID582": {
+            "name": "ID582",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1716",
+                        "POSITION": "attribute_1714"
+                    },
+                    "indices": "indices_1712",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID588": {
+            "name": "ID588",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1736",
+                        "POSITION": "attribute_1734"
+                    },
+                    "indices": "indices_1732",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID59": {
+            "name": "ID59",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_200",
+                        "POSITION": "attribute_198"
+                    },
+                    "indices": "indices_196",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID594": {
+            "name": "ID594",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1756",
+                        "POSITION": "attribute_1754"
+                    },
+                    "indices": "indices_1752",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID600": {
+            "name": "ID600",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1776",
+                        "POSITION": "attribute_1774"
+                    },
+                    "indices": "indices_1772",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID606": {
+            "name": "ID606",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1796",
+                        "POSITION": "attribute_1794"
+                    },
+                    "indices": "indices_1792",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID612": {
+            "name": "ID612",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1816",
+                        "POSITION": "attribute_1814"
+                    },
+                    "indices": "indices_1812",
+                    "material": "ID151",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID65": {
+            "name": "ID65",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_220",
+                        "POSITION": "attribute_218"
+                    },
+                    "indices": "indices_216",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID663": {
+            "name": "ID663",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1847",
+                        "POSITION": "attribute_1845"
+                    },
+                    "indices": "indices_1843",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID669": {
+            "name": "ID669",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1867",
+                        "POSITION": "attribute_1865"
+                    },
+                    "indices": "indices_1863",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID675": {
+            "name": "ID675",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1887",
+                        "POSITION": "attribute_1885"
+                    },
+                    "indices": "indices_1883",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID681": {
+            "name": "ID681",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1907",
+                        "POSITION": "attribute_1905"
+                    },
+                    "indices": "indices_1903",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID687": {
+            "name": "ID687",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1927",
+                        "POSITION": "attribute_1925"
+                    },
+                    "indices": "indices_1923",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID693": {
+            "name": "ID693",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1947",
+                        "POSITION": "attribute_1945"
+                    },
+                    "indices": "indices_1943",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID699": {
+            "name": "ID699",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1967",
+                        "POSITION": "attribute_1965"
+                    },
+                    "indices": "indices_1963",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID705": {
+            "name": "ID705",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_1987",
+                        "POSITION": "attribute_1985"
+                    },
+                    "indices": "indices_1983",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID71": {
+            "name": "ID71",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_240",
+                        "POSITION": "attribute_238"
+                    },
+                    "indices": "indices_236",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID711": {
+            "name": "ID711",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2007",
+                        "POSITION": "attribute_2005"
+                    },
+                    "indices": "indices_2003",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID717": {
+            "name": "ID717",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2027",
+                        "POSITION": "attribute_2025"
+                    },
+                    "indices": "indices_2023",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID723": {
+            "name": "ID723",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2047",
+                        "POSITION": "attribute_2045"
+                    },
+                    "indices": "indices_2043",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID729": {
+            "name": "ID729",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2067",
+                        "POSITION": "attribute_2065"
+                    },
+                    "indices": "indices_2063",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID735": {
+            "name": "ID735",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2087",
+                        "POSITION": "attribute_2085"
+                    },
+                    "indices": "indices_2083",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID741": {
+            "name": "ID741",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2107",
+                        "POSITION": "attribute_2105"
+                    },
+                    "indices": "indices_2103",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID747": {
+            "name": "ID747",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2127",
+                        "POSITION": "attribute_2125"
+                    },
+                    "indices": "indices_2123",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID753": {
+            "name": "ID753",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2147",
+                        "POSITION": "attribute_2145"
+                    },
+                    "indices": "indices_2143",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID759": {
+            "name": "ID759",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2167",
+                        "POSITION": "attribute_2165"
+                    },
+                    "indices": "indices_2163",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID77": {
+            "name": "ID77",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_260",
+                        "POSITION": "attribute_258"
+                    },
+                    "indices": "indices_256",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID786": {
+            "name": "ID786",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2192",
+                        "POSITION": "attribute_2190"
+                    },
+                    "indices": "indices_2188",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID792": {
+            "name": "ID792",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2212",
+                        "POSITION": "attribute_2210"
+                    },
+                    "indices": "indices_2208",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID798": {
+            "name": "ID798",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2232",
+                        "POSITION": "attribute_2230"
+                    },
+                    "indices": "indices_2228",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID804": {
+            "name": "ID804",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2252",
+                        "POSITION": "attribute_2250"
+                    },
+                    "indices": "indices_2248",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID810": {
+            "name": "ID810",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2272",
+                        "POSITION": "attribute_2270"
+                    },
+                    "indices": "indices_2268",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID816": {
+            "name": "ID816",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2292",
+                        "POSITION": "attribute_2290"
+                    },
+                    "indices": "indices_2288",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID822": {
+            "name": "ID822",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2312",
+                        "POSITION": "attribute_2310"
+                    },
+                    "indices": "indices_2308",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID828": {
+            "name": "ID828",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2332",
+                        "POSITION": "attribute_2330"
+                    },
+                    "indices": "indices_2328",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID83": {
+            "name": "ID83",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_280",
+                        "POSITION": "attribute_278"
+                    },
+                    "indices": "indices_276",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID834": {
+            "name": "ID834",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2352",
+                        "POSITION": "attribute_2350"
+                    },
+                    "indices": "indices_2348",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID840": {
+            "name": "ID840",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2372",
+                        "POSITION": "attribute_2370"
+                    },
+                    "indices": "indices_2368",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID846": {
+            "name": "ID846",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2392",
+                        "POSITION": "attribute_2390"
+                    },
+                    "indices": "indices_2388",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID852": {
+            "name": "ID852",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2412",
+                        "POSITION": "attribute_2410"
+                    },
+                    "indices": "indices_2408",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID858": {
+            "name": "ID858",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2432",
+                        "POSITION": "attribute_2430"
+                    },
+                    "indices": "indices_2428",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID864": {
+            "name": "ID864",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2452",
+                        "POSITION": "attribute_2450"
+                    },
+                    "indices": "indices_2448",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID870": {
+            "name": "ID870",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2472",
+                        "POSITION": "attribute_2470"
+                    },
+                    "indices": "indices_2468",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID876": {
+            "name": "ID876",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2492",
+                        "POSITION": "attribute_2490"
+                    },
+                    "indices": "indices_2488",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID882": {
+            "name": "ID882",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2512",
+                        "POSITION": "attribute_2510"
+                    },
+                    "indices": "indices_2508",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID89": {
+            "name": "ID89",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_300",
+                        "POSITION": "attribute_298"
+                    },
+                    "indices": "indices_296",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID909": {
+            "name": "ID909",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2537",
+                        "POSITION": "attribute_2535"
+                    },
+                    "indices": "indices_2533",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID915": {
+            "name": "ID915",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2557",
+                        "POSITION": "attribute_2555"
+                    },
+                    "indices": "indices_2553",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID921": {
+            "name": "ID921",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2577",
+                        "POSITION": "attribute_2575"
+                    },
+                    "indices": "indices_2573",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID927": {
+            "name": "ID927",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2597",
+                        "POSITION": "attribute_2595"
+                    },
+                    "indices": "indices_2593",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID933": {
+            "name": "ID933",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2617",
+                        "POSITION": "attribute_2615"
+                    },
+                    "indices": "indices_2613",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID939": {
+            "name": "ID939",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2637",
+                        "POSITION": "attribute_2635"
+                    },
+                    "indices": "indices_2633",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID945": {
+            "name": "ID945",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2657",
+                        "POSITION": "attribute_2655"
+                    },
+                    "indices": "indices_2653",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID95": {
+            "name": "ID95",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_320",
+                        "POSITION": "attribute_318"
+                    },
+                    "indices": "indices_316",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID951": {
+            "name": "ID951",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2677",
+                        "POSITION": "attribute_2675"
+                    },
+                    "indices": "indices_2673",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID957": {
+            "name": "ID957",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2697",
+                        "POSITION": "attribute_2695"
+                    },
+                    "indices": "indices_2693",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID963": {
+            "name": "ID963",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2717",
+                        "POSITION": "attribute_2715"
+                    },
+                    "indices": "indices_2713",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID969": {
+            "name": "ID969",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2737",
+                        "POSITION": "attribute_2735"
+                    },
+                    "indices": "indices_2733",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID975": {
+            "name": "ID975",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2757",
+                        "POSITION": "attribute_2755"
+                    },
+                    "indices": "indices_2753",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID981": {
+            "name": "ID981",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2777",
+                        "POSITION": "attribute_2775"
+                    },
+                    "indices": "indices_2773",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID987": {
+            "name": "ID987",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2797",
+                        "POSITION": "attribute_2795"
+                    },
+                    "indices": "indices_2793",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID993": {
+            "name": "ID993",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2817",
+                        "POSITION": "attribute_2815"
+                    },
+                    "indices": "indices_2813",
+                    "material": "ID5",
+                    "primitive": 4
+                }
+            ]
+        },
+        "ID999": {
+            "name": "ID999",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_2837",
+                        "POSITION": "attribute_2835"
+                    },
+                    "indices": "indices_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",
+                "ID17",
+                "ID23",
+                "ID29",
+                "ID35",
+                "ID41",
+                "ID47",
+                "ID53",
+                "ID59",
+                "ID65",
+                "ID71",
+                "ID77",
+                "ID83",
+                "ID89",
+                "ID95",
+                "ID101"
+            ],
+            "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": [
+                "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",
+                "ID582",
+                "ID588",
+                "ID594",
+                "ID600",
+                "ID606",
+                "ID612"
+            ],
+            "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"
+        }
+    },
+    "profile": "WebGL 1.0.2",
+    "programs": {
+        "program_0": {
+            "attributes": [
+                "a_normal",
+                "a_position"
+            ],
+            "fragmentShader": "Rambler0FS",
+            "vertexShader": "Rambler0VS"
+        }
+    },
+    "scene": "defaultScene",
+    "scenes": {
+        "defaultScene": {
+            "nodes": [
+                "node_0"
+            ]
+        }
+    },
+    "shaders": {
+        "Rambler0FS": {
+            "path": "Rambler0FS.glsl"
+        },
+        "Rambler0VS": {
+            "path": "Rambler0VS.glsl"
+        }
+    },
+    "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
+                    }
+                }
+            }
+        }
+    }
+}

+ 13 - 0
examples/models/gltf/rambler/Rambler0FS.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;
+}

+ 12 - 0
examples/models/gltf/rambler/Rambler0VS.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 = normalize(u_normalMatrix * a_normal);
+gl_Position = u_projectionMatrix * pos;
+}

BIN
examples/models/gltf/wine/Wood_Cherry_Original_.jpg


BIN
examples/models/gltf/wine/_2004_old_vine_zinfandel_btl_xlg.jpg


BIN
examples/models/gltf/wine/artezin_bottle.jpg


BIN
examples/models/gltf/wine/wine.bin


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 471 - 0
examples/models/gltf/wine/wine.dae


+ 11904 - 0
examples/models/gltf/wine/wine.json

@@ -0,0 +1,11904 @@
+{
+    "accessors": {
+        "attribute_120": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 38592,
+            "byteStride": 12,
+            "count": 176,
+            "max": [
+                54,
+                21,
+                4
+            ],
+            "min": [
+                -5,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_122": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 40704,
+            "byteStride": 12,
+            "count": 176,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_124": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 42816,
+            "byteStride": 8,
+            "count": 176,
+            "max": [
+                8.17898,
+                1
+            ],
+            "min": [
+                2.31603,
+                -0.06428
+            ],
+            "type": 35664
+        },
+        "attribute_147": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 44224,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                2,
+                21,
+                38
+            ],
+            "min": [
+                0,
+                0,
+                5.5
+            ],
+            "type": 35665
+        },
+        "attribute_149": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 45376,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_151": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 46528,
+            "byteStride": 8,
+            "count": 96,
+            "max": [
+                4.15963,
+                1.11374
+            ],
+            "min": [
+                -1.14777,
+                -0.08885
+            ],
+            "type": 35664
+        },
+        "attribute_174": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 47296,
+            "byteStride": 12,
+            "count": 1968,
+            "max": [
+                117.98,
+                117.98,
+                518.533
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_176": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 70912,
+            "byteStride": 12,
+            "count": 1968,
+            "max": [
+                0.995313,
+                0.995313,
+                0.962469
+            ],
+            "min": [
+                -0.995313,
+                -0.995313,
+                -0.962469
+            ],
+            "type": 35665
+        },
+        "attribute_178": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 94528,
+            "byteStride": 8,
+            "count": 1968,
+            "max": [
+                0.855532,
+                1.10658
+            ],
+            "min": [
+                -0.555297,
+                0.021103
+            ],
+            "type": 35664
+        },
+        "attribute_221": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 110272,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                82.9854,
+                82.9854,
+                0
+            ],
+            "min": [
+                34.9944,
+                34.9944,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_223": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 110848,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_225": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 111424,
+            "byteStride": 8,
+            "count": 48,
+            "max": [
+                0.642232,
+                0.987863
+            ],
+            "min": [
+                0.349715,
+                0.987863
+            ],
+            "type": 35664
+        },
+        "attribute_248": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 111808,
+            "byteStride": 12,
+            "count": 176,
+            "max": [
+                54,
+                21,
+                4
+            ],
+            "min": [
+                -5,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_250": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 113920,
+            "byteStride": 12,
+            "count": 176,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_252": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 116032,
+            "byteStride": 8,
+            "count": 176,
+            "max": [
+                8.17898,
+                1
+            ],
+            "min": [
+                2.31603,
+                -0.06428
+            ],
+            "type": 35664
+        },
+        "attribute_26": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 0,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                2,
+                21,
+                38
+            ],
+            "min": [
+                0,
+                0,
+                5.5
+            ],
+            "type": 35665
+        },
+        "attribute_270": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 117440,
+            "byteStride": 12,
+            "count": 224,
+            "max": [
+                5,
+                16.7003,
+                4.82643
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_272": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 120128,
+            "byteStride": 12,
+            "count": 224,
+            "max": [
+                1,
+                0.97185,
+                0.97185
+            ],
+            "min": [
+                -1,
+                -0.97185,
+                -0.97185
+            ],
+            "type": 35665
+        },
+        "attribute_28": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 1152,
+            "byteStride": 12,
+            "count": 96,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_295": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 122816,
+            "byteStride": 12,
+            "count": 2933,
+            "max": [
+                25.9025,
+                25.9025,
+                102.794
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_297": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 158012,
+            "byteStride": 12,
+            "count": 2933,
+            "max": [
+                0.999806,
+                0.999806,
+                1
+            ],
+            "min": [
+                -0.999806,
+                -0.999806,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_299": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 193208,
+            "byteStride": 8,
+            "count": 2933,
+            "max": [
+                0.888318,
+                1.17207
+            ],
+            "min": [
+                -0.595152,
+                0.013247
+            ],
+            "type": 35664
+        },
+        "attribute_30": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 2304,
+            "byteStride": 8,
+            "count": 96,
+            "max": [
+                4.15963,
+                1.11374
+            ],
+            "min": [
+                -1.14777,
+                -0.08885
+            ],
+            "type": 35664
+        },
+        "attribute_317": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 216672,
+            "byteStride": 12,
+            "count": 120,
+            "max": [
+                0,
+                21,
+                6.16053
+            ],
+            "min": [
+                -118,
+                -0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_319": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 218112,
+            "byteStride": 12,
+            "count": 120,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_342": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 219552,
+            "byteStride": 12,
+            "count": 1968,
+            "max": [
+                117.98,
+                117.98,
+                518.533
+            ],
+            "min": [
+                0,
+                0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_344": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 243168,
+            "byteStride": 12,
+            "count": 1968,
+            "max": [
+                0.995313,
+                0.995313,
+                0.962469
+            ],
+            "min": [
+                -0.995313,
+                -0.995313,
+                -0.962469
+            ],
+            "type": 35665
+        },
+        "attribute_346": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 266784,
+            "byteStride": 8,
+            "count": 1968,
+            "max": [
+                0.855532,
+                1.10658
+            ],
+            "min": [
+                -0.555297,
+                0.021103
+            ],
+            "type": 35664
+        },
+        "attribute_389": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 282528,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                82.9854,
+                82.9854,
+                0
+            ],
+            "min": [
+                34.9944,
+                34.9944,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_391": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 283104,
+            "byteStride": 12,
+            "count": 48,
+            "max": [
+                -0,
+                0,
+                1
+            ],
+            "min": [
+                -0,
+                0,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_393": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 283680,
+            "byteStride": 8,
+            "count": 48,
+            "max": [
+                0.642232,
+                0.987863
+            ],
+            "min": [
+                0.349715,
+                0.987863
+            ],
+            "type": 35664
+        },
+        "attribute_48": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 3072,
+            "byteStride": 12,
+            "count": 720,
+            "max": [
+                16.8,
+                19.5,
+                0.75
+            ],
+            "min": [
+                1.4,
+                -0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_50": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 11712,
+            "byteStride": 12,
+            "count": 720,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_68": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 20352,
+            "byteStride": 12,
+            "count": 720,
+            "max": [
+                16.8,
+                19.5,
+                0.75
+            ],
+            "min": [
+                1.4,
+                -0,
+                0
+            ],
+            "type": 35665
+        },
+        "attribute_70": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 28992,
+            "byteStride": 12,
+            "count": 720,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_93": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 37632,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                0.5,
+                21,
+                46.6166
+            ],
+            "min": [
+                -0.5,
+                0,
+                2.5
+            ],
+            "type": 35665
+        },
+        "attribute_95": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 37992,
+            "byteStride": 12,
+            "count": 30,
+            "max": [
+                1,
+                1,
+                1
+            ],
+            "min": [
+                -1,
+                -1,
+                -1
+            ],
+            "type": 35665
+        },
+        "attribute_97": {
+            "bufferView": "bufferView_408",
+            "byteOffset": 38352,
+            "byteStride": 8,
+            "count": 30,
+            "max": [
+                0.291667,
+                1
+            ],
+            "min": [
+                -0.291667,
+                0.352547
+            ],
+            "type": 35664
+        },
+        "indices_118": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 8208,
+            "count": 360,
+            "type": 5123
+        },
+        "indices_145": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 8928,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_172": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 9264,
+            "count": 4740,
+            "type": 5123
+        },
+        "indices_216": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 18744,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_219": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 18876,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_24": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 0,
+            "count": 168,
+            "type": 5123
+        },
+        "indices_246": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 19008,
+            "count": 360,
+            "type": 5123
+        },
+        "indices_268": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 19728,
+            "count": 600,
+            "type": 5123
+        },
+        "indices_293": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 20928,
+            "count": 6918,
+            "type": 5123
+        },
+        "indices_315": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 34764,
+            "count": 216,
+            "type": 5123
+        },
+        "indices_340": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 35196,
+            "count": 4740,
+            "type": 5123
+        },
+        "indices_384": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 44676,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_387": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 44808,
+            "count": 66,
+            "type": 5123
+        },
+        "indices_46": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 336,
+            "count": 1944,
+            "type": 5123
+        },
+        "indices_66": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 4224,
+            "count": 1944,
+            "type": 5123
+        },
+        "indices_91": {
+            "bufferView": "bufferView_409",
+            "byteOffset": 8112,
+            "count": 48,
+            "type": 5123
+        }
+    },
+    "animations": {},
+    "asset": {
+        "generator": "collada2gltf@75061f683116dc0ffdad48f33c226e933132e98c"
+    },
+    "bufferViews": {
+        "bufferView_408": {
+            "buffer": "wine",
+            "byteLength": 284064,
+            "byteOffset": 0,
+            "target": 34962
+        },
+        "bufferView_409": {
+            "buffer": "wine",
+            "byteLength": 44940,
+            "byteOffset": 284064,
+            "target": 34963
+        },
+        "bufferView_410": {
+            "buffer": "wine",
+            "byteLength": 0,
+            "byteOffset": 329004
+        }
+    },
+    "buffers": {
+        "wine": {
+            "byteLength": 329004,
+            "path": "wine.bin",
+            "type": "arraybuffer"
+        }
+    },
+    "cameras": {
+        "camera_0": {
+            "perspective": {
+                "yfov": 45,
+                "zfar": 3162.76,
+                "znear": 12.651
+            },
+            "type": "perspective"
+        }
+    },
+    "images": {
+        "image_0": {
+            "path": "artezin_bottle.jpg"
+        },
+        "image_1": {
+            "path": "Wood_Cherry_Original_.jpg"
+        },
+        "image_2": {
+            "path": "_2004_old_vine_zinfandel_btl_xlg.jpg"
+        }
+    },
+    "materials": {
+        "ID139": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "ambient": [
+                        0.2,
+                        0.2,
+                        0.2,
+                        1
+                    ],
+                    "diffuse": "texture_image_0"
+                }
+            },
+            "name": "artezin_bottle"
+        },
+        "ID21": {
+            "instanceTechnique": {
+                "technique": "technique2",
+                "values": {
+                    "ambient": [
+                        0.2,
+                        0.2,
+                        0.2,
+                        1
+                    ],
+                    "diffuse": [
+                        0.564706,
+                        0.972549,
+                        0.835294,
+                        0.14902
+                    ],
+                    "transparency": 0.14902
+                }
+            },
+            "name": "material_5"
+        },
+        "ID6": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "ambient": [
+                        0.2,
+                        0.2,
+                        0.2,
+                        1
+                    ],
+                    "diffuse": "texture_image_1"
+                }
+            },
+            "name": "Wood_Cherry_Original_"
+        },
+        "ID77": {
+            "instanceTechnique": {
+                "technique": "technique1",
+                "values": {
+                    "ambient": [
+                        0.2,
+                        0.2,
+                        0.2,
+                        1
+                    ],
+                    "diffuse": "texture_image_2"
+                }
+            },
+            "name": "_2004_old_vine_zinfandel_btl_xlg"
+        },
+        "ID89": {
+            "instanceTechnique": {
+                "technique": "technique3",
+                "values": {
+                    "ambient": [
+                        0.2,
+                        0.2,
+                        0.2,
+                        1
+                    ],
+                    "diffuse": [
+                        1,
+                        1,
+                        1,
+                        1
+                    ]
+                }
+            },
+            "name": "material"
+        }
+    },
+    "meshes": {
+        "geometry16": {
+            "name": "geometry16",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_28",
+                        "POSITION": "attribute_26",
+                        "TEXCOORD_0": "attribute_30"
+                    },
+                    "indices": "indices_24",
+                    "material": "ID6",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry24": {
+            "name": "geometry24",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_50",
+                        "POSITION": "attribute_48"
+                    },
+                    "indices": "indices_46",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry29": {
+            "name": "geometry29",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_70",
+                        "POSITION": "attribute_68"
+                    },
+                    "indices": "indices_66",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry35": {
+            "name": "geometry35",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_95",
+                        "POSITION": "attribute_93",
+                        "TEXCOORD_0": "attribute_97"
+                    },
+                    "indices": "indices_91",
+                    "material": "ID6",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry40": {
+            "name": "geometry40",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_122",
+                        "POSITION": "attribute_120",
+                        "TEXCOORD_0": "attribute_124"
+                    },
+                    "indices": "indices_118",
+                    "material": "ID6",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry45": {
+            "name": "geometry45",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_149",
+                        "POSITION": "attribute_147",
+                        "TEXCOORD_0": "attribute_151"
+                    },
+                    "indices": "indices_145",
+                    "material": "ID6",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry51": {
+            "name": "geometry51",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_176",
+                        "POSITION": "attribute_174",
+                        "TEXCOORD_0": "attribute_178"
+                    },
+                    "indices": "indices_172",
+                    "material": "ID77",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry58": {
+            "name": "geometry58",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_223",
+                        "POSITION": "attribute_221",
+                        "TEXCOORD_0": "attribute_225"
+                    },
+                    "indices": "indices_216",
+                    "material": "ID89",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_223",
+                        "POSITION": "attribute_221",
+                        "TEXCOORD_0": "attribute_225"
+                    },
+                    "indices": "indices_219",
+                    "material": "ID77",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry64": {
+            "name": "geometry64",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_250",
+                        "POSITION": "attribute_248",
+                        "TEXCOORD_0": "attribute_252"
+                    },
+                    "indices": "indices_246",
+                    "material": "ID6",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry71": {
+            "name": "geometry71",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_272",
+                        "POSITION": "attribute_270"
+                    },
+                    "indices": "indices_268",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry75": {
+            "name": "geometry75",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_297",
+                        "POSITION": "attribute_295",
+                        "TEXCOORD_0": "attribute_299"
+                    },
+                    "indices": "indices_293",
+                    "material": "ID139",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry85": {
+            "name": "geometry85",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_319",
+                        "POSITION": "attribute_317"
+                    },
+                    "indices": "indices_315",
+                    "material": "ID21",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry89": {
+            "name": "geometry89",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_344",
+                        "POSITION": "attribute_342",
+                        "TEXCOORD_0": "attribute_346"
+                    },
+                    "indices": "indices_340",
+                    "material": "ID77",
+                    "primitive": 4
+                }
+            ]
+        },
+        "geometry98": {
+            "name": "geometry98",
+            "primitives": [
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_391",
+                        "POSITION": "attribute_389",
+                        "TEXCOORD_0": "attribute_393"
+                    },
+                    "indices": "indices_384",
+                    "material": "ID89",
+                    "primitive": 4
+                },
+                {
+                    "attributes": {
+                        "NORMAL": "attribute_391",
+                        "POSITION": "attribute_389",
+                        "TEXCOORD_0": "attribute_393"
+                    },
+                    "indices": "indices_387",
+                    "material": "ID77",
+                    "primitive": 4
+                }
+            ]
+        }
+    },
+    "nodes": {
+        "BOuteille_Ex": {
+            "children": [
+                "group_1"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "Bouteille_2": {
+            "children": [
+                "ID74"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "Component_16": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry40"
+            ],
+            "name": "Component_16"
+        },
+        "Component_17": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry16"
+            ],
+            "name": "Component_17"
+        },
+        "Component_19": {
+            "children": [
+                "instance_21",
+                "instance_22",
+                "instance_23"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "Component_20": {
+            "children": [
+                "instance_18",
+                "instance_19",
+                "instance_20",
+                "instance_24"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "Component_4": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry24"
+            ],
+            "name": "Component_4"
+        },
+        "Component_5": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "Component_6": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry35"
+            ],
+            "name": "Component_6"
+        },
+        "ID109": {
+            "children": [
+                "node113"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                3.99201,
+                25.7307,
+                1
+            ],
+            "name": "instance_16"
+        },
+        "ID110": {
+            "children": [
+                "ID111"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.937447,
+                22.4736,
+                1
+            ],
+            "name": "instance_17"
+        },
+        "ID111": {
+            "children": [
+                "ID112",
+                "ID113",
+                "ID114",
+                "ID126"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "ID112": {
+            "children": [
+                "node116"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "ID113": {
+            "children": [
+                "node120"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "ID114": {
+            "children": [
+                "ID115"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "ID115": {
+            "children": [
+                "ID116",
+                "ID124",
+                "ID125"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "ID116": {
+            "children": [
+                "ID117"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "ID117": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "ID124": {
+            "children": [
+                "Component_5"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "ID125": {
+            "children": [
+                "node124"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "ID126": {
+            "children": [
+                "node125"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "ID127": {
+            "children": [
+                "Component_20"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.937447,
+                13.0736,
+                1
+            ],
+            "name": "instance_25"
+        },
+        "ID128": {
+            "children": [
+                "node144"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.937447,
+                3.67357,
+                1
+            ],
+            "name": "instance_26"
+        },
+        "ID129": {
+            "children": [
+                "node168"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                0.937447,
+                13.0736,
+                1
+            ],
+            "name": "instance_27"
+        },
+        "ID130": {
+            "children": [
+                "node192"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                0.937447,
+                22.4736,
+                1
+            ],
+            "name": "instance_28"
+        },
+        "ID131": {
+            "children": [
+                "node216"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                0.937447,
+                3.67357,
+                1
+            ],
+            "name": "instance_29"
+        },
+        "ID132": {
+            "children": [
+                "ID133"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                30.4645,
+                1
+            ],
+            "name": "instance_30"
+        },
+        "ID133": {
+            "children": [
+                "ID134",
+                "ID150",
+                "ID151",
+                "ID152",
+                "ID153",
+                "ID154",
+                "ID155",
+                "ID156",
+                "ID157",
+                "ID158",
+                "ID159",
+                "ID160",
+                "ID170"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_24"
+        },
+        "ID134": {
+            "children": [
+                "ID135"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                48.6164,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_31"
+        },
+        "ID135": {
+            "children": [
+                "ID136"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "ID136": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "ID150": {
+            "children": [
+                "BOuteille_Ex"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                95.5851,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_32"
+        },
+        "ID151": {
+            "children": [
+                "node240"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                67.4038,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_33"
+        },
+        "ID152": {
+            "children": [
+                "node242"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                58.0101,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_34"
+        },
+        "ID153": {
+            "children": [
+                "node244"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                39.2226,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_35"
+        },
+        "ID154": {
+            "children": [
+                "node246"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                0.781535,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_36"
+        },
+        "ID155": {
+            "children": [
+                "node248"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                10.1753,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_37"
+        },
+        "ID156": {
+            "children": [
+                "node250"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                105.585,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_38"
+        },
+        "ID157": {
+            "children": [
+                "node252"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                76.7976,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_39"
+        },
+        "ID158": {
+            "children": [
+                "node254"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                20.4351,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_40"
+        },
+        "ID159": {
+            "children": [
+                "node256"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                86.1913,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_41"
+        },
+        "ID160": {
+            "children": [
+                "ID161"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                9.5,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_42"
+        },
+        "ID161": {
+            "children": [
+                "ID162"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_15"
+        },
+        "ID162": {
+            "children": [
+                "ID163"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                108.5,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_43"
+        },
+        "ID163": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry85"
+            ],
+            "name": "Component_23"
+        },
+        "ID170": {
+            "children": [
+                "node258"
+            ],
+            "matrix": [
+                2.5748,
+                0,
+                0,
+                0,
+                0,
+                0.841057,
+                -2.43356,
+                0,
+                0,
+                2.43356,
+                0.841057,
+                0,
+                29.8289,
+                0.907248,
+                9.18847,
+                1
+            ],
+            "name": "instance_44"
+        },
+        "ID171": {
+            "children": [
+                "node260"
+            ],
+            "matrix": [
+                -1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                -0.5,
+                0,
+                -3,
+                1
+            ],
+            "name": "instance_45"
+        },
+        "ID172": {
+            "children": [
+                "node261"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                16.7249,
+                25.7307,
+                1
+            ],
+            "name": "instance_46"
+        },
+        "ID173": {
+            "children": [
+                "node265"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                3.99201,
+                18.7069,
+                1
+            ],
+            "name": "instance_47"
+        },
+        "ID174": {
+            "children": [
+                "node269"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                9.94509,
+                18.7069,
+                1
+            ],
+            "name": "instance_48"
+        },
+        "ID175": {
+            "children": [
+                "node273"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                16.7249,
+                18.7069,
+                1
+            ],
+            "name": "instance_49"
+        },
+        "ID176": {
+            "children": [
+                "node277"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                16.7249,
+                11.6831,
+                1
+            ],
+            "name": "instance_50"
+        },
+        "ID177": {
+            "children": [
+                "node281"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                3.99201,
+                11.6831,
+                1
+            ],
+            "name": "instance_51"
+        },
+        "ID178": {
+            "children": [
+                "node285"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                9.94509,
+                11.6831,
+                1
+            ],
+            "name": "instance_52"
+        },
+        "ID179": {
+            "children": [
+                "node289"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                9.94509,
+                4.65934,
+                1
+            ],
+            "name": "instance_53"
+        },
+        "ID18": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry24"
+            ],
+            "name": "Component_4"
+        },
+        "ID180": {
+            "children": [
+                "node293"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                3.99201,
+                4.65934,
+                1
+            ],
+            "name": "instance_54"
+        },
+        "ID181": {
+            "children": [
+                "node297"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                16.7249,
+                4.65934,
+                1
+            ],
+            "name": "instance_55"
+        },
+        "ID182": {
+            "children": [
+                "ID183"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                9.94509,
+                25.7307,
+                1
+            ],
+            "name": "instance_56"
+        },
+        "ID183": {
+            "children": [
+                "ID184"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "ID184": {
+            "children": [
+                "ID185",
+                "ID193"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "ID185": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "ID193": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "ID201": {
+            "children": [
+                "node301"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                3.99201,
+                25.7307,
+                1
+            ],
+            "name": "instance_57"
+        },
+        "ID202": {
+            "children": [
+                "node305"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                16.7249,
+                25.7307,
+                1
+            ],
+            "name": "instance_58"
+        },
+        "ID203": {
+            "children": [
+                "node309"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                9.94509,
+                18.7017,
+                1
+            ],
+            "name": "instance_59"
+        },
+        "ID204": {
+            "children": [
+                "node313"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                3.99201,
+                18.7017,
+                1
+            ],
+            "name": "instance_60"
+        },
+        "ID205": {
+            "children": [
+                "node317"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                16.7249,
+                18.7017,
+                1
+            ],
+            "name": "instance_61"
+        },
+        "ID206": {
+            "children": [
+                "node321"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                3.99201,
+                11.6726,
+                1
+            ],
+            "name": "instance_62"
+        },
+        "ID207": {
+            "children": [
+                "node325"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                16.7249,
+                11.6726,
+                1
+            ],
+            "name": "instance_63"
+        },
+        "ID208": {
+            "children": [
+                "node329"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                9.94509,
+                11.6726,
+                1
+            ],
+            "name": "instance_64"
+        },
+        "ID209": {
+            "children": [
+                "node333"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                9.94509,
+                4.64358,
+                1
+            ],
+            "name": "instance_65"
+        },
+        "ID210": {
+            "children": [
+                "node337"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                3.99201,
+                4.64358,
+                1
+            ],
+            "name": "instance_66"
+        },
+        "ID211": {
+            "children": [
+                "node341"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                0,
+                24.414,
+                16.7249,
+                4.64358,
+                1
+            ],
+            "name": "instance_67"
+        },
+        "ID212": {
+            "children": [
+                "node345"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                48,
+                0.937447,
+                22.4736,
+                1
+            ],
+            "name": "instance_68"
+        },
+        "ID213": {
+            "children": [
+                "node369"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                48,
+                0.937447,
+                3.67357,
+                1
+            ],
+            "name": "instance_69"
+        },
+        "ID214": {
+            "children": [
+                "node393"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                48,
+                0.937447,
+                13.0736,
+                1
+            ],
+            "name": "instance_70"
+        },
+        "ID215": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "ID215"
+        },
+        "ID221": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "ID221"
+        },
+        "ID225": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "ID225"
+        },
+        "ID28": {
+            "children": [
+                "ID29"
+            ],
+            "matrix": [
+                -1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                1.5,
+                25.125,
+                1
+            ],
+            "name": "instance_3"
+        },
+        "ID29": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry29"
+            ],
+            "name": "Component_4"
+        },
+        "ID39": {
+            "children": [
+                "node108"
+            ],
+            "matrix": [
+                1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                22,
+                1.5,
+                18.125,
+                1
+            ],
+            "name": "instance_7"
+        },
+        "ID40": {
+            "children": [
+                "node109"
+            ],
+            "matrix": [
+                1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                22,
+                1.5,
+                4.125,
+                1
+            ],
+            "name": "instance_8"
+        },
+        "ID51": {
+            "children": [
+                "Component_16"
+            ],
+            "matrix": [
+                -1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                54,
+                0,
+                -0.5,
+                1
+            ],
+            "name": "instance_10"
+        },
+        "ID62": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry45"
+            ],
+            "name": "Component_17"
+        },
+        "ID71": {
+            "children": [
+                "node110"
+            ],
+            "matrix": [
+                -1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                24,
+                0,
+                -2,
+                1
+            ],
+            "name": "instance_12"
+        },
+        "ID74": {
+            "children": [
+                "ID75",
+                "ID88"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "ID75": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "ID88": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "ID98": {
+            "children": [
+                "node111"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                94,
+                0,
+                -2,
+                1
+            ],
+            "name": "instance_14"
+        },
+        "SketchUp": {
+            "children": [
+                "ID215",
+                "ID221",
+                "ID225",
+                "instance_0",
+                "instance_1",
+                "instance_2",
+                "ID28",
+                "instance_4",
+                "instance_5",
+                "instance_6",
+                "ID39",
+                "ID40",
+                "instance_9",
+                "ID51",
+                "instance_11",
+                "ID71",
+                "instance_13",
+                "ID98",
+                "instance_15",
+                "ID109",
+                "ID110",
+                "ID127",
+                "ID128",
+                "ID129",
+                "ID130",
+                "ID131",
+                "ID132",
+                "ID171",
+                "ID172",
+                "ID173",
+                "ID174",
+                "ID175",
+                "ID176",
+                "ID177",
+                "ID178",
+                "ID179",
+                "ID180",
+                "ID181",
+                "ID182",
+                "ID201",
+                "ID202",
+                "ID203",
+                "ID204",
+                "ID205",
+                "ID206",
+                "ID207",
+                "ID208",
+                "ID209",
+                "ID210",
+                "ID211",
+                "ID212",
+                "ID213",
+                "ID214"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "SketchUp"
+        },
+        "default_camera": {
+            "camera": "camera_0",
+            "children": [],
+            "matrix": [
+                0.707107,
+                0.707107,
+                0,
+                0,
+                -0.270598,
+                0.270598,
+                0.92388,
+                0,
+                0.653282,
+                -0.653282,
+                0.382683,
+                0,
+                186.517,
+                -109.708,
+                99.2226,
+                1
+            ],
+            "name": "default_camera"
+        },
+        "group_0": {
+            "children": [
+                "node114",
+                "node115"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "group_1": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "instance_0": {
+            "children": [
+                "Component_17"
+            ],
+            "matrix": [
+                -1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                48,
+                0,
+                -2,
+                1
+            ],
+            "name": "instance_0"
+        },
+        "instance_1": {
+            "children": [
+                "ID18"
+            ],
+            "matrix": [
+                1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                22,
+                1.5,
+                25.125,
+                1
+            ],
+            "name": "instance_1"
+        },
+        "instance_11": {
+            "children": [
+                "ID62"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                70,
+                0,
+                -2,
+                1
+            ],
+            "name": "instance_11"
+        },
+        "instance_13": {
+            "children": [
+                "Bouteille_2"
+            ],
+            "matrix": [
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                1.3986,
+                0,
+                0,
+                -1.3986,
+                0,
+                0,
+                0,
+                93.4903,
+                9.94509,
+                25.7307,
+                1
+            ],
+            "name": "instance_13"
+        },
+        "instance_15": {
+            "children": [
+                "node112"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                64,
+                0,
+                -0.5,
+                1
+            ],
+            "name": "instance_15"
+        },
+        "instance_18": {
+            "children": [
+                "node129"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "instance_19": {
+            "children": [
+                "node133"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "instance_2": {
+            "children": [
+                "Component_4"
+            ],
+            "matrix": [
+                1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                22,
+                1.5,
+                11.125,
+                1
+            ],
+            "name": "instance_2"
+        },
+        "instance_20": {
+            "children": [
+                "Component_19"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "instance_21": {
+            "children": [
+                "node137"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "instance_22": {
+            "children": [
+                "node138"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "instance_23": {
+            "children": [
+                "node139"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "instance_24": {
+            "children": [
+                "node140"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "instance_4": {
+            "children": [
+                "node105"
+            ],
+            "matrix": [
+                -1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                1.5,
+                11.125,
+                1
+            ],
+            "name": "instance_4"
+        },
+        "instance_5": {
+            "children": [
+                "node106"
+            ],
+            "matrix": [
+                -1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                1.5,
+                4.125,
+                1
+            ],
+            "name": "instance_5"
+        },
+        "instance_6": {
+            "children": [
+                "node107"
+            ],
+            "matrix": [
+                -1.42857,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                96,
+                1.5,
+                18.125,
+                1
+            ],
+            "name": "instance_6"
+        },
+        "instance_9": {
+            "children": [
+                "Component_6"
+            ],
+            "matrix": [
+                -1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                118.5,
+                0,
+                -3,
+                1
+            ],
+            "name": "instance_9"
+        },
+        "node105": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry29"
+            ],
+            "name": "Component_4"
+        },
+        "node106": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry29"
+            ],
+            "name": "Component_4"
+        },
+        "node107": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry29"
+            ],
+            "name": "Component_4"
+        },
+        "node108": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry24"
+            ],
+            "name": "Component_4"
+        },
+        "node109": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry24"
+            ],
+            "name": "Component_4"
+        },
+        "node110": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry16"
+            ],
+            "name": "Component_17"
+        },
+        "node111": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry45"
+            ],
+            "name": "Component_17"
+        },
+        "node112": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry64"
+            ],
+            "name": "Component_16"
+        },
+        "node113": {
+            "children": [
+                "group_0"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node114": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node115": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node116": {
+            "children": [
+                "node117"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node117": {
+            "children": [
+                "node118",
+                "node119"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node118": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node119": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node120": {
+            "children": [
+                "node121"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node121": {
+            "children": [
+                "node122",
+                "node123"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node122": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node123": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node124": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node125": {
+            "children": [
+                "node126"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node126": {
+            "children": [
+                "node127",
+                "node128"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node127": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node128": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node129": {
+            "children": [
+                "node130"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node130": {
+            "children": [
+                "node131",
+                "node132"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node131": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node132": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node133": {
+            "children": [
+                "node134"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node134": {
+            "children": [
+                "node135",
+                "node136"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node135": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node136": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node137": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node138": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node139": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node140": {
+            "children": [
+                "node141"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node141": {
+            "children": [
+                "node142",
+                "node143"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node142": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node143": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node144": {
+            "children": [
+                "node145",
+                "node150",
+                "node155",
+                "node163"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node145": {
+            "children": [
+                "node146"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node146": {
+            "children": [
+                "node147"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node147": {
+            "children": [
+                "node148",
+                "node149"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node148": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node149": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node150": {
+            "children": [
+                "node151"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node151": {
+            "children": [
+                "node152"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node152": {
+            "children": [
+                "node153",
+                "node154"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node153": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node154": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node155": {
+            "children": [
+                "node156"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node156": {
+            "children": [
+                "node157",
+                "node159",
+                "node161"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node157": {
+            "children": [
+                "node158"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node158": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node159": {
+            "children": [
+                "node160"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node160": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node161": {
+            "children": [
+                "node162"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node162": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node163": {
+            "children": [
+                "node164"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node164": {
+            "children": [
+                "node165"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node165": {
+            "children": [
+                "node166",
+                "node167"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node166": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node167": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node168": {
+            "children": [
+                "node169",
+                "node174",
+                "node179",
+                "node187"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node169": {
+            "children": [
+                "node170"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node170": {
+            "children": [
+                "node171"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node171": {
+            "children": [
+                "node172",
+                "node173"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node172": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node173": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node174": {
+            "children": [
+                "node175"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node175": {
+            "children": [
+                "node176"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node176": {
+            "children": [
+                "node177",
+                "node178"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node177": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node178": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node179": {
+            "children": [
+                "node180"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node180": {
+            "children": [
+                "node181",
+                "node183",
+                "node185"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node181": {
+            "children": [
+                "node182"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node182": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node183": {
+            "children": [
+                "node184"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node184": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node185": {
+            "children": [
+                "node186"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node186": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node187": {
+            "children": [
+                "node188"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node188": {
+            "children": [
+                "node189"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node189": {
+            "children": [
+                "node190",
+                "node191"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node190": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node191": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node192": {
+            "children": [
+                "node193",
+                "node198",
+                "node203",
+                "node211"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node193": {
+            "children": [
+                "node194"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node194": {
+            "children": [
+                "node195"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node195": {
+            "children": [
+                "node196",
+                "node197"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node196": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node197": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node198": {
+            "children": [
+                "node199"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node199": {
+            "children": [
+                "node200"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node200": {
+            "children": [
+                "node201",
+                "node202"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node201": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node202": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node203": {
+            "children": [
+                "node204"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node204": {
+            "children": [
+                "node205",
+                "node207",
+                "node209"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node205": {
+            "children": [
+                "node206"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node206": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node207": {
+            "children": [
+                "node208"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node208": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node209": {
+            "children": [
+                "node210"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node210": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node211": {
+            "children": [
+                "node212"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node212": {
+            "children": [
+                "node213"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node213": {
+            "children": [
+                "node214",
+                "node215"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node214": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node215": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node216": {
+            "children": [
+                "node217",
+                "node222",
+                "node227",
+                "node235"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node217": {
+            "children": [
+                "node218"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node218": {
+            "children": [
+                "node219"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node219": {
+            "children": [
+                "node220",
+                "node221"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node220": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node221": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node222": {
+            "children": [
+                "node223"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node223": {
+            "children": [
+                "node224"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node224": {
+            "children": [
+                "node225",
+                "node226"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node225": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node226": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node227": {
+            "children": [
+                "node228"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node228": {
+            "children": [
+                "node229",
+                "node231",
+                "node233"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node229": {
+            "children": [
+                "node230"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node230": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node231": {
+            "children": [
+                "node232"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node232": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node233": {
+            "children": [
+                "node234"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node234": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node235": {
+            "children": [
+                "node236"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node236": {
+            "children": [
+                "node237"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node237": {
+            "children": [
+                "node238",
+                "node239"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node238": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node239": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node240": {
+            "children": [
+                "node241"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node241": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node242": {
+            "children": [
+                "node243"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node243": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node244": {
+            "children": [
+                "node245"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node245": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node246": {
+            "children": [
+                "node247"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node247": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node248": {
+            "children": [
+                "node249"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node249": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node250": {
+            "children": [
+                "node251"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node251": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node252": {
+            "children": [
+                "node253"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node253": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node254": {
+            "children": [
+                "node255"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node255": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node256": {
+            "children": [
+                "node257"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node257": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node258": {
+            "children": [
+                "node259"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "BOuteille_Ex"
+        },
+        "node259": {
+            "children": [],
+            "matrix": [
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0,
+                0,
+                0,
+                0.126638,
+                0,
+                0.714938,
+                0.421022,
+                -0.032816,
+                1
+            ],
+            "meshes": [
+                "geometry75"
+            ],
+            "name": "group_1"
+        },
+        "node260": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry35"
+            ],
+            "name": "Component_6"
+        },
+        "node261": {
+            "children": [
+                "node262"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node262": {
+            "children": [
+                "node263",
+                "node264"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node263": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node264": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node265": {
+            "children": [
+                "node266"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node266": {
+            "children": [
+                "node267",
+                "node268"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node267": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node268": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node269": {
+            "children": [
+                "node270"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node270": {
+            "children": [
+                "node271",
+                "node272"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node271": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node272": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node273": {
+            "children": [
+                "node274"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node274": {
+            "children": [
+                "node275",
+                "node276"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node275": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node276": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node277": {
+            "children": [
+                "node278"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node278": {
+            "children": [
+                "node279",
+                "node280"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node279": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node280": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node281": {
+            "children": [
+                "node282"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node282": {
+            "children": [
+                "node283",
+                "node284"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node283": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node284": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node285": {
+            "children": [
+                "node286"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node286": {
+            "children": [
+                "node287",
+                "node288"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node287": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node288": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node289": {
+            "children": [
+                "node290"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node290": {
+            "children": [
+                "node291",
+                "node292"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node291": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node292": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node293": {
+            "children": [
+                "node294"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node294": {
+            "children": [
+                "node295",
+                "node296"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node295": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node296": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node297": {
+            "children": [
+                "node298"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node298": {
+            "children": [
+                "node299",
+                "node300"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node299": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node300": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node301": {
+            "children": [
+                "node302"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node302": {
+            "children": [
+                "node303",
+                "node304"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node303": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node304": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node305": {
+            "children": [
+                "node306"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node306": {
+            "children": [
+                "node307",
+                "node308"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node307": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node308": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node309": {
+            "children": [
+                "node310"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node310": {
+            "children": [
+                "node311",
+                "node312"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node311": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node312": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node313": {
+            "children": [
+                "node314"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node314": {
+            "children": [
+                "node315",
+                "node316"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node315": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node316": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node317": {
+            "children": [
+                "node318"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node318": {
+            "children": [
+                "node319",
+                "node320"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node319": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node320": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node321": {
+            "children": [
+                "node322"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node322": {
+            "children": [
+                "node323",
+                "node324"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node323": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node324": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node325": {
+            "children": [
+                "node326"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node326": {
+            "children": [
+                "node327",
+                "node328"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node327": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node328": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node329": {
+            "children": [
+                "node330"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node330": {
+            "children": [
+                "node331",
+                "node332"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node331": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node332": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node333": {
+            "children": [
+                "node334"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node334": {
+            "children": [
+                "node335",
+                "node336"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node335": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node336": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node337": {
+            "children": [
+                "node338"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node338": {
+            "children": [
+                "node339",
+                "node340"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node339": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node340": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node341": {
+            "children": [
+                "node342"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node342": {
+            "children": [
+                "node343",
+                "node344"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node343": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry89"
+            ],
+            "name": "ID185"
+        },
+        "node344": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry98"
+            ],
+            "name": "ID193"
+        },
+        "node345": {
+            "children": [
+                "node346",
+                "node351",
+                "node356",
+                "node364"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node346": {
+            "children": [
+                "node347"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node347": {
+            "children": [
+                "node348"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node348": {
+            "children": [
+                "node349",
+                "node350"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node349": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node350": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node351": {
+            "children": [
+                "node352"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node352": {
+            "children": [
+                "node353"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node353": {
+            "children": [
+                "node354",
+                "node355"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node354": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node355": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node356": {
+            "children": [
+                "node357"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node357": {
+            "children": [
+                "node358",
+                "node360",
+                "node362"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node358": {
+            "children": [
+                "node359"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node359": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node360": {
+            "children": [
+                "node361"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node361": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node362": {
+            "children": [
+                "node363"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node363": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node364": {
+            "children": [
+                "node365"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node365": {
+            "children": [
+                "node366"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node366": {
+            "children": [
+                "node367",
+                "node368"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node367": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node368": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node369": {
+            "children": [
+                "node370",
+                "node375",
+                "node380",
+                "node388"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node370": {
+            "children": [
+                "node371"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node371": {
+            "children": [
+                "node372"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node372": {
+            "children": [
+                "node373",
+                "node374"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node373": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node374": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node375": {
+            "children": [
+                "node376"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node376": {
+            "children": [
+                "node377"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node377": {
+            "children": [
+                "node378",
+                "node379"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node378": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node379": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node380": {
+            "children": [
+                "node381"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node381": {
+            "children": [
+                "node382",
+                "node384",
+                "node386"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node382": {
+            "children": [
+                "node383"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node383": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node384": {
+            "children": [
+                "node385"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node385": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node386": {
+            "children": [
+                "node387"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node387": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node388": {
+            "children": [
+                "node389"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node389": {
+            "children": [
+                "node390"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node390": {
+            "children": [
+                "node391",
+                "node392"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node391": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node392": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node393": {
+            "children": [
+                "node394",
+                "node399",
+                "node404",
+                "node412"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_20"
+        },
+        "node394": {
+            "children": [
+                "node395"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                15.0702,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_18"
+        },
+        "node395": {
+            "children": [
+                "node396"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node396": {
+            "children": [
+                "node397",
+                "node398"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node397": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node398": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node399": {
+            "children": [
+                "node400"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                0.478152,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_19"
+        },
+        "node400": {
+            "children": [
+                "node401"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node401": {
+            "children": [
+                "node402",
+                "node403"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node402": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node403": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        },
+        "node404": {
+            "children": [
+                "node405"
+            ],
+            "matrix": [
+                0.733333,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0.557489,
+                0,
+                1
+            ],
+            "name": "instance_20"
+        },
+        "node405": {
+            "children": [
+                "node406",
+                "node408",
+                "node410"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Component_19"
+        },
+        "node406": {
+            "children": [
+                "node407"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                20,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_21"
+        },
+        "node407": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node408": {
+            "children": [
+                "node409"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                10,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_22"
+        },
+        "node409": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node410": {
+            "children": [
+                "node411"
+            ],
+            "matrix": [
+                2,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "instance_23"
+        },
+        "node411": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry71"
+            ],
+            "name": "Component_5"
+        },
+        "node412": {
+            "children": [
+                "node413"
+            ],
+            "matrix": [
+                2.046,
+                0,
+                0,
+                0,
+                0,
+                0.481403,
+                -1.79662,
+                0,
+                0,
+                1.79662,
+                0.481403,
+                0,
+                7.91714,
+                0.129603,
+                4.55682,
+                1
+            ],
+            "name": "instance_24"
+        },
+        "node413": {
+            "children": [
+                "node414"
+            ],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "name": "Bouteille_2"
+        },
+        "node414": {
+            "children": [
+                "node415",
+                "node416"
+            ],
+            "matrix": [
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                0,
+                0,
+                0,
+                0.029036,
+                0,
+                -0.148335,
+                -0.996956,
+                -0.077266,
+                1
+            ],
+            "name": "group_0"
+        },
+        "node415": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry51"
+            ],
+            "name": "ID75"
+        },
+        "node416": {
+            "children": [],
+            "matrix": [
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1,
+                0,
+                0,
+                0,
+                0,
+                1
+            ],
+            "meshes": [
+                "geometry58"
+            ],
+            "name": "ID88"
+        }
+    },
+    "profile": "WebGL 1.0.2",
+    "programs": {
+        "program_0": {
+            "attributes": [
+                "a_normal",
+                "a_position",
+                "a_texcoord0"
+            ],
+            "fragmentShader": "wine0FS",
+            "vertexShader": "wine0VS"
+        },
+        "program_1": {
+            "attributes": [
+                "a_normal",
+                "a_position"
+            ],
+            "fragmentShader": "wine2FS",
+            "vertexShader": "wine2VS"
+        },
+        "program_2": {
+            "attributes": [
+                "a_normal",
+                "a_position"
+            ],
+            "fragmentShader": "wine4FS",
+            "vertexShader": "wine4VS"
+        }
+    },
+    "samplers": {
+        "sampler_0": {
+            "magFilter": 9729,
+            "minFilter": 9729,
+            "wrapS": 10497,
+            "wrapT": 10497
+        }
+    },
+    "scene": "defaultScene",
+    "scenes": {
+        "defaultScene": {
+            "nodes": [
+                "SketchUp",
+                "default_camera"
+            ]
+        }
+    },
+    "shaders": {
+        "wine0FS": {
+            "path": "wine0FS.glsl"
+        },
+        "wine0VS": {
+            "path": "wine0VS.glsl"
+        },
+        "wine2FS": {
+            "path": "wine2FS.glsl"
+        },
+        "wine2VS": {
+            "path": "wine2VS.glsl"
+        },
+        "wine4FS": {
+            "path": "wine4FS.glsl"
+        },
+        "wine4VS": {
+            "path": "wine4VS.glsl"
+        }
+    },
+    "skins": {},
+    "techniques": {
+        "technique1": {
+            "parameters": {
+                "ambient": {
+                    "type": 35666
+                },
+                "diffuse": {
+                    "type": 35678
+                },
+                "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
+                },
+                "texcoord0": {
+                    "semantic": "TEXCOORD_0",
+                    "type": 35664
+                }
+            },
+            "pass": "defaultPass",
+            "passes": {
+                "defaultPass": {
+                    "details": {
+                        "commonProfile": {
+                            "extras": {
+                                "doubleSided": false
+                            },
+                            "lightingModel": "Lambert",
+                            "parameters": [
+                                "ambient",
+                                "diffuse",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix"
+                            ],
+                            "texcoordBindings": {
+                                "diffuse": "TEXCOORD_0"
+                            }
+                        },
+                        "type": "COLLADA-1.4.1/commonProfile"
+                    },
+                    "instanceProgram": {
+                        "attributes": {
+                            "a_normal": "normal",
+                            "a_position": "position",
+                            "a_texcoord0": "texcoord0"
+                        },
+                        "program": "program_0",
+                        "uniforms": {
+                            "u_ambient": "ambient",
+                            "u_diffuse": "diffuse",
+                            "u_modelViewMatrix": "modelViewMatrix",
+                            "u_normalMatrix": "normalMatrix",
+                            "u_projectionMatrix": "projectionMatrix"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 0,
+                        "cullFaceEnable": 1,
+                        "depthMask": 1,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        },
+        "technique2": {
+            "parameters": {
+                "ambient": {
+                    "type": 35666
+                },
+                "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
+                },
+                "transparency": {
+                    "type": 5126
+                }
+            },
+            "pass": "defaultPass",
+            "passes": {
+                "defaultPass": {
+                    "details": {
+                        "commonProfile": {
+                            "extras": {
+                                "doubleSided": false
+                            },
+                            "lightingModel": "Lambert",
+                            "parameters": [
+                                "ambient",
+                                "diffuse",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix",
+                                "transparency"
+                            ]
+                        },
+                        "type": "COLLADA-1.4.1/commonProfile"
+                    },
+                    "instanceProgram": {
+                        "attributes": {
+                            "a_normal": "normal",
+                            "a_position": "position"
+                        },
+                        "program": "program_1",
+                        "uniforms": {
+                            "u_ambient": "ambient",
+                            "u_diffuse": "diffuse",
+                            "u_modelViewMatrix": "modelViewMatrix",
+                            "u_normalMatrix": "normalMatrix",
+                            "u_projectionMatrix": "projectionMatrix",
+                            "u_transparency": "transparency"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 1,
+                        "blendEquation": 32774,
+                        "blendFunc": {
+                            "dfactor": 771,
+                            "sfactor": 770
+                        },
+                        "cullFaceEnable": 1,
+                        "depthMask": 0,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        },
+        "technique3": {
+            "parameters": {
+                "ambient": {
+                    "type": 35666
+                },
+                "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": [
+                                "ambient",
+                                "diffuse",
+                                "modelViewMatrix",
+                                "normalMatrix",
+                                "projectionMatrix"
+                            ]
+                        },
+                        "type": "COLLADA-1.4.1/commonProfile"
+                    },
+                    "instanceProgram": {
+                        "attributes": {
+                            "a_normal": "normal",
+                            "a_position": "position"
+                        },
+                        "program": "program_2",
+                        "uniforms": {
+                            "u_ambient": "ambient",
+                            "u_diffuse": "diffuse",
+                            "u_modelViewMatrix": "modelViewMatrix",
+                            "u_normalMatrix": "normalMatrix",
+                            "u_projectionMatrix": "projectionMatrix"
+                        }
+                    },
+                    "states": {
+                        "blendEnable": 0,
+                        "cullFaceEnable": 1,
+                        "depthMask": 1,
+                        "depthTestEnable": 1
+                    }
+                }
+            }
+        }
+    },
+    "textures": {
+        "texture_image_0": {
+            "format": 6408,
+            "internalFormat": 6408,
+            "sampler": "sampler_0",
+            "source": "image_0",
+            "target": 3553
+        },
+        "texture_image_1": {
+            "format": 6408,
+            "internalFormat": 6408,
+            "sampler": "sampler_0",
+            "source": "image_1",
+            "target": 3553
+        },
+        "texture_image_2": {
+            "format": 6408,
+            "internalFormat": 6408,
+            "sampler": "sampler_0",
+            "source": "image_2",
+            "target": 3553
+        }
+    }
+}

+ 17 - 0
examples/models/gltf/wine/wine0FS.glsl

@@ -0,0 +1,17 @@
+precision highp float;
+varying vec3 v_normal;
+uniform vec4 u_ambient;
+varying vec2 v_texcoord0;
+uniform sampler2D 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 = texture2D(u_diffuse, v_texcoord0);
+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;
+}

+ 15 - 0
examples/models/gltf/wine/wine0VS.glsl

@@ -0,0 +1,15 @@
+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;
+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_texcoord0 = a_texcoord0;
+gl_Position = u_projectionMatrix * pos;
+}

+ 17 - 0
examples/models/gltf/wine/wine2FS.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;
+}

+ 12 - 0
examples/models/gltf/wine/wine2VS.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 = normalize(u_normalMatrix * a_normal);
+gl_Position = u_projectionMatrix * pos;
+}

+ 16 - 0
examples/models/gltf/wine/wine4FS.glsl

@@ -0,0 +1,16 @@
+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;
+}

+ 12 - 0
examples/models/gltf/wine/wine4VS.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 = normalize(u_normalMatrix * a_normal);
+gl_Position = u_projectionMatrix * pos;
+}

+ 534 - 0
examples/webgl_loader_gltf.html

@@ -0,0 +1,534 @@
+<!doctype html>
+<html lang="en">
+    <head>
+        <title>three.js webgl - glTF</title>
+        <meta charset="utf-8">
+        <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
+        <style>
+            body {
+                font-family: Monospace;
+                background-color: #EEF;
+                margin: 0px;
+                overflow: hidden;
+            }
+            
+            #info {
+				color: #fff;
+                position: absolute;
+                top: 10px;
+                width: 100%;
+                text-align: center;
+                z-index: 100;
+                display:block;
+            }
+            
+            #container {
+            	position: absolute;
+            	top: 0px;
+            	width:100%;
+            	height:100%;
+            	z-index: -1;
+            }
+            
+            #rendercontainer {
+            	position: absolute;
+            	top: 0px;
+            	width:100%;
+            	height:100%;
+            	z-index: -1;
+            	background-color:Red;
+            }
+                        
+            #controls {
+            	position:absolute;
+            	width:25%;
+            	left:75%;
+            	bottom:0%;
+            	height:134px;
+            	background-color:White;
+            	opacity:.9;
+            	font: 13px/1.231 "Lucida Grande", Lucida, Verdana, sans-serif;
+            }
+
+            #status {
+            	position:absolute;
+            	width:25%;
+            	left:2%;
+            	top:95%;
+            	height:5%;
+            	opacity:.9;
+            	font: 13px/1.231 "Lucida Grande", Lucida, Verdana, sans-serif;
+            }
+            
+            .control {
+            	position:absolute;
+            	margin-left:12px;
+            	width:100%;
+            	font-weight:bold;
+            }
+                        
+            .controlValue {
+            	position:absolute;
+            	left:50%;
+            	top:0%;
+            }
+            
+            #scenes_control {
+            	position:absolute;
+            	top:8px;
+            }
+
+            #cameras_control {
+            	position:absolute;
+            	top:40px;
+            }
+
+            #animations_control {
+            	position:absolute;
+            	top:72px;
+            }
+            
+            #buffer_geometry_control {
+            	position:absolute;
+            	top:104px;
+            }
+                        
+            #info a, .button { color: #f00; font-weight: bold; text-decoration: underline; cursor: pointer }
+        </style>
+    </head>
+
+    <body>
+        <div id="info">
+			<a href="http://threejs.org" target="_blank">three.js</a> -
+			monster by <a href="http://www.3drt.com/downloads.htm" target="_blank">3drt</a>
+        </div>
+		<div id="container">
+		</div>
+		<div id="status">
+		</div>
+		<div id="controls">
+			<div class="control" id="scenes_control">
+				Model
+				<select class="controlValue" id="scenes_list" size="1" onchange="selectScene();" ondblclick="selectScene();">
+				</select>
+			</div>
+			
+			<div class="control" id="cameras_control">
+				Camera
+				<select class="controlValue" id="cameras_list" size="1" onchange="selectCamera();" ondblclick="selectCamera();">
+				</select>
+			</div>
+			<div class="control" id="animations_control">
+				Animations
+				<div class="controlValue"><input type="checkbox" checked onclick="toggleAnimations();">Play</input></div>
+			</div>
+			<div class="control" id="buffer_geometry_control">
+				Geometry
+				<div class="controlValue">
+				<input type="checkbox" id="buffer_geometry_checkbox" checked onclick="toggleBufferGeometry();">BufferGeometry</input>
+				</div>
+			</div>
+		</div>
+        <script src="../build/three.js"></script>
+        <script src="./js/controls/OrbitControls.js"></script>
+        <script src="./js/loaders/gltf/glTF-parser.js"></script>
+        <script src="./js/loaders/gltf/glTFLoader.js"></script>
+        <script src="./js/loaders/gltf/glTFLoaderUtils.js"></script>
+        <script src="./js/loaders/gltf/glTFAnimation.js"></script>
+
+        <script>
+        	var orbitControls = null;
+            var container, camera, scene, renderer, loader;
+
+            var cameraIndex = 0;
+			var cameras = [];
+			var cameraNames = [];
+			var defaultCamera = null;
+			var gltf = null;
+			
+			function onload() {
+
+				window.addEventListener( 'resize', onWindowResize, false );
+            	document.addEventListener( 'keypress', 
+            			function(e) { onKeyPress(e); }, false );
+
+                buildSceneList();
+                switchScene(0);
+                animate();
+
+            }
+
+            function initScene(index) {
+                container = document.getElementById( 'container' );
+
+                scene = new THREE.Scene();
+
+                defaultCamera = new THREE.PerspectiveCamera( 45, container.offsetWidth / container.offsetHeight, 1, 20000 );
+                
+                //defaultCamera.up = new THREE.Vector3( 0, 1, 0 );
+                scene.add( defaultCamera );
+                camera = defaultCamera;
+
+                var sceneInfo = sceneList[index];
+
+                var spot1 = null;
+                if (sceneInfo.addLights) {
+                    
+                    var ambient = new THREE.AmbientLight( 0x222222 );
+                    scene.add( ambient );
+
+                	var directionalLight = new THREE.DirectionalLight( 0xdddddd );
+                	directionalLight.position.set( 0, -1, 1 ).normalize();
+                	scene.add( directionalLight );
+                
+	                spot1   = new THREE.SpotLight( 0x888888, 2 );
+	                spot1.position.set( -100, 200, 100 );
+	                spot1.target.position.set( 0, 0, 0 );
+
+	                if (sceneInfo.shadows) {
+		                
+		                spot1.shadowCameraNear      = 1;
+		                spot1.shadowCameraFar      = 1024;
+		                spot1.castShadow            = true;
+		                spot1.shadowDarkness        = 0.3;
+		                spot1.shadowBias = 0.0001;
+		                spot1.shadowMapWidth = 2048;
+		                spot1.shadowMapHeight = 2048;
+	                }
+	                scene.add( spot1 );
+                }
+				
+                // RENDERER
+
+                renderer = new THREE.WebGLRenderer({antialias:true});
+                renderer.setSize( container.offsetWidth, container.offsetHeight );
+
+                if (sceneInfo.shadows) {
+	                renderer.shadowMapEnabled = true;
+	                renderer.shadowMapSoft = true;
+	        		renderer.shadowMapType = THREE.PCFSoftShadowMap;
+                }
+                				
+                container.appendChild( renderer.domElement );
+
+                var ground = null;
+				if (sceneInfo.addGround) {
+	                var groundMaterial = new THREE.MeshPhongMaterial({
+	                        color: 0xFFFFFF,
+	                        ambient: 0x888888,
+	                        shading: THREE.SmoothShading,
+	                    });
+	                ground = new THREE.Mesh( new THREE.PlaneGeometry(1024, 1024), groundMaterial);
+
+	                if (sceneInfo.shadows) {
+		                ground.receiveShadow = true;
+	                }
+
+	                if (sceneInfo.groundPos) {
+		                ground.position.copy(sceneInfo.groundPos);
+	                }
+	                else {
+		                ground.position.z = -70;
+	                }
+	                ground.rotation.x = -Math.PI / 2;
+	                
+	                scene.add(ground);
+				}
+				
+                loader = new THREE.glTFLoader;
+                loader.useBufferGeometry = useBufferGeometry;
+                var loadStartTime = Date.now();
+                var status = document.getElementById("status");
+                status.innerHTML = "Loading...";
+                loader.load( sceneInfo.url, function(data) {
+
+                	gltf = data;
+                	
+                	var object = gltf.scene;
+                	
+                    var loadEndTime = Date.now();
+
+                    var loadTime = (loadEndTime - loadStartTime) / 1000;
+
+                    status.innerHTML = "Load time: " + loadTime.toFixed(2) + " seconds.";
+                    
+                	if (sceneInfo.cameraPos)
+                        defaultCamera.position.copy(sceneInfo.cameraPos);
+
+                	if (sceneInfo.center) {
+                        orbitControls.center.copy(sceneInfo.center);
+                	}
+                    
+                    if (sceneInfo.objectPosition) {
+                        object.position.copy(sceneInfo.objectPosition);
+
+                        if (spot1) {
+	    	                spot1.position.set(sceneInfo.objectPosition.x - 100, sceneInfo.objectPosition.y + 200, sceneInfo.objectPosition.z - 100 );
+    	                	spot1.target.position.copy(sceneInfo.objectPosition);
+                        }
+                    }
+                    
+                    if (sceneInfo.objectRotation)
+                        object.rotation.copy(sceneInfo.objectRotation);
+
+                    if (sceneInfo.objectScale)
+                        object.scale.copy(sceneInfo.objectScale);
+
+                    cameraIndex = 0;
+                    cameras = [];
+                    cameraNames = [];
+                    if (gltf.cameras && gltf.cameras.length)
+                    {
+                        var i, len = gltf.cameras.length;
+                        for (i = 0; i < len; i++)
+                        {
+                            var addCamera = true;
+                            var cameraName = gltf.cameras[i].parent.name;
+                            if (sceneInfo.cameras && !(cameraName in sceneInfo.cameras)) {
+                                    addCamera = false;
+                            }
+
+                            if (addCamera) {
+                            	cameraNames.push(cameraName);
+                            	cameras.push(gltf.cameras[i]);
+                            }
+                        }
+
+                        updateCamerasList();
+                        switchCamera(1);
+                    }
+                    else
+                    {
+                        updateCamerasList();
+                        switchCamera(0);
+                    }
+
+    				if (gltf.animations && gltf.animations.length) {
+    					var i, len = gltf.animations.length;
+	    				for (i = 0; i < len; i++) {
+	    					var animation = gltf.animations[i];
+	    					animation.loop = true;
+    						animation.play();
+	    				}
+    				}
+                                       
+                    scene.add( object );
+                    onWindowResize();
+
+                });
+
+        		orbitControls = new THREE.OrbitControls(defaultCamera, renderer.domElement);
+            }
+
+			function onWindowResize() {
+
+				defaultCamera.aspect = container.offsetWidth / container.offsetHeight;
+				defaultCamera.updateProjectionMatrix();
+				
+				var i, len = cameras.length;
+				for (i = 0; i < len; i++) // just do it for default
+				{
+					cameras[i].aspect = container.offsetWidth / container.offsetHeight;
+					cameras[i].updateProjectionMatrix();
+				}
+				
+				renderer.setSize( container.offsetWidth, container.offsetHeight );
+
+			}
+
+            function animate() {
+                requestAnimationFrame( animate );
+                THREE.glTFAnimator.update();
+                if (cameraIndex == 0)
+                    orbitControls.update();
+                render();
+            }
+
+            function render() {
+
+                renderer.render( scene, camera );
+            }
+
+            
+			
+			function onKeyPress(event) {
+				var chr = String.fromCharCode(event.keyCode);
+				if (chr == ' ')
+				{
+					index = cameraIndex + 1;
+					if (index > cameras.length)
+						index = 0;
+					switchCamera(index);
+				}
+				else {
+					var index = parseInt(chr);
+					if (!isNaN(index)  && (index <= cameras.length)) {
+						switchCamera(index);
+					}
+				}
+			}
+
+			var sceneList = 
+				[
+		             { name : "Monster", url : "./models/gltf/monster/monster.json", 
+			                 cameraPos: new THREE.Vector3(0, 1, 100), 
+			                 objectScale: new THREE.Vector3(0.01, 0.01, 0.01),
+			                 objectPosition: new THREE.Vector3(0, 0, 0),
+			                 objectRotation: new THREE.Euler(-Math.PI / 2, 0, -Math.PI / 2),
+			                 addLights:true,
+			                 shadows:true,
+			                 addGround:true },
+	                 { name : "Duck", url : "./models/gltf/duck/duck.json", 
+		                 cameraPos: new THREE.Vector3(0, 30, -50),
+		                 objectScale: new THREE.Vector3(0.1, 0.1, 0.1),
+		                 addLights:false,
+		                 addGround:false,
+		                 shadows:false },
+	                 { name : "Wine Rack", url : "./models/gltf/wine/wine.json",
+		             	 cameraPos: new THREE.Vector3(60, 30, 100), 
+		             	 objectPosition: new THREE.Vector3(-60, 0, -20),
+		             	 addLights:true },
+	                 { name : "Rambler", url : "./models/gltf/rambler/Rambler.json", 
+			      		cameraPos: new THREE.Vector3(0, 10, 50), 
+			      		objectRotation: new THREE.Euler(-Math.PI / 2, 0, 0),
+			      		objectPosition: new THREE.Vector3(0, 1, 0),
+			      		objectScale: new THREE.Vector3(0.1, 0.1, 0.1),
+			      		addLights:true,
+			      		addGround:true,
+			      		shadows:true },
+	                 { name : "Super Murdoch", url : "./models/gltf/SuperMurdoch/SuperMurdoch.json", 
+             			cameraPos: new THREE.Vector3(0, 10, 50), 
+	             		objectScale: new THREE.Vector3(0.01, 0.01, 0.01),
+             			addLights:true,
+             			addGround:true,
+             			shadows:true },
+		             
+     			];
+
+			function buildSceneList()
+			{
+				var elt = document.getElementById('scenes_list');
+				while( elt.hasChildNodes() ){
+				    elt.removeChild(elt.lastChild);
+				}
+
+				var i, len = sceneList.length;
+				for (i = 0; i < len; i++)
+				{
+					option = document.createElement("option");
+					option.text=sceneList[i].name;
+					elt.add(option);
+				}		
+			}
+			
+			function switchScene(index)
+			{
+				cleanup();
+				initScene(index);
+				var elt = document.getElementById('scenes_list');
+				elt.selectedIndex = index;
+			}
+
+			function selectScene()
+			{
+			    var select = document.getElementById("scenes_list");
+			    var index = select.selectedIndex;
+				if (index >= 0)
+				{
+					switchScene(index);
+				}
+			}
+			
+			function switchCamera(index)
+			{
+				cameraIndex = index;
+				
+				if (cameraIndex == 0) {
+					camera = defaultCamera;
+				}
+				if (cameraIndex >= 1 && cameraIndex <= cameras.length) {
+					camera = cameras[cameraIndex - 1];
+				}
+
+				var elt = document.getElementById('cameras_list');
+				elt.selectedIndex = cameraIndex;				
+			}
+					
+			function updateCamerasList() {
+				var elt = document.getElementById('cameras_list');
+				while( elt.hasChildNodes() ){
+				    elt.removeChild(elt.lastChild);
+				}
+
+				option = document.createElement("option");
+				option.text="[default]";
+				elt.add(option);
+				
+				var i, len = cameraNames.length;
+				for (i = 0; i < len; i++)
+				{
+					option = document.createElement("option");
+					option.text=cameraNames[i];
+					elt.add(option);
+				}		
+			}
+			
+			function selectCamera() {
+			    var select = document.getElementById("cameras_list");
+			    var index = select.selectedIndex;
+				if (index >= 0)
+				{
+					switchCamera(index);
+				}
+			}
+
+			function toggleAnimations() {
+				var i, len = gltf.animations.length;
+				for (i = 0; i < len; i++) {
+					var animation = gltf.animations[i];
+					if (animation.running) {
+						animation.stop();
+					}
+					else {
+						animation.play();
+					}
+				}
+			}
+
+			var usebuf = document.getElementById("buffer_geometry_checkbox");
+			var useBufferGeometry = usebuf.hasAttribute("checked");
+			function toggleBufferGeometry()
+			{
+				useBufferGeometry = !useBufferGeometry;
+				selectScene();
+			}
+			
+			function cleanup() {
+
+				if (container && renderer)
+				{
+					container.removeChild(renderer.domElement);
+				}
+
+	            cameraIndex = 0;
+				cameras = [];
+				cameraNames = [];
+				defaultCamera = null;
+				
+				if (!loader || !gltf.animations)
+					return;
+				
+				var i, len = gltf.animations.length;
+				for (i = 0; i < len; i++) {
+					var animation = gltf.animations[i];
+					if (animation.running) {
+						animation.stop();
+					}
+				}
+			}
+			
+            onload();
+        </script>
+
+    </body>
+</html>

Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно