summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.prettierignore3
-rw-r--r--.prettierrc.json3
-rw-r--r--favicon.icobin0 -> 19690 bytes
-rw-r--r--index.html37
-rw-r--r--init.js425
-rw-r--r--marker.svg59
-rw-r--r--mei/license.txt11
-rw-r--r--mei/scene.binbin0 -> 496920 bytes
-rw-r--r--mei/scene.gltf10099
-rw-r--r--mei/textures/Mei_geo_002FACE_2Material_baseColor.pngbin0 -> 665202 bytes
-rw-r--r--package-lock.json1070
-rw-r--r--package.json12
13 files changed, 11720 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c2658d7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+node_modules/
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..a746e61
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,3 @@
+*
+!index.html
+!init.js
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..c959087
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,3 @@
+{
+ "useTabs": true
+}
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 0000000..4cc0350
--- /dev/null
+++ b/favicon.ico
Binary files differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..22d9d9a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>Aschaffenburg.FUN</title>
+ <script src="init.js" type="module" defer></script>
+ <meta
+ name="viewport"
+ content="initial-scale=1,maximum-scale=1,user-scalable=no"
+ />
+ <style>
+ body {
+ margin: 0;
+ padding: 0;
+ }
+ #map {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ }
+ #reload {
+ font-size: 2em;
+ position: fixed;
+ left: 5px;
+ bottom: 5px;
+ }
+ .maplibregl-ctrl-bottom-right {
+ display: none;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="map"></div>
+ <button id="reload" onclick="location.reload()">Reload</button>
+ </body>
+</html>
diff --git a/init.js b/init.js
new file mode 100644
index 0000000..3b3c884
--- /dev/null
+++ b/init.js
@@ -0,0 +1,425 @@
+import * as THREE from "three";
+import maplibregl from "maplibre-gl";
+import "maplibre-gl/dist/maplibre-gl.css";
+import { GLTFLoader } from "three/addons/loaders/GLTFLoader.js";
+import { SVGLoader } from "three/addons/loaders/SVGLoader.js";
+import * as SunCalc from "suncalc";
+import { vec3, mat4 } from "gl-matrix";
+
+let target;
+
+// if something fishy happens to the local storage, errors or load could render the game unplayable
+// use try-catch to prevent this
+try {
+ target = JSON.parse(localStorage.getItem("position"));
+} catch {}
+target = target || { lng: 9.142202119898826, lat: 49.97692244755174 };
+
+const map = new maplibregl.Map({
+ container: "map",
+ center: target,
+ minZoom: 16,
+ maxZoom: 21,
+ zoom: 20,
+ pitch: 45,
+ minPitch: 1,
+ antialias: true,
+ dragPan: false,
+ scrollZoom: { around: "center" },
+ touchZoomRotate: { around: "center" },
+ doubleClickZoom: false,
+ // key leakage is part of maptiler's ecosystem *shrug*
+ // their "fix" is to allow restricting keys to certain 'Origin' headers ("pinky promise uwu")
+ // honestly api keys are cringe anyway
+ style:
+ "https://api.maptiler.com/maps/streets/style.json?key=DOnvuOySyPyQM83lAx0a",
+ /*{
+ version: 8,
+ sources: {
+ osm: {
+ type: "raster",
+ tiles: ["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png"],
+ tileSize: 256,
+ maxzoom: 20,
+ },
+ },
+ layers: [
+ {
+ id: "osm",
+ type: "raster",
+ source: "osm",
+ },
+ ],
+ },*/
+});
+
+// hack. otherwise, zooming/rotating won't work while moving
+map.stop = () => {};
+
+// https://github.com/maplibre/maplibre-gl-js/discussions/1521
+map.getCameraPosition = () => {
+ const pitch = map.transform._pitch;
+ const altitude = Math.cos(pitch) * map.transform.cameraToCenterDistance;
+ const latOffset = Math.tan(pitch) * map.transform.cameraToCenterDistance;
+ const latPosPointInPixels = map.transform.centerPoint.add(
+ new maplibregl.Point(0, latOffset),
+ );
+ const latLong = map.transform.pointLocation(latPosPointInPixels);
+ const verticalScaleConstant =
+ map.transform.worldSize /
+ (2 * Math.PI * 6378137 * Math.abs(Math.cos(latLong.lat * (Math.PI / 180))));
+ const altitudeInMeters = altitude / verticalScaleConstant;
+ return {
+ lng: latLong.lng,
+ lat: latLong.lat,
+ altitude: altitudeInMeters,
+ pitch: (pitch * 180) / Math.PI,
+ };
+};
+
+const clamp = (min, max, x) => Math.min(max, Math.max(min, x));
+
+const camera = new THREE.PerspectiveCamera();
+const scene = new THREE.Scene();
+
+const marker = new THREE.Group();
+
+new SVGLoader().load("marker.svg", (data) => {
+ const material = new THREE.MeshBasicMaterial({
+ color: new THREE.Color(0),
+ side: THREE.DoubleSide,
+ depthWrite: true,
+ transparent: false,
+ });
+
+ for (const shape of data.paths.flatMap(SVGLoader.createShapes)) {
+ const geometry = new THREE.ShapeGeometry(shape);
+ const mesh = new THREE.Mesh(geometry, material);
+ mesh.scale.setScalar(1 / 1792);
+ mesh.position.set(-0.5, (1536 - 118.237) / 1792, 0);
+ //mesh.position.set(-0.5, 0, (1536 - 118.237) / 1792);
+ mesh.rotateX(Math.PI);
+ //mesh.rotateX(-Math.PI/2);
+ marker.add(mesh);
+ }
+
+ marker.scale.setScalar(50);
+ //marker.on("click", console.log);
+ //scene.add(marker);
+});
+
+const mapToMerc = maplibregl.MercatorCoordinate.fromLngLat;
+
+const mercToThree = (pos, center = mapToMerc(map.getCenter(), 0)) => {
+ return new THREE.Vector3(
+ pos.x - center.x,
+ pos.z - center.z,
+ pos.y - center.y,
+ ).divideScalar(center.meterInMercatorCoordinateUnits());
+};
+
+const mapToThree = (lngLat, altitude) => {
+ return mercToThree(mapToMerc(lngLat, altitude));
+};
+
+/*new THREE.FBXLoader().load(
+ "raphtalia.fbx",
+ ((model) => {
+ model.traverse((child) => {
+ if (child.isMesh) {
+ // child.material.color = new THREE.Color(0xffffff);
+ // delete child.material.color;
+ (child.material.isMaterial ? [child.material] : child.material)
+ .forEach(m => {
+ m.castShadow = true;
+ })
+
+ child.castShadow = true;
+ }
+ });
+ this.scene.add(model);
+ player = model;
+ update(target);
+ }).bind(this)
+);*/
+
+const enableShadow = (model) => {
+ model.traverse((child) => {
+ if (child.isMesh) {
+ (child.material.isMaterial ? [child.material] : child.material).forEach(
+ (m) => {
+ m.castShadow = true;
+ },
+ );
+
+ child.castShadow = true;
+ }
+ });
+};
+
+let player;
+{
+ const path = "mei/"; // jasper/
+ const scale = 3.0; // 1.5
+
+ new GLTFLoader()
+ .setPath(path)
+ .setResourcePath(path)
+ .load("scene.gltf", (gltf) => {
+ player = gltf;
+
+ enableShadow(player.scene);
+ player.scene.scale.setScalar(scale);
+
+ player.clock = new THREE.Clock();
+ player.mixer = new THREE.AnimationMixer(player.scene);
+ player.walk = player.mixer.clipAction(player.animations[0]);
+
+ scene.add(player.scene);
+ });
+}
+
+// shadow plane
+{
+ const geometry = new THREE.PlaneGeometry(60, 60);
+ geometry.lookAt(new THREE.Vector3(0, 1, 0));
+
+ const material = new THREE.ShadowMaterial();
+ material.opacity = 0.3;
+
+ const plane = new THREE.Mesh(geometry, material);
+ plane.receiveShadow = true;
+ // plane.position.set(0, 0, 0.01);
+ scene.add(plane);
+}
+
+// animated circle around player
+{
+ const geometry = new THREE.CircleGeometry(7, 64);
+ geometry.lookAt(new THREE.Vector3(0, 1, 0));
+
+ const material = new THREE.MeshBasicMaterial({ color: 0xbebab6 });
+ material.transparent = true;
+
+ const circle = new THREE.Mesh(geometry, material);
+ circle.position.set(0, 0.01, 0);
+ scene.add(circle);
+
+ const clock = new THREE.Clock();
+
+ let t = 0.0;
+ const animate = () => {
+ const ph = [0.75, 0.9, 1.25];
+ t = (t + (clock.getDelta() * ph[2]) / 5) % ph[2];
+
+ const rlerp = (min, max, x) => clamp(0, 1, (x - min) / (max - min));
+ const pow = Math.pow;
+
+ circle.scale.setScalar(pow(rlerp(ph[0], ph[1], t), 2.0));
+ material.opacity = pow(1 - rlerp(ph[1], ph[2], t), 2.0) * 0.8;
+
+ requestAnimationFrame(animate);
+ };
+
+ animate();
+}
+
+class Celestial extends THREE.DirectionalLight {
+ constructor(color, intensity, positionFunc) {
+ super(color, intensity);
+
+ this.castShadow = true;
+ this.shadow.mapSize.width = 1024;
+ this.shadow.mapSize.height = 1024;
+
+ const frustumSize = 15;
+ this.shadow.camera = new THREE.OrthographicCamera(
+ -frustumSize / 2,
+ frustumSize / 2,
+ frustumSize / 2,
+ -frustumSize / 2,
+ 1,
+ 50,
+ );
+
+ this.positionFunc = positionFunc;
+ this.update();
+
+ //scene.add(new THREE.CameraHelper(this.shadow.camera));
+ scene.add(this);
+
+ this.time = 23;
+ addEventListener(
+ "keypress",
+ ((evt) => {
+ switch (evt.key) {
+ case "h":
+ this.time += 1;
+ break;
+ case "l":
+ this.time -= 1;
+ break;
+ default:
+ return;
+ }
+ evt.preventDefault();
+ }).bind(this),
+ );
+ }
+
+ update() {
+ const pos = map.getCenter();
+ const p = this.positionFunc(
+ new Date(this.time * 1000 * 60 * 10),
+ pos.lat,
+ pos.lng,
+ );
+
+ p.altitude = (p.altitude + Math.PI * 2) % (Math.PI * 2);
+ this.visible =
+ p.altitude > Math.PI * 0.05 && p.altitude < Math.PI * (1 - 0.05);
+
+ this.position
+ .set(1, 0, 0)
+ .applyEuler(new THREE.Euler(0, p.altitude, p.azimuth))
+ .multiplyScalar(5);
+
+ this.shadow.camera.position.copy(this.position);
+ this.shadow.camera.lookAt(scene.position);
+ }
+}
+
+scene.add(new THREE.AmbientLight(0xffffff, 0.8));
+
+const sun = new Celestial(0xffffff, 0.4, SunCalc.getPosition);
+// const moon = new Celestial(0x506886, 0.4, SunCalc.getMoonPosition);
+
+setInterval(() => {
+ sun.update();
+ // moon.update();
+}, 10);
+
+const renderer = new THREE.WebGLRenderer({
+ canvas: map.getCanvas(),
+ context: map.painter.context.gl,
+ antialias: true,
+});
+renderer.shadowMap.enabled = true;
+// renderer.shadowMap.type = THREE.PCFSoftShadowMap;
+renderer.autoClear = false;
+
+const info = document.body.appendChild(document.createElement("span"));
+info.style.position = "absolute";
+info.style.zIndex = 5;
+info.style.color = "green";
+
+const render = (gl, mercViewProj) => {
+ if (player) player.mixer.update(player.clock.getDelta());
+
+ const camMap = map.getCameraPosition();
+ const camMerc = mapToMerc(camMap, camMap.altitude);
+ const cam = mercToThree(camMerc);
+
+ const mercViewProjI = mat4.invert([], mercViewProj);
+
+ const depthNCDtoThree = (depth) => {
+ const [x, y, z] = vec3.transformMat4([], [0, 0, depth], mercViewProjI);
+ return mercToThree({ x, y, z }, camMerc).length();
+ };
+
+ camera.aspect = innerWidth / innerHeight;
+ camera.fov = map.transform.fov;
+ camera.near = depthNCDtoThree(-1);
+ camera.far = depthNCDtoThree(+1);
+ camera.updateProjectionMatrix();
+
+ camera.position.copy(cam);
+ camera.lookAt(scene.position);
+
+ cam.y = 0;
+ marker.lookAt(cam);
+
+ renderer.resetState();
+ renderer.render(scene, camera);
+ map.triggerRepaint();
+};
+
+map.on("style.load", () => {
+ map.addLayer(
+ {
+ id: "3d-model",
+ type: "custom",
+ renderingMode: "3d",
+ render,
+ },
+ "building-3d",
+ );
+});
+
+addEventListener("resize", () => {
+ renderer.setSize(innerWidth, innerHeight);
+});
+
+let playerAnimDuration = 0;
+{
+ const clock = new THREE.Clock();
+
+ const animate = () => {
+ requestAnimationFrame(animate);
+
+ const dt = clock.getDelta();
+
+ if (playerAnimDuration <= 0) return;
+
+ const lerp = (a, b, x) => a * (1 - x) + b * x;
+ const x = Math.min(dt / playerAnimDuration, 1);
+
+ const center = map.getCenter();
+ center.lng = lerp(center.lng, target.lng, x);
+ center.lat = lerp(center.lat, target.lat, x);
+
+ playerAnimDuration -= dt;
+
+ if (playerAnimDuration <= 0) player.walk.stop();
+
+ map.setCenter(center);
+ };
+
+ animate();
+}
+
+const clock = new THREE.Clock();
+clock.getDelta();
+
+const setTarget = (pos) => {
+ const dt = clock.getDelta();
+
+ if (player) {
+ player.scene.lookAt(mapToThree(pos));
+ player.walk.play();
+ }
+
+ playerAnimDuration = Math.min(dt, 1.5);
+ localStorage.setItem("position", JSON.stringify((target = pos)));
+};
+
+const watchGeo = navigator.geolocation.watchPosition(
+ ({ coords: { longitude: lng, latitude: lat } }) => {
+ const pos = { lng, lat };
+ setTarget(pos);
+ },
+ (err) => {
+ // todo: err.message;
+ navigator.geolocation.clearWatch(watchGeo);
+
+ const click = (evt) => {
+ setTarget(evt.lngLat);
+ };
+
+ map.on("click", click);
+ map.on("touched", click);
+ },
+ {
+ enableHighAccuracy: true,
+ },
+);
diff --git a/marker.svg b/marker.svg
new file mode 100644
index 0000000..70ebad3
--- /dev/null
+++ b/marker.svg
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ viewBox="0 -256 1792 1792"
+ id="svg3025"
+ version="1.1"
+ inkscape:version="0.48.3.1 r9886"
+ width="100%"
+ height="100%"
+ sodipodi:docname="map_marker_font_awesome.svg">
+ <metadata
+ id="metadata3035">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs3033" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview3031"
+ showgrid="false"
+ inkscape:zoom="0.13169643"
+ inkscape:cx="896"
+ inkscape:cy="896"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg3025" />
+ <g
+ transform="matrix(1,0,0,-1,364.47458,1270.2373)"
+ id="g3027">
+ <path
+ d="m 768,896 q 0,106 -75,181 -75,75 -181,75 -106,0 -181,-75 -75,-75 -75,-181 0,-106 75,-181 75,-75 181,-75 106,0 181,75 75,75 75,181 z m 256,0 q 0,-109 -33,-179 L 627,-57 q -16,-33 -47.5,-52 -31.5,-19 -67.5,-19 -36,0 -67.5,19 Q 413,-90 398,-57 L 33,717 Q 0,787 0,896 q 0,212 150,362 150,150 362,150 212,0 362,-150 150,-150 150,-362 z"
+ id="path3029"
+ inkscape:connector-curvature="0"
+ style="fill:currentColor" />
+ </g>
+</svg>
diff --git a/mei/license.txt b/mei/license.txt
new file mode 100644
index 0000000..e9931d1
--- /dev/null
+++ b/mei/license.txt
@@ -0,0 +1,11 @@
+Model Information:
+* title: Mei Walking
+* source: https://sketchfab.com/3d-models/mei-walking-8d862ec1bcc9474eb52da4f3cb3e928f
+* author: dhannujhaveri (https://sketchfab.com/dhannujhaveri)
+
+Model License:
+* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)
+* requirements: Author must be credited. Commercial use is allowed.
+
+If you use this 3D model in your project be sure to copy paste this credit wherever you share it:
+This work is based on "Mei Walking" (https://sketchfab.com/3d-models/mei-walking-8d862ec1bcc9474eb52da4f3cb3e928f) by dhannujhaveri (https://sketchfab.com/dhannujhaveri) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) \ No newline at end of file
diff --git a/mei/scene.bin b/mei/scene.bin
new file mode 100644
index 0000000..f02fade
--- /dev/null
+++ b/mei/scene.bin
Binary files differ
diff --git a/mei/scene.gltf b/mei/scene.gltf
new file mode 100644
index 0000000..7a0c9d8
--- /dev/null
+++ b/mei/scene.gltf
@@ -0,0 +1,10099 @@
+{
+ "accessors": [
+ {
+ "bufferView": 3,
+ "componentType": 5126,
+ "count": 3551,
+ "max": [
+ 62.84711456298828,
+ 164.39430236816406,
+ 29.299951553344727
+ ],
+ "min": [
+ -63.23836135864258,
+ -0.3012034595012665,
+ -46.24001693725586
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 3,
+ "byteOffset": 42612,
+ "componentType": 5126,
+ "count": 3551,
+ "max": [
+ 0.9995927810668945,
+ 0.9998764991760254,
+ 0.9999999403953552
+ ],
+ "min": [
+ -0.9996064305305481,
+ -1.0,
+ -0.9999935626983643
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "componentType": 5126,
+ "count": 3551,
+ "max": [
+ 1.3235790729522705,
+ 0.9878465533256531
+ ],
+ "min": [
+ 0.017587613314390182,
+ 0.01656542904675007
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 1,
+ "componentType": 5125,
+ "count": 13800,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 5,
+ "componentType": 5126,
+ "count": 107,
+ "max": [
+ 1.0,
+ 1.0,
+ 0.694087028503418,
+ 0.0,
+ 0.22794537246227264,
+ 1.0,
+ 0.9871019124984741,
+ 0.0,
+ 0.9999961853027344,
+ 0.9935217499732971,
+ 1.0,
+ 0.0,
+ 42.319705963134766,
+ 137.18212890625,
+ 101.19017791748047,
+ 1.0
+ ],
+ "min": [
+ -0.9999755620956421,
+ -1.0,
+ -0.33572763204574585,
+ 0.0,
+ -0.22794537246227264,
+ -0.9999685883522034,
+ -0.9999975562095642,
+ 0.0,
+ -0.9999913573265076,
+ -0.14270533621311188,
+ -0.71954745054245,
+ 0.0,
+ -42.701602935791016,
+ -137.1799774169922,
+ -5.584784984588623,
+ 1.0
+ ],
+ "type": "MAT4"
+ },
+ {
+ "bufferView": 0,
+ "componentType": 5123,
+ "count": 3551,
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 4,
+ "componentType": 5126,
+ "count": 3551,
+ "max": [
+ 1.0,
+ 0.4998532831668854,
+ 0.29733890295028687,
+ 0.2156827449798584
+ ],
+ "min": [
+ 0.30826014280319214,
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 7.216449660063518e-16,
+ 53.3917236328125,
+ -21.63069725036621
+ ],
+ "min": [
+ -8.881784197001252e-16,
+ 53.3917236328125,
+ -21.63069725036621
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 292,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.0408340855860843e-17,
+ 5.204170427930421e-18,
+ 2.520770051028798e-18,
+ 1.0
+ ],
+ "min": [
+ -2.0816681711721685e-17,
+ -6.938893903907228e-18,
+ -3.144186300207963e-18,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 584,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 876,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.10122062579876e-08,
+ 5.740715980529785,
+ 1.2521814107894897
+ ],
+ "min": [
+ 6.983906342128421e-09,
+ 5.106605529785156,
+ 1.1698811054229736
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 876,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 1168,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.08639582991600037,
+ 5.220562666129385e-18,
+ 2.4748358844331156e-18,
+ 0.9990943074226379
+ ],
+ "min": [
+ 0.042550522834062576,
+ -6.98660320009745e-18,
+ -3.1832015145699452e-18,
+ 0.9962608814239502
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 1168,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 1752,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 40.01419448852539,
+ 34.17704391479492,
+ -5.328315734863281
+ ],
+ "min": [
+ 34.863807678222656,
+ 19.777137756347656,
+ -7.102631092071533
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 1460,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 2336,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.15140590071678162,
+ 0.7138849496841431,
+ 0.17986956238746643,
+ 0.7338433265686035
+ ],
+ "min": [
+ -0.005994562990963459,
+ 0.6557234525680542,
+ -0.3058067560195923,
+ 0.629865288734436
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 1752,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 2628,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -32.828243255615234,
+ 35.865909576416016,
+ -5.696815490722656
+ ],
+ "min": [
+ -39.315677642822266,
+ 20.12215232849121,
+ -7.924128532409668
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 2044,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 3504,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.7804086804389954,
+ 0.35167285799980164,
+ 0.6769676208496094,
+ 0.038470182567834854
+ ],
+ "min": [
+ 0.6460750102996826,
+ -0.23457418382167816,
+ 0.5847077369689941,
+ -0.05411389470100403
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 2336,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 3504,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 8.881784197001252e-16,
+ 3.8477859497070313,
+ -1.5588610172271729
+ ],
+ "min": [
+ -1.7763568394002505e-15,
+ 3.8477859497070313,
+ -1.5588610172271729
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 2616,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 4672,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.29380881786346436,
+ 0.04624968394637108,
+ 0.02630978263914585,
+ 0.9556751847267151
+ ],
+ "min": [
+ -0.3529415428638458,
+ -0.05805787444114685,
+ -0.033022262156009674,
+ 0.9352744221687317
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 2908,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 4344,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.7763568394002505e-15,
+ 10.852775573730469,
+ -6.181993938980668e-08
+ ],
+ "min": [
+ -1.3322676295501878e-15,
+ 10.852775573730469,
+ -6.181996781151611e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 3200,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 5840,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0031926746014505625,
+ 2.0816575832603278e-17,
+ 1.7302838321931125e-17,
+ 0.9999948740005493
+ ],
+ "min": [
+ -0.0031926746014505625,
+ -1.3933101375375878e-17,
+ -1.3922023772612568e-17,
+ 0.9999948740005493
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 3492,
+ "componentType": 5126,
+ "count": 61,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 5220,
+ "componentType": 5126,
+ "count": 61,
+ "max": [
+ 0.023518025875091553,
+ 2.0926527976989746,
+ -6.555723075507558e-09
+ ],
+ "min": [
+ 0.023518025875091553,
+ 2.0926527976989746,
+ -6.555779918926419e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 3736,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 7008,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -2.0383328802608958e-08,
+ 8.326672684688674e-17,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -2.0383328802608958e-08,
+ -8.326672684688674e-17,
+ -5.551115123125783e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 4028,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 5952,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ -0.43090179562568665,
+ 2.4385557174682617,
+ -2.5788182256292203e-08
+ ],
+ "min": [
+ -0.43090179562568665,
+ 2.4385557174682617,
+ -2.5788239099711063e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 4308,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 8176,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0009890526998788118,
+ 0.005882051307708025,
+ 0.00833671260625124,
+ 0.9999818801879883
+ ],
+ "min": [
+ -0.0022559857461601496,
+ 0.005521527025848627,
+ -0.21134480834007263,
+ 0.977393388748169
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 4600,
+ "componentType": 5126,
+ "count": 62,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 6792,
+ "componentType": 5126,
+ "count": 62,
+ "max": [
+ 0.4073832035064697,
+ 2.084235668182373,
+ 2.3665904791414505e-09
+ ],
+ "min": [
+ 0.4073832035064697,
+ 2.084235668182373,
+ 2.36656205743202e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 4848,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 9344,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.12726257741451263,
+ -0.039936792105436325,
+ -0.0546211414039135,
+ 0.9885867238044739
+ ],
+ "min": [
+ -0.13471850752830505,
+ -0.059304412454366684,
+ -0.19933298230171204,
+ 0.9698053002357483
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 5140,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 10512,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.10267673432826996,
+ 0.003580318996682763,
+ 0.492496520280838,
+ 0.8918843865394592
+ ],
+ "min": [
+ 0.08703984320163727,
+ -0.01612258516252041,
+ 0.44379445910453796,
+ 0.8640860915184021
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 5432,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 7536,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 0.012543875724077225,
+ 1.2999814748764038,
+ 5.978526473882084e-08
+ ],
+ "min": [
+ 0.012543875724077225,
+ 1.2999814748764038,
+ 5.978523631711141e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 5696,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 11680,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 6.830302989868642e-09,
+ 1.1102230246251565e-16,
+ -5.551115123125783e-17,
+ 1.0
+ ],
+ "min": [
+ 6.830302989868642e-09,
+ -1.1102230246251565e-16,
+ -2.3592239273284576e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 5988,
+ "componentType": 5126,
+ "count": 65,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 8328,
+ "componentType": 5126,
+ "count": 65,
+ "max": [
+ 0.012180538848042488,
+ 1.8475908041000366,
+ -1.0481784329385846e-08
+ ],
+ "min": [
+ 0.012180538848042488,
+ 1.8475908041000366,
+ -1.0481826961949992e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 6248,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 12848,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.04975474253296852,
+ 0.0007327565108425915,
+ 0.0016320665599778295,
+ 0.9987599849700928
+ ],
+ "min": [
+ -0.18963105976581573,
+ 0.0005084250587970018,
+ 0.001544410944916308,
+ 0.9818539023399353
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 6540,
+ "componentType": 5126,
+ "count": 63,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 9108,
+ "componentType": 5126,
+ "count": 63,
+ "max": [
+ -0.024724427610635757,
+ 1.7317616939544678,
+ 4.16081036291871e-09
+ ],
+ "min": [
+ -0.024724427610635757,
+ 1.7317616939544678,
+ 4.160767730354564e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 6792,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 14016,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.04975626617670059,
+ -0.0010059246560558677,
+ 0.010394991375505924,
+ 0.9987067580223083
+ ],
+ "min": [
+ -0.1896250993013382,
+ -0.002456898568198085,
+ 0.010150437243282795,
+ 0.9818010330200195
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 7084,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 15184,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.05318975821137428,
+ -0.016942743211984634,
+ 0.15304890275001526,
+ 0.9866406917572021
+ ],
+ "min": [
+ -0.19132868945598602,
+ -0.038284748792648315,
+ 0.1491485834121704,
+ 0.9693720936775208
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 7376,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 9864,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 0.010178402997553349,
+ 1.2224982976913452,
+ 5.725880214413337e-09
+ ],
+ "min": [
+ 0.010178402997553349,
+ 1.2224982976913452,
+ 5.7258517927039065e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 7652,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 16352,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -5.045029727313022e-09,
+ 1.6653345369377348e-16,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -5.045029727313022e-09,
+ -1.1102230246251565e-16,
+ -1.1102230246251565e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 7944,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 10692,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 0.00029350799741223454,
+ 1.8321508169174194,
+ 1.3056506986686145e-08
+ ],
+ "min": [
+ 0.00029350799741223454,
+ 1.8321508169174194,
+ 1.3056478564976715e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 8224,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 17520,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.049757517874240875,
+ 0.0005570096545852721,
+ 0.004160005133599043,
+ 0.9987526535987854
+ ],
+ "min": [
+ -0.18963277339935303,
+ -2.7925920221605338e-05,
+ 0.004122588783502579,
+ 0.981846272945404
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 8516,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 11532,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ -0.010471895337104797,
+ 1.7958145141601563,
+ -9.767961728357477e-08
+ ],
+ "min": [
+ -0.010471895337104797,
+ 1.7958145141601563,
+ -9.76796457052842e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 8772,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 18688,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.04976097494363785,
+ -0.00023947461158968508,
+ 0.002997194416821003,
+ 0.9987566471099854
+ ],
+ "min": [
+ -0.18963675200939178,
+ -0.0006583366775885224,
+ 0.0029337883461266756,
+ 0.981849730014801
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 9064,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 19856,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.05347029119729996,
+ -0.003250580281019211,
+ 0.08877146244049072,
+ 0.9946104884147644
+ ],
+ "min": [
+ -0.19272653758525848,
+ -0.015694651752710342,
+ 0.08743350207805634,
+ 0.9772233963012695
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 9356,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 12300,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ -0.006664051674306393,
+ 1.0190144777297974,
+ -3.966279393807781e-08
+ ],
+ "min": [
+ -0.006664051674306393,
+ 1.0190144777297974,
+ -3.966282235978724e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 9640,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 21024,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -7.145399383290396e-09,
+ 8.326672684688674e-17,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -7.145399383290396e-09,
+ -8.326672684688674e-17,
+ -1.6653345369377348e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 9932,
+ "componentType": 5126,
+ "count": 60,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 13152,
+ "componentType": 5126,
+ "count": 60,
+ "max": [
+ 0.006002799607813358,
+ 1.7070767879486084,
+ -1.27617866496621e-07
+ ],
+ "min": [
+ 0.006002799607813358,
+ 1.7070767879486084,
+ -1.2761790912918514e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 10172,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 22192,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.04976028949022293,
+ 0.0007103998214006424,
+ -0.005000879522413015,
+ 0.9987484216690063
+ ],
+ "min": [
+ -0.18963494896888733,
+ 5.027691827308445e-07,
+ -0.005051085259765387,
+ 0.9818416833877563
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 10464,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 13872,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 0.0006612433353438973,
+ 1.7508594989776611,
+ 4.0119317645803676e-08
+ ],
+ "min": [
+ 0.0006612433353438973,
+ 1.7508594989776611,
+ 4.011927501323953e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 10728,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 23360,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.049761053174734116,
+ -8.1817721365951e-05,
+ 0.0015553721459582448,
+ 0.998759925365448
+ ],
+ "min": [
+ -0.18963730335235596,
+ -0.0002996045514009893,
+ 0.0015284351538866758,
+ 0.9818529486656189
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 11020,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 24528,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.05389966443181038,
+ 0.001279240706935525,
+ 0.02837611734867096,
+ 0.9981430768966675
+ ],
+ "min": [
+ -0.19364814460277557,
+ -0.0027175387367606163,
+ 0.028245912864804268,
+ 0.9806605577468872
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 11312,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 14664,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ -0.03321589156985283,
+ 1.1413064002990723,
+ -1.4293277672550175e-10
+ ],
+ "min": [
+ -0.03321589156985283,
+ 1.1413064002990723,
+ -1.4296119843493216e-10
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 11592,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 25696,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -2.4613419635777234e-10,
+ 5.551115123125783e-17,
+ 6.938893903907228e-17,
+ 1.0
+ ],
+ "min": [
+ -2.4613441840237726e-10,
+ -1.1102230246251565e-16,
+ -1.1102230246251565e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 11884,
+ "componentType": 5126,
+ "count": 68,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 15504,
+ "componentType": 5126,
+ "count": 68,
+ "max": [
+ 0.0020013966131955385,
+ 1.5704317092895508,
+ 1.0405841521787806e-08
+ ],
+ "min": [
+ 0.0020013966131955385,
+ 1.5704317092895508,
+ 1.0405813100078376e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 12156,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 26864,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.049733489751815796,
+ 0.001321815769188106,
+ -0.015202098526060581,
+ 0.9986459612846375
+ ],
+ "min": [
+ -0.18959400057792664,
+ -0.0008278746390715241,
+ -0.015259245410561562,
+ 0.9817439913749695
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 12448,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 16320,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ 0.031214429065585136,
+ 1.7794663906097412,
+ -8.801225703791715e-08
+ ],
+ "min": [
+ 0.031214429065585136,
+ 1.7794663906097412,
+ -8.80122996704813e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 12704,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 28032,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0497555248439312,
+ 0.002003199653699994,
+ -0.007892059162259102,
+ 0.9987282156944275
+ ],
+ "min": [
+ -0.18962737917900085,
+ 0.0008741314522922039,
+ -0.008095264434814453,
+ 0.9818223714828491
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 12996,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 29200,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.05438151955604553,
+ 0.009108207188546658,
+ -0.02293190360069275,
+ 0.9982153177261353
+ ],
+ "min": [
+ -0.1941353678703308,
+ 0.00579485110938549,
+ -0.02398439683020115,
+ 0.9806643724441528
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 13288,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 17088,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 9.06764796582138e-09,
+ 15.437748908996582,
+ -4.6585469704041316e-08
+ ],
+ "min": [
+ 9.067633754966664e-09,
+ 15.437748908996582,
+ -4.6585526547460177e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 13568,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 30368,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.12460372596979141,
+ 0.30039459466934204,
+ 0.12116658687591553,
+ 0.9712077975273132
+ ],
+ "min": [
+ -0.16378068923950195,
+ 0.18163999915122986,
+ -0.2574635446071625,
+ 0.9211103320121765
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 13860,
+ "componentType": 5126,
+ "count": 50,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 17928,
+ "componentType": 5126,
+ "count": 50,
+ "max": [
+ 1.834806653278065e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "min": [
+ 1.8348063690609706e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 14060,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 31536,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.007677549030631781,
+ -0.033207036554813385,
+ 0.26304861903190613,
+ 0.999250054359436
+ ],
+ "min": [
+ -4.396758868097095e-07,
+ -0.038721680641174316,
+ -2.715519485718687e-06,
+ 0.9641803503036499
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 14352,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 18528,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.3291236434251914e-09,
+ 11.624507904052734,
+ 2.2510035080358648e-07
+ ],
+ "min": [
+ -3.3291414069935854e-09,
+ 11.624507904052734,
+ 2.2510029396016762e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 14644,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 32704,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.1444971263408661,
+ -0.1301606297492981,
+ -0.09070271253585815,
+ 0.9817249774932861
+ ],
+ "min": [
+ -0.002930024638772011,
+ -0.2087983638048172,
+ -0.20343109965324402,
+ 0.9571341872215271
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 14936,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 19404,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 9.067655071248737e-09,
+ 15.437748908996582,
+ -4.6585469704041316e-08
+ ],
+ "min": [
+ 9.067630202252985e-09,
+ 15.437748908996582,
+ -4.6585526547460177e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 15228,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 33872,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.010546410456299782,
+ -0.0987684428691864,
+ -0.06700275093317032,
+ 0.9927961230278015
+ ],
+ "min": [
+ 0.010546410456299782,
+ -0.0987684428691864,
+ -0.06700275093317032,
+ 0.9927961230278015
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 15520,
+ "componentType": 5126,
+ "count": 55,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 20280,
+ "componentType": 5126,
+ "count": 55,
+ "max": [
+ 1.834806653278065e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "min": [
+ 1.8348063690609706e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 15740,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 35040,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4874010705389082e-05,
+ 0.0006663607782684267,
+ 0.008721617050468922,
+ 0.9999617338180542
+ ],
+ "min": [
+ 2.4874010705389082e-05,
+ 0.0006663607782684267,
+ 0.008721617050468922,
+ 0.9999617338180542
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 16032,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 20940,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.3291236434251914e-09,
+ 11.624507904052734,
+ 2.2510035080358648e-07
+ ],
+ "min": [
+ -3.3291414069935854e-09,
+ 11.624507904052734,
+ 2.2510029396016762e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 16324,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 36208,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.062085770070552826,
+ 0.08686311542987823,
+ -0.006814987864345312,
+ 0.9942603707313538
+ ],
+ "min": [
+ -0.062085770070552826,
+ 0.08686311542987823,
+ -0.006814987864345312,
+ 0.9942603707313538
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 16616,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 21816,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 9.06764796582138e-09,
+ 15.437748908996582,
+ -4.6585469704041316e-08
+ ],
+ "min": [
+ 9.067633754966664e-09,
+ 15.437748908996582,
+ -4.658551233660546e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 16900,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 37376,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.12460372596979141,
+ 0.30039459466934204,
+ 0.12116658687591553,
+ 0.9712077975273132
+ ],
+ "min": [
+ -0.16378068923950195,
+ 0.18163999915122986,
+ -0.2574635446071625,
+ 0.9211103320121765
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 17192,
+ "componentType": 5126,
+ "count": 50,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 22668,
+ "componentType": 5126,
+ "count": 50,
+ "max": [
+ 1.834806653278065e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "min": [
+ 1.8348063690609706e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 17392,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 38544,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.007677549496293068,
+ -0.03320703282952309,
+ 0.26304861903190613,
+ 0.999250054359436
+ ],
+ "min": [
+ -4.399772706165095e-07,
+ -0.03872167691588402,
+ -2.715507662287564e-06,
+ 0.9641803503036499
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 17684,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 23268,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.3291236434251914e-09,
+ 11.624507904052734,
+ 2.2510035080358648e-07
+ ],
+ "min": [
+ -3.3291414069935854e-09,
+ 11.624507904052734,
+ 2.2510029396016762e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 17976,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 39712,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.1444971263408661,
+ -0.1301606297492981,
+ -0.09070271253585815,
+ 0.9817249774932861
+ ],
+ "min": [
+ -0.002930024405941367,
+ -0.2087983638048172,
+ -0.20343109965324402,
+ 0.9571341872215271
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 18268,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 40880,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.2662123739719391,
+ -0.5729143023490906,
+ 0.6745321154594421,
+ -0.3384607434272766
+ ],
+ "min": [
+ -0.3348235785961151,
+ -0.5996513366699219,
+ 0.6089544296264648,
+ -0.4345536231994629
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 18560,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 24144,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 0.02789994515478611,
+ 2.0620369911193848,
+ -3.002644177740876e-08
+ ],
+ "min": [
+ 0.02789994515478611,
+ 2.0620369911193848,
+ -3.0026470199118194e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 18824,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 42048,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.2469779875345921e-08,
+ 2.7755575615628914e-17,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -1.2469779875345921e-08,
+ -8.326672684688674e-17,
+ -8.326672684688674e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 19116,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 24936,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 0.4705868661403656,
+ 2.4418108463287354,
+ -1.017406603409654e-07
+ ],
+ "min": [
+ 0.4705868661403656,
+ 2.4418108463287354,
+ -1.0174069586810219e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 19404,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 43216,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0023616612888872623,
+ -0.00731058232486248,
+ 0.2666304111480713,
+ 0.994644820690155
+ ],
+ "min": [
+ -0.003624856937676668,
+ -0.007810681592673063,
+ 0.10302978754043579,
+ 0.9637643098831177
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 19696,
+ "componentType": 5126,
+ "count": 65,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 25800,
+ "componentType": 5126,
+ "count": 65,
+ "max": [
+ -0.49848684668540955,
+ 2.1517062187194824,
+ 7.536692692156066e-08
+ ],
+ "min": [
+ -0.49848684668540955,
+ 2.1517062187194824,
+ 7.536688428899652e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 19956,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 44384,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.15357200801372528,
+ 0.10118107497692108,
+ 0.19348645210266113,
+ 0.9792198538780212
+ ],
+ "min": [
+ -0.16425591707229614,
+ 0.08346832543611526,
+ 0.08547835797071457,
+ 0.9636472463607788
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 20248,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 45552,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.05457469820976257,
+ 0.012805408798158169,
+ -0.4960142970085144,
+ 0.8671155571937561
+ ],
+ "min": [
+ 0.04537263512611389,
+ -0.004662028979510069,
+ -0.5316444039344788,
+ 0.8451105952262878
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 20540,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 26580,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ -0.0003943575138691813,
+ 1.2846384048461914,
+ 2.660571851720306e-08
+ ],
+ "min": [
+ -0.0003943575138691813,
+ 1.2846384048461914,
+ 2.6605690095493628e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 20824,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 46720,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.0186484544760788e-08,
+ 1.3877787807814457e-16,
+ 1.1102230246251565e-16,
+ 1.0
+ ],
+ "min": [
+ 1.0186484544760788e-08,
+ -9.71445146547012e-17,
+ -8.326672684688674e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 21116,
+ "componentType": 5126,
+ "count": 16,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 27432,
+ "componentType": 5126,
+ "count": 16,
+ "max": [
+ -0.00044182653073221445,
+ 1.6700936555862427,
+ 1.3205381321768073e-07
+ ],
+ "min": [
+ -0.00044182653073221445,
+ 1.6700936555862427,
+ 1.320537847959713e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 21180,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 47888,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.2629745602607727,
+ 3.6578352592187e-05,
+ -2.3844841052778065e-05,
+ 0.9648027420043945
+ ],
+ "min": [
+ -0.3805775046348572,
+ 3.33393836626783e-05,
+ -2.819642031681724e-05,
+ 0.9247490167617798
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 21472,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 27624,
+ "componentType": 5126,
+ "count": 64,
+ "max": [
+ 0.0008362052612937987,
+ 1.7729346752166748,
+ 4.207808501632826e-08
+ ],
+ "min": [
+ 0.0008362052612937987,
+ 1.7729346752166748,
+ 4.207805659461883e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 21728,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 49056,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470994770526886,
+ 7.539556827396154e-05,
+ -0.0003371105412952602,
+ 0.9955048561096191
+ ],
+ "min": [
+ -0.21741841733455658,
+ 3.301310061942786e-05,
+ -0.0003438577405177057,
+ 0.976078450679779
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 22020,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 50224,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09467713534832001,
+ 0.03222103789448738,
+ -0.14928646385669708,
+ 0.9837233424186707
+ ],
+ "min": [
+ -0.21592497825622559,
+ 0.01346133928745985,
+ -0.15212967991828918,
+ 0.9643918871879578
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 22312,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 28392,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ -0.0074256183579564095,
+ 0.90435791015625,
+ -1.2187541642560973e-08
+ ],
+ "min": [
+ -0.0074256183579564095,
+ 0.90435791015625,
+ -1.2187570064270403e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 22592,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 51392,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 3.910997081746359e-10,
+ 8.326672684688674e-17,
+ 1.1102230246251565e-16,
+ 1.0
+ ],
+ "min": [
+ 3.9109956939675783e-10,
+ -1.6653345369377348e-16,
+ -1.249000902703301e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 22884,
+ "componentType": 5126,
+ "count": 55,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 29232,
+ "componentType": 5126,
+ "count": 55,
+ "max": [
+ 0.0017080012476071715,
+ 1.7921829223632813,
+ -9.574699788572616e-08
+ ],
+ "min": [
+ 0.0017080012476071715,
+ 1.7921829223632813,
+ -9.574702630743559e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 23104,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 52560,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470660984516144,
+ 0.0005211496027186513,
+ -0.004561068490147591,
+ 0.9954946637153625
+ ],
+ "min": [
+ -0.21741382777690887,
+ -4.8429985326947644e-05,
+ -0.004590597935020924,
+ 0.9760687351226807
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 23396,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 29892,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 0.0057175979018211365,
+ 1.7328118085861206,
+ -4.125773500618379e-08
+ ],
+ "min": [
+ 0.0057175979018211365,
+ 1.7328118085861206,
+ -4.1257763427893224e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 23680,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 53728,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470905363559723,
+ 0.0003396828833501786,
+ -0.001123419962823391,
+ 0.9955043196678162
+ ],
+ "min": [
+ -0.21741746366024017,
+ 0.00019776099361479282,
+ -0.001156869693659246,
+ 0.9760780334472656
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 23972,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 54896,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.095576211810112,
+ 0.01589914970099926,
+ -0.08073429018259048,
+ 0.9920153021812439
+ ],
+ "min": [
+ -0.21784530580043793,
+ 0.005765658337622881,
+ -0.08208268135786057,
+ 0.972508430480957
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 24264,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 30744,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ -0.0010488309198990464,
+ 1.142881155014038,
+ 5.36449817900575e-09
+ ],
+ "min": [
+ -0.0010488309198990464,
+ 1.142881155014038,
+ 5.3644697572963196e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 24540,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 56064,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.6771325661579795e-08,
+ 2.7755575615628914e-17,
+ 3.8163916471489756e-17,
+ 1.0
+ ],
+ "min": [
+ 1.6771325661579795e-08,
+ -1.942890293094024e-16,
+ -8.326672684688674e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 24832,
+ "componentType": 5126,
+ "count": 60,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 31572,
+ "componentType": 5126,
+ "count": 60,
+ "max": [
+ 0.001168174552731216,
+ 1.6405105590820313,
+ -7.83572531304344e-08
+ ],
+ "min": [
+ 0.001168174552731216,
+ 1.6405105590820313,
+ -7.835726734128912e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 25072,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 57232,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470973163843155,
+ 0.00017422549717593938,
+ -0.0007839566096663475,
+ 0.99550461769104
+ ],
+ "min": [
+ -0.21741817891597748,
+ 7.567284046672285e-05,
+ -0.0007995099294930696,
+ 0.9760782122612
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 25364,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 32292,
+ "componentType": 5126,
+ "count": 66,
+ "max": [
+ -0.00011940200784010813,
+ 1.690424919128418,
+ 6.032352928286855e-08
+ ],
+ "min": [
+ -0.00011940200784010813,
+ 1.690424919128418,
+ 6.03234866503044e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 25628,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 58400,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470992535352707,
+ -3.132464917143807e-05,
+ 0.0003939230809919536,
+ 0.9955048561096191
+ ],
+ "min": [
+ -0.2174183875322342,
+ -7.992808968992904e-05,
+ 0.00038699887227267027,
+ 0.976078450679779
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 25920,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 59568,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0960787832736969,
+ 0.00172095384914428,
+ -0.020332492887973785,
+ 0.9951645731925964
+ ],
+ "min": [
+ -0.2187344878911972,
+ -0.0008134907111525536,
+ -0.020404696464538574,
+ 0.9755710363388062
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 26212,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 33084,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ -0.006075437646359205,
+ 1.2095835208892822,
+ -6.523634965560632e-09
+ ],
+ "min": [
+ -0.006075437646359205,
+ 1.2095835208892822,
+ -6.523663387270062e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 26496,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 60736,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.767825352771979e-08,
+ 2.7755575615628914e-16,
+ -6.938892249546003e-18,
+ 1.0
+ ],
+ "min": [
+ -1.767825352771979e-08,
+ 2.7755575615628914e-17,
+ -1.196959198423997e-16,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 26788,
+ "componentType": 5126,
+ "count": 63,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 33936,
+ "componentType": 5126,
+ "count": 63,
+ "max": [
+ 0.008993231691420078,
+ 1.49755859375,
+ -3.232592860058503e-08
+ ],
+ "min": [
+ 0.008993231691420078,
+ 1.49755859375,
+ -3.23259499168671e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 27040,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 61904,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470820426940918,
+ 0.0011794236488640308,
+ -0.005398983601480722,
+ 0.9954897165298462
+ ],
+ "min": [
+ -0.21741481125354767,
+ 0.0005008651060052216,
+ -0.005503562279045582,
+ 0.9760636687278748
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 27332,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 34692,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ -0.002917672973126173,
+ 1.75445556640625,
+ 7.556025138910627e-09
+ ],
+ "min": [
+ -0.002917672973126173,
+ 1.75445556640625,
+ 7.555996717201197e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 27608,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 63072,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09470869600772858,
+ -0.0002389222790952772,
+ 0.003825785592198372,
+ 0.9954976439476013
+ ],
+ "min": [
+ -0.21741627156734467,
+ -0.0007114634499885142,
+ 0.0037666349671781063,
+ 0.9760714173316956
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 27900,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 64240,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.09546810388565063,
+ -0.0019828141666948795,
+ 0.04001316800713539,
+ 0.994625985622406
+ ],
+ "min": [
+ -0.21806173026561737,
+ -0.0069290148094296455,
+ 0.0394585095345974,
+ 0.9751123785972595
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 28192,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 35520,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -4.1480426204998366e-08,
+ 15.44003963470459,
+ -1.6454595197501476e-07
+ ],
+ "min": [
+ -4.148044396856676e-08,
+ 15.44003963470459,
+ -1.6454600881843362e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 28484,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 65408,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.002307250862941146,
+ 0.008680639788508415,
+ 0.2384652942419052,
+ 0.9871014952659607
+ ],
+ "min": [
+ -0.35011500120162964,
+ -0.19862225651741028,
+ 0.012715068645775318,
+ 0.9233186841011047
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 28776,
+ "componentType": 5126,
+ "count": 68,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 36396,
+ "componentType": 5126,
+ "count": 68,
+ "max": [
+ 1.1682024592118978e-07,
+ 18.010852813720703,
+ 3.457519142102683e-07
+ ],
+ "min": [
+ 1.1682023171033507e-07,
+ 18.010852813720703,
+ 3.4575185736684944e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 29048,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 66576,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.009911702945828438,
+ 0.044863034039735794,
+ -0.07187777757644653,
+ 0.9963985681533813
+ ],
+ "min": [
+ 0.003278323682025075,
+ 0.03779418021440506,
+ -0.3366655111312866,
+ 0.9408133029937744
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 29340,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 37212,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.0812685736236745e-10,
+ 11.624507904052734,
+ 2.2512472241942305e-07
+ ],
+ "min": [
+ -3.0814817364444025e-10,
+ 11.624507904052734,
+ 2.251246655760042e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 29632,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 67744,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.12370941042900085,
+ 0.11890912801027298,
+ 0.3427249789237976,
+ 0.9567691087722778
+ ],
+ "min": [
+ -0.07917444407939911,
+ -0.0005379748181439936,
+ 0.2743854522705078,
+ 0.9337581992149353
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 29924,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 38088,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -4.148042265228469e-08,
+ 15.44003963470459,
+ -1.6454593776416004e-07
+ ],
+ "min": [
+ -4.148044396856676e-08,
+ 15.44003963470459,
+ -1.645459803967242e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 30216,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 68912,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.005860696081072092,
+ 0.0791374146938324,
+ 0.0595884770154953,
+ 0.9950639009475708
+ ],
+ "min": [
+ 0.005860696081072092,
+ 0.0791374146938324,
+ 0.0595884770154953,
+ 0.9950639009475708
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 30508,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 38964,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 1.1682024592118978e-07,
+ 18.010852813720703,
+ 3.457519142102683e-07
+ ],
+ "min": [
+ 1.1682022460490771e-07,
+ 18.010852813720703,
+ 3.4575185736684944e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 30796,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 70080,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.2877100491314195e-05,
+ -0.0005438466323539615,
+ -0.008719336241483688,
+ 0.9999618530273438
+ ],
+ "min": [
+ 2.2877100491314195e-05,
+ -0.0005438466323539615,
+ -0.008719336241483688,
+ 0.9999618530273438
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 31088,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 39828,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.0812685736236745e-10,
+ 11.624507904052734,
+ 2.2512472241942305e-07
+ ],
+ "min": [
+ -3.0814817364444025e-10,
+ 11.624507904052734,
+ 2.251246655760042e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 31380,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 71248,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.06231981888413429,
+ -0.07575974613428116,
+ 0.0041948771104216576,
+ 0.9951678514480591
+ ],
+ "min": [
+ -0.06231981888413429,
+ -0.07575974613428116,
+ 0.0041948771104216576,
+ 0.9951678514480591
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 31672,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 40704,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -4.1480426204998366e-08,
+ 15.44003963470459,
+ -1.6454593776416004e-07
+ ],
+ "min": [
+ -4.148044041585308e-08,
+ 15.44003963470459,
+ -1.6454596618586947e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 31960,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 72416,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.002307250862941146,
+ 0.008680639788508415,
+ 0.2384652942419052,
+ 0.9871014952659607
+ ],
+ "min": [
+ -0.35011500120162964,
+ -0.19862225651741028,
+ 0.012715068645775318,
+ 0.9233186841011047
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 32252,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 41568,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.1682024592118978e-07,
+ 18.010852813720703,
+ 3.457519142102683e-07
+ ],
+ "min": [
+ 1.1682023171033507e-07,
+ 18.010852813720703,
+ 3.4575185736684944e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 32544,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 73584,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.009911702014505863,
+ 0.044863034039735794,
+ -0.07187777757644653,
+ 0.9963985681533813
+ ],
+ "min": [
+ 0.003278323682025075,
+ 0.03779418393969536,
+ -0.3366655111312866,
+ 0.9408133029937744
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 32836,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 42444,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.0812685736236745e-10,
+ 11.624507904052734,
+ 2.2512472241942305e-07
+ ],
+ "min": [
+ -3.0814817364444025e-10,
+ 11.624507904052734,
+ 2.251246655760042e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 33128,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 74752,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.12370941042900085,
+ 0.11890912801027298,
+ 0.3427249789237976,
+ 0.9567691087722778
+ ],
+ "min": [
+ -0.07917444407939911,
+ -0.0005379746435210109,
+ 0.2743854522705078,
+ 0.9337581992149353
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 33420,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 75920,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.38762667775154114,
+ -0.4777231812477112,
+ 0.6896312832832336,
+ 0.48608583211898804
+ ],
+ "min": [
+ 0.3307323455810547,
+ -0.5061377286911011,
+ 0.620682418346405,
+ 0.3985590934753418
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 33712,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 43320,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 1.7763568394002505e-15,
+ 9.646917343139648,
+ -1.2493472922869842e-10
+ ],
+ "min": [
+ -1.3322676295501878e-15,
+ 9.646917343139648,
+ -1.2496315093812882e-10
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 34004,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 77088,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.08530304580926895,
+ 3.476278140324322e-17,
+ 1.7342983051419548e-17,
+ 1.0
+ ],
+ "min": [
+ -2.407412430484045e-35,
+ -1.4103677598212888e-17,
+ -1.383384135623074e-17,
+ 0.9963550567626953
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 34296,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 44196,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 4.440892098500626e-16,
+ 8.441043853759766,
+ -8.729941214369319e-10
+ ],
+ "min": [
+ -4.440892098500626e-16,
+ 8.441043853759766,
+ -8.730154377190047e-10
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 34588,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 78256,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.06930026412010193,
+ 0.06427887827157974,
+ 0.011802474036812782,
+ 0.9955217838287354
+ ],
+ "min": [
+ -0.11448180675506592,
+ -0.06427548080682755,
+ -0.011798919178545475,
+ 0.9929262399673462
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 34880,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 45072,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.6645352591003757e-15,
+ 7.235038757324219,
+ 0.04619896411895752
+ ],
+ "min": [
+ -2.6645352591003757e-15,
+ 7.235038757324219,
+ 0.04619896411895752
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 35172,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 79424,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.031199496239423752,
+ 0.18136821687221527,
+ 0.01656448468565941,
+ 0.9988826513290405
+ ],
+ "min": [
+ -0.03620462492108345,
+ -0.18134433031082153,
+ -0.01697090081870556,
+ 0.9827737212181091
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 35464,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 45948,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.2900219559242032e-08,
+ 5.577835559844971,
+ 5.020815763145947e-09
+ ],
+ "min": [
+ -1.290022400013413e-08,
+ 5.577835559844971,
+ 5.020801552291232e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 35756,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 80592,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.24353884160518646,
+ 2.8615220415417753e-08,
+ 5.867764052425173e-09,
+ 1.0
+ ],
+ "min": [
+ -0.15471044182777405,
+ 1.5961445498646754e-08,
+ -4.007905562986025e-09,
+ 0.9698911309242249
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 36048,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 46824,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -3.973537054946519e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ],
+ "min": [
+ -3.9735406076601976e-09,
+ 13.40460205078125,
+ -2.6047968049169867e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 36336,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 81760,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.44176173210144043,
+ -0.07999370992183685,
+ 0.03958675265312195,
+ 0.9943233132362366
+ ],
+ "min": [
+ 0.05792301520705223,
+ -0.08910197019577026,
+ 0.005190761294215918,
+ 0.8926815986633301
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 36628,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 47688,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ -1.8424021419605197e-08,
+ 26.492334365844727,
+ 8.560208897279153e-08
+ ],
+ "min": [
+ -1.8424026748675715e-08,
+ 26.492334365844727,
+ 8.560206765650946e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 36904,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 82928,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.6964606046676636,
+ 0.014308818615972996,
+ 0.016923431307077408,
+ 0.9864522814750671
+ ],
+ "min": [
+ 0.1635652631521225,
+ -0.009168014861643314,
+ -0.02257867157459259,
+ 0.7175508737564087
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 37196,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 48516,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.2695072487977086e-09,
+ 25.232135772705078,
+ -1.2350803046956571e-08
+ ],
+ "min": [
+ 2.26950369608403e-09,
+ 25.232135772705078,
+ -1.2350824363238644e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 37488,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 84096,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.20893056690692902,
+ 0.008953693322837353,
+ 2.479639442753978e-05,
+ 0.9778894782066345
+ ],
+ "min": [
+ -0.8207705020904541,
+ 0.004625918809324503,
+ -0.0055485377088189125,
+ 0.5712124109268188
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 37780,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 85264,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.15061847865581512,
+ 0.8247508406639099,
+ 0.9915637969970703,
+ 0.02667067013680935
+ ],
+ "min": [
+ -0.1680680364370346,
+ -0.04562975838780403,
+ 0.5480595231056213,
+ -0.12127522379159927
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 38072,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 49392,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -7.096144116758296e-09,
+ 5.606495380401611,
+ -1.6563674876124423e-09
+ ],
+ "min": [
+ -7.096149445828814e-09,
+ 5.606495380401611,
+ -1.6563816984671575e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 38364,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 86432,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.3686130940914154,
+ -3.0106201232100454e-17,
+ 4.166205004708671e-17,
+ 1.0
+ ],
+ "min": [
+ -0.2283509224653244,
+ -1.2027820205407782e-16,
+ -3.913653859678676e-17,
+ 0.9295828938484192
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 38656,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 50268,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ -3.8459369022803e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "min": [
+ -3.8459422313508185e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 38932,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 87600,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.6103187203407288,
+ 0.08968841284513474,
+ 0.006862850394099951,
+ 0.9959412813186646
+ ],
+ "min": [
+ -0.07621479034423828,
+ 0.0708778128027916,
+ -0.05496184155344963,
+ 0.7870619893074036
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 39224,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 51096,
+ "componentType": 5126,
+ "count": 70,
+ "max": [
+ -3.921437397025329e-09,
+ 26.481624603271484,
+ 1.6580456119186238e-08
+ ],
+ "min": [
+ -3.921442726095847e-09,
+ 26.481624603271484,
+ 1.6580429473833647e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 39504,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 88768,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.656884491443634,
+ 0.008031005971133709,
+ 0.06291139870882034,
+ 0.9700107574462891
+ ],
+ "min": [
+ 0.2429276555776596,
+ -0.03311653062701225,
+ -0.006194081157445908,
+ 0.753793478012085
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 39796,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 51936,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -1.0733920419170317e-09,
+ 25.164966583251953,
+ 2.6283899501322594e-08
+ ],
+ "min": [
+ -1.07339737098755e-09,
+ 25.164966583251953,
+ 2.628388529046788e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 40084,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 89936,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.2067466676235199,
+ -0.004474650602787733,
+ 0.006593703757971525,
+ 0.9783408045768738
+ ],
+ "min": [
+ -0.8511606454849243,
+ -0.01025101263076067,
+ -0.00020007655257359147,
+ 0.5248448252677917
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 40376,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 91104,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.16136017441749573,
+ 0.8043951988220215,
+ 0.9867513179779053,
+ 0.12232078611850739
+ ],
+ "min": [
+ -0.14755576848983765,
+ 0.038770291954278946,
+ 0.577222466468811,
+ -0.023432275280356407
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 40668,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 52800,
+ "componentType": 5126,
+ "count": 71,
+ "max": [
+ -1.2900216006528353e-08,
+ 5.577835559844971,
+ 5.020810434075429e-09
+ ],
+ "min": [
+ -1.2900223111955711e-08,
+ 5.577835559844971,
+ 5.020805105004911e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 40952,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 92272,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.3877787807814457e-16,
+ 8.326672684688674e-17,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -4.163336342344337e-16,
+ -2.7755575615628914e-17,
+ -5.551115123125783e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 41244,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 53652,
+ "componentType": 5126,
+ "count": 69,
+ "max": [
+ -3.973536166768099e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ],
+ "min": [
+ -3.973541495838617e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 41520,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 93440,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.29833662509918213,
+ -0.08515508472919464,
+ 0.026734132319688797,
+ 0.9502784609794617
+ ],
+ "min": [
+ 0.29833662509918213,
+ -0.08515508472919464,
+ 0.026734132319688797,
+ 0.9502784609794617
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 41812,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 54480,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.8424019643248357e-08,
+ 26.492334365844727,
+ 8.560208186736418e-08
+ ],
+ "min": [
+ -1.8424024972318875e-08,
+ 26.492334365844727,
+ 8.560206765650946e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 42104,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 94608,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.5069550275802612,
+ -0.005829900503158569,
+ 0.00017374024901073426,
+ 0.8619527816772461
+ ],
+ "min": [
+ 0.5069550275802612,
+ -0.005829900503158569,
+ 0.00017374024901073426,
+ 0.8619527816772461
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 42396,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 55356,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.2695081369761283e-09,
+ 25.232135772705078,
+ -1.235080659967025e-08
+ ],
+ "min": [
+ 2.26950369608403e-09,
+ 25.232135772705078,
+ -1.2350824363238644e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 42688,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 95776,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.03928033262491226,
+ -3.660416041384451e-05,
+ -0.007414763793349266,
+ 0.999200701713562
+ ],
+ "min": [
+ -0.03928033262491226,
+ -3.660416041384451e-05,
+ -0.007414763793349266,
+ 0.999200701713562
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 42980,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 96944,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.00024400398251600564,
+ -0.00023556516680400819,
+ 0.9999929070472717,
+ -0.0037479635793715715
+ ],
+ "min": [
+ 0.00024400398251600564,
+ -0.00023556516680400819,
+ 0.9999929070472717,
+ -0.0037479635793715715
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 43272,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 56232,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -7.0961458931151356e-09,
+ 5.606495380401611,
+ -1.6563781457534787e-09
+ ],
+ "min": [
+ -7.096151222185654e-09,
+ 5.606495380401611,
+ -1.6563821425563674e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 43564,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 98112,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.942890293094024e-16,
+ 5.551115123125783e-17,
+ 8.326672684688674e-17,
+ 1.0
+ ],
+ "min": [
+ -4.440892098500626e-16,
+ -3.848917712323541e-17,
+ -5.551115123125783e-17,
+ 1.0
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 43856,
+ "componentType": 5126,
+ "count": 67,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 57108,
+ "componentType": 5126,
+ "count": 67,
+ "max": [
+ -3.84593779045872e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "min": [
+ -3.8459422313508185e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 44124,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 99280,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.29520586133003235,
+ 0.08566058427095413,
+ -0.026584442704916,
+ 0.9512144923210144
+ ],
+ "min": [
+ 0.29520586133003235,
+ 0.08566058427095413,
+ -0.026584442704916,
+ 0.9512144923210144
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 44416,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 57912,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.9214391733821685e-09,
+ 26.481624603271484,
+ 1.658045079011572e-08
+ ],
+ "min": [
+ -3.921446278809526e-09,
+ 26.481624603271484,
+ 1.6580436579261004e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 44708,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 100448,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.48585978150367737,
+ 0.0059525016695261,
+ -0.0004407685773912817,
+ 0.8740164041519165
+ ],
+ "min": [
+ 0.48585978150367737,
+ 0.0059525016695261,
+ -0.0004407685773912817,
+ 0.8740164041519165
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 45000,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 58788,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.0733898214709825e-09,
+ 25.164966583251953,
+ 2.628390660674995e-08
+ ],
+ "min": [
+ -1.0733955946307105e-09,
+ 25.164966583251953,
+ 2.628388529046788e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 45292,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 101616,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.010246514342725277,
+ 5.827220229548402e-05,
+ 0.007470688782632351,
+ 0.999919593334198
+ ],
+ "min": [
+ -0.010246514342725277,
+ 5.827220229548402e-05,
+ 0.007470688782632351,
+ 0.999919593334198
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 45584,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 102784,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.00011382203229004517,
+ -0.001708936644718051,
+ 0.9999898672103882,
+ 0.0041650282219052315
+ ],
+ "min": [
+ -0.00011382203229004517,
+ -0.001708936644718051,
+ 0.9999898672103882,
+ 0.0041650282219052315
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 45876,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 59664,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -1.2900216006528353e-08,
+ 5.577835559844971,
+ 5.020815763145947e-09
+ ],
+ "min": [
+ -1.2900223111955711e-08,
+ 5.577835559844971,
+ 5.020801552291232e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 46168,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 103952,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.24353884160518646,
+ 2.8615220415417753e-08,
+ 5.867764052425173e-09,
+ 1.0
+ ],
+ "min": [
+ -0.15471044182777405,
+ 1.5961445498646754e-08,
+ -4.007905562986025e-09,
+ 0.9698911309242249
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 46460,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 60540,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -3.973536166768099e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ],
+ "min": [
+ -3.973541495838617e-09,
+ 13.40460205078125,
+ -2.6047968049169867e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 46748,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 105120,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.44176173210144043,
+ -0.07999370992183685,
+ 0.03958674892783165,
+ 0.9943233132362366
+ ],
+ "min": [
+ 0.05792301520705223,
+ -0.08910197019577026,
+ 0.005190760362893343,
+ 0.8926815986633301
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 47040,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 61404,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -1.8424021419605197e-08,
+ 26.492334365844727,
+ 8.560208186736418e-08
+ ],
+ "min": [
+ -1.8424026748675715e-08,
+ 26.492334365844727,
+ 8.56020605510821e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 47328,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 106288,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.6964606046676636,
+ 0.014308818615972996,
+ 0.016923431307077408,
+ 0.9864522814750671
+ ],
+ "min": [
+ 0.1635652631521225,
+ -0.009168014861643314,
+ -0.02257867157459259,
+ 0.7175508737564087
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 47620,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 62268,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.2695072487977086e-09,
+ 25.232135772705078,
+ -1.2350803046956571e-08
+ ],
+ "min": [
+ 2.2695019197271904e-09,
+ 25.232135772705078,
+ -1.2350824363238644e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 47912,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 107456,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.20893056690692902,
+ 0.008953693322837353,
+ 2.4796396246529184e-05,
+ 0.9778894782066345
+ ],
+ "min": [
+ -0.8207705020904541,
+ 0.004625918809324503,
+ -0.0055485377088189125,
+ 0.5712124109268188
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 48204,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 108624,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.15061847865581512,
+ 0.8247508406639099,
+ 0.9915637969970703,
+ 0.02667067013680935
+ ],
+ "min": [
+ -0.1680680364370346,
+ -0.04562975838780403,
+ 0.5480595231056213,
+ -0.12127522379159927
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 48496,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 63144,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -7.0961458931151356e-09,
+ 5.606495380401611,
+ -1.6563745930398e-09
+ ],
+ "min": [
+ -7.096151222185654e-09,
+ 5.606495380401611,
+ -1.6563888038945151e-09
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 48788,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 109792,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.3686130940914154,
+ 2.7755573961267688e-17,
+ 5.2347959629295846e-17,
+ 1.0
+ ],
+ "min": [
+ -0.2283509224653244,
+ -6.433865729230123e-17,
+ -1.5397268962237615e-17,
+ 0.9295828938484192
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 49080,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 64020,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.8459369022803e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "min": [
+ -3.8459422313508185e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 49372,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 110960,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.6103187203407288,
+ 0.08968841284513474,
+ 0.006862852722406387,
+ 0.9959412813186646
+ ],
+ "min": [
+ -0.07621479034423828,
+ 0.0708778128027916,
+ -0.05496184155344963,
+ 0.7870619893074036
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 49664,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 64896,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -3.921440949739008e-09,
+ 26.481624603271484,
+ 1.658045079011572e-08
+ ],
+ "min": [
+ -3.921446278809526e-09,
+ 26.481624603271484,
+ 1.6580429473833647e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 49956,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 112128,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.656884491443634,
+ 0.008031006902456284,
+ 0.06291139870882034,
+ 0.9700107574462891
+ ],
+ "min": [
+ 0.2429276555776596,
+ -0.03311653062701225,
+ -0.006194081157445908,
+ 0.753793478012085
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 50248,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 65772,
+ "componentType": 5126,
+ "count": 72,
+ "max": [
+ -1.0733902655601923e-09,
+ 25.164966583251953,
+ 2.628390660674995e-08
+ ],
+ "min": [
+ -1.0733938182738711e-09,
+ 25.164966583251953,
+ 2.628388529046788e-08
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 50536,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 113296,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.2067466676235199,
+ -0.004474650602787733,
+ 0.006593703757971525,
+ 0.9783408045768738
+ ],
+ "min": [
+ -0.8511606454849243,
+ -0.01025101263076067,
+ -0.00020007655257359147,
+ 0.5248448252677917
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 50828,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 114464,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.16136017441749573,
+ 0.8043951988220215,
+ 0.9867513179779053,
+ 0.12232078611850739
+ ],
+ "min": [
+ -0.14755576848983765,
+ 0.038770291954278946,
+ 0.577222466468811,
+ -0.023432275280356407
+ ],
+ "type": "VEC4"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 51120,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 7,
+ "byteOffset": 66636,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ -0.0007944170502014458,
+ 58.8818359375,
+ 28.963397979736328
+ ],
+ "min": [
+ -0.004406930413097143,
+ 50.22554016113281,
+ 28.963184356689453
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 6,
+ "byteOffset": 51412,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 2.4000000953674316
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 8,
+ "byteOffset": 115632,
+ "componentType": 5126,
+ "count": 73,
+ "max": [
+ 0.4399018883705139,
+ 0.16856491565704346,
+ 0.060603946447372437,
+ 0.9252802729606628
+ ],
+ "min": [
+ 0.3692251741886139,
+ -0.16841541230678558,
+ -0.06022169440984726,
+ 0.8929790258407593
+ ],
+ "type": "VEC4"
+ }
+ ],
+ "animations": [
+ {
+ "channels": [
+ {
+ "sampler": 0,
+ "target": {
+ "node": 14,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 1,
+ "target": {
+ "node": 14,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 2,
+ "target": {
+ "node": 15,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 3,
+ "target": {
+ "node": 15,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 4,
+ "target": {
+ "node": 16,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 5,
+ "target": {
+ "node": 16,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 6,
+ "target": {
+ "node": 17,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 7,
+ "target": {
+ "node": 17,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 8,
+ "target": {
+ "node": 13,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 9,
+ "target": {
+ "node": 13,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 10,
+ "target": {
+ "node": 12,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 11,
+ "target": {
+ "node": 12,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 12,
+ "target": {
+ "node": 25,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 13,
+ "target": {
+ "node": 25,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 14,
+ "target": {
+ "node": 24,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 15,
+ "target": {
+ "node": 24,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 16,
+ "target": {
+ "node": 23,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 17,
+ "target": {
+ "node": 23,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 18,
+ "target": {
+ "node": 22,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 19,
+ "target": {
+ "node": 29,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 20,
+ "target": {
+ "node": 29,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 21,
+ "target": {
+ "node": 28,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 22,
+ "target": {
+ "node": 28,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 23,
+ "target": {
+ "node": 27,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 24,
+ "target": {
+ "node": 27,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 25,
+ "target": {
+ "node": 26,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 26,
+ "target": {
+ "node": 33,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 27,
+ "target": {
+ "node": 33,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 28,
+ "target": {
+ "node": 32,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 29,
+ "target": {
+ "node": 32,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 30,
+ "target": {
+ "node": 31,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 31,
+ "target": {
+ "node": 31,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 32,
+ "target": {
+ "node": 30,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 33,
+ "target": {
+ "node": 37,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 34,
+ "target": {
+ "node": 37,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 35,
+ "target": {
+ "node": 36,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 36,
+ "target": {
+ "node": 36,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 37,
+ "target": {
+ "node": 35,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 38,
+ "target": {
+ "node": 35,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 39,
+ "target": {
+ "node": 34,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 40,
+ "target": {
+ "node": 41,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 41,
+ "target": {
+ "node": 41,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 42,
+ "target": {
+ "node": 40,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 43,
+ "target": {
+ "node": 40,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 44,
+ "target": {
+ "node": 39,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 45,
+ "target": {
+ "node": 39,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 46,
+ "target": {
+ "node": 38,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 47,
+ "target": {
+ "node": 21,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 48,
+ "target": {
+ "node": 21,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 49,
+ "target": {
+ "node": 20,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 50,
+ "target": {
+ "node": 20,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 51,
+ "target": {
+ "node": 19,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 52,
+ "target": {
+ "node": 19,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 53,
+ "target": {
+ "node": 45,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 54,
+ "target": {
+ "node": 45,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 55,
+ "target": {
+ "node": 44,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 56,
+ "target": {
+ "node": 44,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 57,
+ "target": {
+ "node": 43,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 58,
+ "target": {
+ "node": 43,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 59,
+ "target": {
+ "node": 48,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 60,
+ "target": {
+ "node": 48,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 61,
+ "target": {
+ "node": 47,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 62,
+ "target": {
+ "node": 47,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 63,
+ "target": {
+ "node": 46,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 64,
+ "target": {
+ "node": 46,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 65,
+ "target": {
+ "node": 18,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 66,
+ "target": {
+ "node": 56,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 67,
+ "target": {
+ "node": 56,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 68,
+ "target": {
+ "node": 55,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 69,
+ "target": {
+ "node": 55,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 70,
+ "target": {
+ "node": 54,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 71,
+ "target": {
+ "node": 54,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 72,
+ "target": {
+ "node": 53,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 73,
+ "target": {
+ "node": 60,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 74,
+ "target": {
+ "node": 60,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 75,
+ "target": {
+ "node": 59,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 76,
+ "target": {
+ "node": 59,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 77,
+ "target": {
+ "node": 58,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 78,
+ "target": {
+ "node": 58,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 79,
+ "target": {
+ "node": 57,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 80,
+ "target": {
+ "node": 64,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 81,
+ "target": {
+ "node": 64,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 82,
+ "target": {
+ "node": 63,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 83,
+ "target": {
+ "node": 63,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 84,
+ "target": {
+ "node": 62,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 85,
+ "target": {
+ "node": 62,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 86,
+ "target": {
+ "node": 61,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 87,
+ "target": {
+ "node": 68,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 88,
+ "target": {
+ "node": 68,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 89,
+ "target": {
+ "node": 67,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 90,
+ "target": {
+ "node": 67,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 91,
+ "target": {
+ "node": 66,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 92,
+ "target": {
+ "node": 66,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 93,
+ "target": {
+ "node": 65,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 94,
+ "target": {
+ "node": 72,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 95,
+ "target": {
+ "node": 72,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 96,
+ "target": {
+ "node": 71,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 97,
+ "target": {
+ "node": 71,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 98,
+ "target": {
+ "node": 70,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 99,
+ "target": {
+ "node": 70,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 100,
+ "target": {
+ "node": 69,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 101,
+ "target": {
+ "node": 52,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 102,
+ "target": {
+ "node": 52,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 103,
+ "target": {
+ "node": 51,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 104,
+ "target": {
+ "node": 51,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 105,
+ "target": {
+ "node": 50,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 106,
+ "target": {
+ "node": 50,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 107,
+ "target": {
+ "node": 76,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 108,
+ "target": {
+ "node": 76,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 109,
+ "target": {
+ "node": 75,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 110,
+ "target": {
+ "node": 75,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 111,
+ "target": {
+ "node": 74,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 112,
+ "target": {
+ "node": 74,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 113,
+ "target": {
+ "node": 79,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 114,
+ "target": {
+ "node": 79,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 115,
+ "target": {
+ "node": 78,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 116,
+ "target": {
+ "node": 78,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 117,
+ "target": {
+ "node": 77,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 118,
+ "target": {
+ "node": 77,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 119,
+ "target": {
+ "node": 49,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 120,
+ "target": {
+ "node": 11,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 121,
+ "target": {
+ "node": 11,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 122,
+ "target": {
+ "node": 10,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 123,
+ "target": {
+ "node": 10,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 124,
+ "target": {
+ "node": 9,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 125,
+ "target": {
+ "node": 9,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 126,
+ "target": {
+ "node": 84,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 127,
+ "target": {
+ "node": 84,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 128,
+ "target": {
+ "node": 83,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 129,
+ "target": {
+ "node": 83,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 130,
+ "target": {
+ "node": 82,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 131,
+ "target": {
+ "node": 82,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 132,
+ "target": {
+ "node": 81,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 133,
+ "target": {
+ "node": 81,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 134,
+ "target": {
+ "node": 80,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 135,
+ "target": {
+ "node": 91,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 136,
+ "target": {
+ "node": 91,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 137,
+ "target": {
+ "node": 90,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 138,
+ "target": {
+ "node": 90,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 139,
+ "target": {
+ "node": 89,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 140,
+ "target": {
+ "node": 89,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 141,
+ "target": {
+ "node": 88,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 142,
+ "target": {
+ "node": 88,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 143,
+ "target": {
+ "node": 87,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 144,
+ "target": {
+ "node": 98,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 145,
+ "target": {
+ "node": 98,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 146,
+ "target": {
+ "node": 97,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 147,
+ "target": {
+ "node": 97,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 148,
+ "target": {
+ "node": 96,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 149,
+ "target": {
+ "node": 96,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 150,
+ "target": {
+ "node": 95,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 151,
+ "target": {
+ "node": 95,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 152,
+ "target": {
+ "node": 94,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 153,
+ "target": {
+ "node": 103,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 154,
+ "target": {
+ "node": 103,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 155,
+ "target": {
+ "node": 102,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 156,
+ "target": {
+ "node": 102,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 157,
+ "target": {
+ "node": 101,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 158,
+ "target": {
+ "node": 101,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 159,
+ "target": {
+ "node": 100,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 160,
+ "target": {
+ "node": 100,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 161,
+ "target": {
+ "node": 99,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 162,
+ "target": {
+ "node": 108,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 163,
+ "target": {
+ "node": 108,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 164,
+ "target": {
+ "node": 107,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 165,
+ "target": {
+ "node": 107,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 166,
+ "target": {
+ "node": 106,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 167,
+ "target": {
+ "node": 106,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 168,
+ "target": {
+ "node": 105,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 169,
+ "target": {
+ "node": 105,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 170,
+ "target": {
+ "node": 104,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 171,
+ "target": {
+ "node": 113,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 172,
+ "target": {
+ "node": 113,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 173,
+ "target": {
+ "node": 112,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 174,
+ "target": {
+ "node": 112,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 175,
+ "target": {
+ "node": 111,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 176,
+ "target": {
+ "node": 111,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 177,
+ "target": {
+ "node": 110,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 178,
+ "target": {
+ "node": 110,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 179,
+ "target": {
+ "node": 109,
+ "path": "rotation"
+ }
+ },
+ {
+ "sampler": 180,
+ "target": {
+ "node": 8,
+ "path": "translation"
+ }
+ },
+ {
+ "sampler": 181,
+ "target": {
+ "node": 8,
+ "path": "rotation"
+ }
+ }
+ ],
+ "name": "Take 001",
+ "samplers": [
+ {
+ "input": 7,
+ "interpolation": "LINEAR",
+ "output": 8
+ },
+ {
+ "input": 9,
+ "interpolation": "LINEAR",
+ "output": 10
+ },
+ {
+ "input": 11,
+ "interpolation": "LINEAR",
+ "output": 12
+ },
+ {
+ "input": 13,
+ "interpolation": "LINEAR",
+ "output": 14
+ },
+ {
+ "input": 15,
+ "interpolation": "LINEAR",
+ "output": 16
+ },
+ {
+ "input": 17,
+ "interpolation": "LINEAR",
+ "output": 18
+ },
+ {
+ "input": 19,
+ "interpolation": "LINEAR",
+ "output": 20
+ },
+ {
+ "input": 21,
+ "interpolation": "LINEAR",
+ "output": 22
+ },
+ {
+ "input": 23,
+ "interpolation": "LINEAR",
+ "output": 24
+ },
+ {
+ "input": 25,
+ "interpolation": "LINEAR",
+ "output": 26
+ },
+ {
+ "input": 27,
+ "interpolation": "LINEAR",
+ "output": 28
+ },
+ {
+ "input": 29,
+ "interpolation": "LINEAR",
+ "output": 30
+ },
+ {
+ "input": 31,
+ "interpolation": "LINEAR",
+ "output": 32
+ },
+ {
+ "input": 33,
+ "interpolation": "LINEAR",
+ "output": 34
+ },
+ {
+ "input": 35,
+ "interpolation": "LINEAR",
+ "output": 36
+ },
+ {
+ "input": 37,
+ "interpolation": "LINEAR",
+ "output": 38
+ },
+ {
+ "input": 39,
+ "interpolation": "LINEAR",
+ "output": 40
+ },
+ {
+ "input": 41,
+ "interpolation": "LINEAR",
+ "output": 42
+ },
+ {
+ "input": 43,
+ "interpolation": "LINEAR",
+ "output": 44
+ },
+ {
+ "input": 45,
+ "interpolation": "LINEAR",
+ "output": 46
+ },
+ {
+ "input": 47,
+ "interpolation": "LINEAR",
+ "output": 48
+ },
+ {
+ "input": 49,
+ "interpolation": "LINEAR",
+ "output": 50
+ },
+ {
+ "input": 51,
+ "interpolation": "LINEAR",
+ "output": 52
+ },
+ {
+ "input": 53,
+ "interpolation": "LINEAR",
+ "output": 54
+ },
+ {
+ "input": 55,
+ "interpolation": "LINEAR",
+ "output": 56
+ },
+ {
+ "input": 57,
+ "interpolation": "LINEAR",
+ "output": 58
+ },
+ {
+ "input": 59,
+ "interpolation": "LINEAR",
+ "output": 60
+ },
+ {
+ "input": 61,
+ "interpolation": "LINEAR",
+ "output": 62
+ },
+ {
+ "input": 63,
+ "interpolation": "LINEAR",
+ "output": 64
+ },
+ {
+ "input": 65,
+ "interpolation": "LINEAR",
+ "output": 66
+ },
+ {
+ "input": 67,
+ "interpolation": "LINEAR",
+ "output": 68
+ },
+ {
+ "input": 69,
+ "interpolation": "LINEAR",
+ "output": 70
+ },
+ {
+ "input": 71,
+ "interpolation": "LINEAR",
+ "output": 72
+ },
+ {
+ "input": 73,
+ "interpolation": "LINEAR",
+ "output": 74
+ },
+ {
+ "input": 75,
+ "interpolation": "LINEAR",
+ "output": 76
+ },
+ {
+ "input": 77,
+ "interpolation": "LINEAR",
+ "output": 78
+ },
+ {
+ "input": 79,
+ "interpolation": "LINEAR",
+ "output": 80
+ },
+ {
+ "input": 81,
+ "interpolation": "LINEAR",
+ "output": 82
+ },
+ {
+ "input": 83,
+ "interpolation": "LINEAR",
+ "output": 84
+ },
+ {
+ "input": 85,
+ "interpolation": "LINEAR",
+ "output": 86
+ },
+ {
+ "input": 87,
+ "interpolation": "LINEAR",
+ "output": 88
+ },
+ {
+ "input": 89,
+ "interpolation": "LINEAR",
+ "output": 90
+ },
+ {
+ "input": 91,
+ "interpolation": "LINEAR",
+ "output": 92
+ },
+ {
+ "input": 93,
+ "interpolation": "LINEAR",
+ "output": 94
+ },
+ {
+ "input": 95,
+ "interpolation": "LINEAR",
+ "output": 96
+ },
+ {
+ "input": 97,
+ "interpolation": "LINEAR",
+ "output": 98
+ },
+ {
+ "input": 99,
+ "interpolation": "LINEAR",
+ "output": 100
+ },
+ {
+ "input": 101,
+ "interpolation": "LINEAR",
+ "output": 102
+ },
+ {
+ "input": 103,
+ "interpolation": "LINEAR",
+ "output": 104
+ },
+ {
+ "input": 105,
+ "interpolation": "LINEAR",
+ "output": 106
+ },
+ {
+ "input": 107,
+ "interpolation": "LINEAR",
+ "output": 108
+ },
+ {
+ "input": 109,
+ "interpolation": "LINEAR",
+ "output": 110
+ },
+ {
+ "input": 111,
+ "interpolation": "LINEAR",
+ "output": 112
+ },
+ {
+ "input": 113,
+ "interpolation": "LINEAR",
+ "output": 114
+ },
+ {
+ "input": 115,
+ "interpolation": "LINEAR",
+ "output": 116
+ },
+ {
+ "input": 117,
+ "interpolation": "LINEAR",
+ "output": 118
+ },
+ {
+ "input": 119,
+ "interpolation": "LINEAR",
+ "output": 120
+ },
+ {
+ "input": 121,
+ "interpolation": "LINEAR",
+ "output": 122
+ },
+ {
+ "input": 123,
+ "interpolation": "LINEAR",
+ "output": 124
+ },
+ {
+ "input": 125,
+ "interpolation": "LINEAR",
+ "output": 126
+ },
+ {
+ "input": 127,
+ "interpolation": "LINEAR",
+ "output": 128
+ },
+ {
+ "input": 129,
+ "interpolation": "LINEAR",
+ "output": 130
+ },
+ {
+ "input": 131,
+ "interpolation": "LINEAR",
+ "output": 132
+ },
+ {
+ "input": 133,
+ "interpolation": "LINEAR",
+ "output": 134
+ },
+ {
+ "input": 135,
+ "interpolation": "LINEAR",
+ "output": 136
+ },
+ {
+ "input": 137,
+ "interpolation": "LINEAR",
+ "output": 138
+ },
+ {
+ "input": 139,
+ "interpolation": "LINEAR",
+ "output": 140
+ },
+ {
+ "input": 141,
+ "interpolation": "LINEAR",
+ "output": 142
+ },
+ {
+ "input": 143,
+ "interpolation": "LINEAR",
+ "output": 144
+ },
+ {
+ "input": 145,
+ "interpolation": "LINEAR",
+ "output": 146
+ },
+ {
+ "input": 147,
+ "interpolation": "LINEAR",
+ "output": 148
+ },
+ {
+ "input": 149,
+ "interpolation": "LINEAR",
+ "output": 150
+ },
+ {
+ "input": 151,
+ "interpolation": "LINEAR",
+ "output": 152
+ },
+ {
+ "input": 153,
+ "interpolation": "LINEAR",
+ "output": 154
+ },
+ {
+ "input": 155,
+ "interpolation": "LINEAR",
+ "output": 156
+ },
+ {
+ "input": 157,
+ "interpolation": "LINEAR",
+ "output": 158
+ },
+ {
+ "input": 159,
+ "interpolation": "LINEAR",
+ "output": 160
+ },
+ {
+ "input": 161,
+ "interpolation": "LINEAR",
+ "output": 162
+ },
+ {
+ "input": 163,
+ "interpolation": "LINEAR",
+ "output": 164
+ },
+ {
+ "input": 165,
+ "interpolation": "LINEAR",
+ "output": 166
+ },
+ {
+ "input": 167,
+ "interpolation": "LINEAR",
+ "output": 168
+ },
+ {
+ "input": 169,
+ "interpolation": "LINEAR",
+ "output": 170
+ },
+ {
+ "input": 171,
+ "interpolation": "LINEAR",
+ "output": 172
+ },
+ {
+ "input": 173,
+ "interpolation": "LINEAR",
+ "output": 174
+ },
+ {
+ "input": 175,
+ "interpolation": "LINEAR",
+ "output": 176
+ },
+ {
+ "input": 177,
+ "interpolation": "LINEAR",
+ "output": 178
+ },
+ {
+ "input": 179,
+ "interpolation": "LINEAR",
+ "output": 180
+ },
+ {
+ "input": 181,
+ "interpolation": "LINEAR",
+ "output": 182
+ },
+ {
+ "input": 183,
+ "interpolation": "LINEAR",
+ "output": 184
+ },
+ {
+ "input": 185,
+ "interpolation": "LINEAR",
+ "output": 186
+ },
+ {
+ "input": 187,
+ "interpolation": "LINEAR",
+ "output": 188
+ },
+ {
+ "input": 189,
+ "interpolation": "LINEAR",
+ "output": 190
+ },
+ {
+ "input": 191,
+ "interpolation": "LINEAR",
+ "output": 192
+ },
+ {
+ "input": 193,
+ "interpolation": "LINEAR",
+ "output": 194
+ },
+ {
+ "input": 195,
+ "interpolation": "LINEAR",
+ "output": 196
+ },
+ {
+ "input": 197,
+ "interpolation": "LINEAR",
+ "output": 198
+ },
+ {
+ "input": 199,
+ "interpolation": "LINEAR",
+ "output": 200
+ },
+ {
+ "input": 201,
+ "interpolation": "LINEAR",
+ "output": 202
+ },
+ {
+ "input": 203,
+ "interpolation": "LINEAR",
+ "output": 204
+ },
+ {
+ "input": 205,
+ "interpolation": "LINEAR",
+ "output": 206
+ },
+ {
+ "input": 207,
+ "interpolation": "LINEAR",
+ "output": 208
+ },
+ {
+ "input": 209,
+ "interpolation": "LINEAR",
+ "output": 210
+ },
+ {
+ "input": 211,
+ "interpolation": "LINEAR",
+ "output": 212
+ },
+ {
+ "input": 213,
+ "interpolation": "LINEAR",
+ "output": 214
+ },
+ {
+ "input": 215,
+ "interpolation": "LINEAR",
+ "output": 216
+ },
+ {
+ "input": 217,
+ "interpolation": "LINEAR",
+ "output": 218
+ },
+ {
+ "input": 219,
+ "interpolation": "LINEAR",
+ "output": 220
+ },
+ {
+ "input": 221,
+ "interpolation": "LINEAR",
+ "output": 222
+ },
+ {
+ "input": 223,
+ "interpolation": "LINEAR",
+ "output": 224
+ },
+ {
+ "input": 225,
+ "interpolation": "LINEAR",
+ "output": 226
+ },
+ {
+ "input": 227,
+ "interpolation": "LINEAR",
+ "output": 228
+ },
+ {
+ "input": 229,
+ "interpolation": "LINEAR",
+ "output": 230
+ },
+ {
+ "input": 231,
+ "interpolation": "LINEAR",
+ "output": 232
+ },
+ {
+ "input": 233,
+ "interpolation": "LINEAR",
+ "output": 234
+ },
+ {
+ "input": 235,
+ "interpolation": "LINEAR",
+ "output": 236
+ },
+ {
+ "input": 237,
+ "interpolation": "LINEAR",
+ "output": 238
+ },
+ {
+ "input": 239,
+ "interpolation": "LINEAR",
+ "output": 240
+ },
+ {
+ "input": 241,
+ "interpolation": "LINEAR",
+ "output": 242
+ },
+ {
+ "input": 243,
+ "interpolation": "LINEAR",
+ "output": 244
+ },
+ {
+ "input": 245,
+ "interpolation": "LINEAR",
+ "output": 246
+ },
+ {
+ "input": 247,
+ "interpolation": "LINEAR",
+ "output": 248
+ },
+ {
+ "input": 249,
+ "interpolation": "LINEAR",
+ "output": 250
+ },
+ {
+ "input": 251,
+ "interpolation": "LINEAR",
+ "output": 252
+ },
+ {
+ "input": 253,
+ "interpolation": "LINEAR",
+ "output": 254
+ },
+ {
+ "input": 255,
+ "interpolation": "LINEAR",
+ "output": 256
+ },
+ {
+ "input": 257,
+ "interpolation": "LINEAR",
+ "output": 258
+ },
+ {
+ "input": 259,
+ "interpolation": "LINEAR",
+ "output": 260
+ },
+ {
+ "input": 261,
+ "interpolation": "LINEAR",
+ "output": 262
+ },
+ {
+ "input": 263,
+ "interpolation": "LINEAR",
+ "output": 264
+ },
+ {
+ "input": 265,
+ "interpolation": "LINEAR",
+ "output": 266
+ },
+ {
+ "input": 267,
+ "interpolation": "LINEAR",
+ "output": 268
+ },
+ {
+ "input": 269,
+ "interpolation": "LINEAR",
+ "output": 270
+ },
+ {
+ "input": 271,
+ "interpolation": "LINEAR",
+ "output": 272
+ },
+ {
+ "input": 273,
+ "interpolation": "LINEAR",
+ "output": 274
+ },
+ {
+ "input": 275,
+ "interpolation": "LINEAR",
+ "output": 276
+ },
+ {
+ "input": 277,
+ "interpolation": "LINEAR",
+ "output": 278
+ },
+ {
+ "input": 279,
+ "interpolation": "LINEAR",
+ "output": 280
+ },
+ {
+ "input": 281,
+ "interpolation": "LINEAR",
+ "output": 282
+ },
+ {
+ "input": 283,
+ "interpolation": "LINEAR",
+ "output": 284
+ },
+ {
+ "input": 285,
+ "interpolation": "LINEAR",
+ "output": 286
+ },
+ {
+ "input": 287,
+ "interpolation": "LINEAR",
+ "output": 288
+ },
+ {
+ "input": 289,
+ "interpolation": "LINEAR",
+ "output": 290
+ },
+ {
+ "input": 291,
+ "interpolation": "LINEAR",
+ "output": 292
+ },
+ {
+ "input": 293,
+ "interpolation": "LINEAR",
+ "output": 294
+ },
+ {
+ "input": 295,
+ "interpolation": "LINEAR",
+ "output": 296
+ },
+ {
+ "input": 297,
+ "interpolation": "LINEAR",
+ "output": 298
+ },
+ {
+ "input": 299,
+ "interpolation": "LINEAR",
+ "output": 300
+ },
+ {
+ "input": 301,
+ "interpolation": "LINEAR",
+ "output": 302
+ },
+ {
+ "input": 303,
+ "interpolation": "LINEAR",
+ "output": 304
+ },
+ {
+ "input": 305,
+ "interpolation": "LINEAR",
+ "output": 306
+ },
+ {
+ "input": 307,
+ "interpolation": "LINEAR",
+ "output": 308
+ },
+ {
+ "input": 309,
+ "interpolation": "LINEAR",
+ "output": 310
+ },
+ {
+ "input": 311,
+ "interpolation": "LINEAR",
+ "output": 312
+ },
+ {
+ "input": 313,
+ "interpolation": "LINEAR",
+ "output": 314
+ },
+ {
+ "input": 315,
+ "interpolation": "LINEAR",
+ "output": 316
+ },
+ {
+ "input": 317,
+ "interpolation": "LINEAR",
+ "output": 318
+ },
+ {
+ "input": 319,
+ "interpolation": "LINEAR",
+ "output": 320
+ },
+ {
+ "input": 321,
+ "interpolation": "LINEAR",
+ "output": 322
+ },
+ {
+ "input": 323,
+ "interpolation": "LINEAR",
+ "output": 324
+ },
+ {
+ "input": 325,
+ "interpolation": "LINEAR",
+ "output": 326
+ },
+ {
+ "input": 327,
+ "interpolation": "LINEAR",
+ "output": 328
+ },
+ {
+ "input": 329,
+ "interpolation": "LINEAR",
+ "output": 330
+ },
+ {
+ "input": 331,
+ "interpolation": "LINEAR",
+ "output": 332
+ },
+ {
+ "input": 333,
+ "interpolation": "LINEAR",
+ "output": 334
+ },
+ {
+ "input": 335,
+ "interpolation": "LINEAR",
+ "output": 336
+ },
+ {
+ "input": 337,
+ "interpolation": "LINEAR",
+ "output": 338
+ },
+ {
+ "input": 339,
+ "interpolation": "LINEAR",
+ "output": 340
+ },
+ {
+ "input": 341,
+ "interpolation": "LINEAR",
+ "output": 342
+ },
+ {
+ "input": 343,
+ "interpolation": "LINEAR",
+ "output": 344
+ },
+ {
+ "input": 345,
+ "interpolation": "LINEAR",
+ "output": 346
+ },
+ {
+ "input": 347,
+ "interpolation": "LINEAR",
+ "output": 348
+ },
+ {
+ "input": 349,
+ "interpolation": "LINEAR",
+ "output": 350
+ },
+ {
+ "input": 351,
+ "interpolation": "LINEAR",
+ "output": 352
+ },
+ {
+ "input": 353,
+ "interpolation": "LINEAR",
+ "output": 354
+ },
+ {
+ "input": 355,
+ "interpolation": "LINEAR",
+ "output": 356
+ },
+ {
+ "input": 357,
+ "interpolation": "LINEAR",
+ "output": 358
+ },
+ {
+ "input": 359,
+ "interpolation": "LINEAR",
+ "output": 360
+ },
+ {
+ "input": 361,
+ "interpolation": "LINEAR",
+ "output": 362
+ },
+ {
+ "input": 363,
+ "interpolation": "LINEAR",
+ "output": 364
+ },
+ {
+ "input": 365,
+ "interpolation": "LINEAR",
+ "output": 366
+ },
+ {
+ "input": 367,
+ "interpolation": "LINEAR",
+ "output": 368
+ },
+ {
+ "input": 369,
+ "interpolation": "LINEAR",
+ "output": 370
+ }
+ ]
+ }
+ ],
+ "asset": {
+ "extras": {
+ "author": "dhannujhaveri (https://sketchfab.com/dhannujhaveri)",
+ "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
+ "source": "https://sketchfab.com/3d-models/mei-walking-8d862ec1bcc9474eb52da4f3cb3e928f",
+ "title": "Mei Walking"
+ },
+ "generator": "Sketchfab-13.80.0",
+ "version": "2.0"
+ },
+ "bufferViews": [
+ {
+ "buffer": 0,
+ "byteLength": 28408,
+ "byteStride": 8,
+ "name": "shortBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 55200,
+ "byteOffset": 28408,
+ "name": "floatBufferViews",
+ "target": 34963
+ },
+ {
+ "buffer": 0,
+ "byteLength": 28408,
+ "byteOffset": 83608,
+ "byteStride": 8,
+ "name": "floatBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 85224,
+ "byteOffset": 112016,
+ "byteStride": 12,
+ "name": "floatBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 56816,
+ "byteOffset": 197240,
+ "byteStride": 16,
+ "name": "floatBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 6848,
+ "byteOffset": 254056,
+ "name": "floatBufferViews"
+ },
+ {
+ "buffer": 0,
+ "byteLength": 51704,
+ "byteOffset": 260904,
+ "name": "floatBufferViews"
+ },
+ {
+ "buffer": 0,
+ "byteLength": 67512,
+ "byteOffset": 312608,
+ "byteStride": 12,
+ "name": "floatBufferViews"
+ },
+ {
+ "buffer": 0,
+ "byteLength": 116800,
+ "byteOffset": 380120,
+ "byteStride": 16,
+ "name": "floatBufferViews"
+ }
+ ],
+ "buffers": [
+ {
+ "byteLength": 496920,
+ "uri": "scene.bin"
+ }
+ ],
+ "images": [
+ {
+ "uri": "textures/Mei_geo_002FACE_2Material_baseColor.png"
+ }
+ ],
+ "materials": [
+ {
+ "doubleSided": true,
+ "name": "Mei_geo_002FACE_2Material",
+ "pbrMetallicRoughness": {
+ "baseColorTexture": {
+ "index": 0
+ },
+ "metallicFactor": 0.0,
+ "roughnessFactor": 0.6
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "name": "Mesh_mei1_Mei_geo_002:FACE_2Material_0",
+ "primitives": [
+ {
+ "attributes": {
+ "JOINTS_0": 5,
+ "NORMAL": 1,
+ "POSITION": 0,
+ "TEXCOORD_0": 2,
+ "WEIGHTS_0": 6
+ },
+ "indices": 3,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ }
+ ],
+ "nodes": [
+ {
+ "children": [
+ 1
+ ],
+ "matrix": [
+ 1.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 2.220446049250313e-16,
+ -1.0,
+ 0.0,
+ 0.0,
+ 1.0,
+ 2.220446049250313e-16,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "name": "Sketchfab_model"
+ },
+ {
+ "children": [
+ 2
+ ],
+ "matrix": [
+ 0.009999999776482582,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.009999999776482582,
+ 0.0,
+ 0.0,
+ -0.009999999776482582,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "name": "Mei_Run.fbx"
+ },
+ {
+ "children": [
+ 3
+ ],
+ "name": "Object_2"
+ },
+ {
+ "children": [
+ 4,
+ 116
+ ],
+ "name": "RootNode"
+ },
+ {
+ "children": [
+ 5
+ ],
+ "name": "Joint_GRP"
+ },
+ {
+ "children": [
+ 6
+ ],
+ "name": "Bind_Joint_GRP"
+ },
+ {
+ "children": [
+ 7,
+ 115,
+ 114
+ ],
+ "name": "Object_6"
+ },
+ {
+ "children": [
+ 8
+ ],
+ "name": "_rootJoint"
+ },
+ {
+ "children": [
+ 9,
+ 80,
+ 87,
+ 94,
+ 99,
+ 104,
+ 109
+ ],
+ "name": "Bind_Hips_01",
+ "rotation": [
+ 0.3941294550895691,
+ 0.16856490075588226,
+ 0.06060395389795303,
+ 0.9014294147491455
+ ],
+ "translation": [
+ -0.002691050060093403,
+ 54.77024841308594,
+ 28.963285446166992
+ ]
+ },
+ {
+ "children": [
+ 10
+ ],
+ "name": "Bind_Spine_02",
+ "rotation": [
+ -0.031274158507585526,
+ -0.18134434521198273,
+ 0.016564486548304558,
+ 0.982782781124115
+ ],
+ "translation": [
+ -8.881784197001252e-16,
+ 7.235038757324219,
+ 0.04619896411895752
+ ]
+ },
+ {
+ "children": [
+ 11
+ ],
+ "name": "Bind_Spine1_03",
+ "rotation": [
+ -0.06930026412010193,
+ -0.06427548080682755,
+ -0.011798919178545475,
+ 0.9954531192779541
+ ],
+ "translation": [
+ 2.220446049250313e-16,
+ 8.441043853759766,
+ -8.730012268642895e-10
+ ]
+ },
+ {
+ "children": [
+ 12,
+ 18,
+ 49
+ ],
+ "name": "Bind_Spine2_04",
+ "rotation": [
+ 2.7755575615628914e-17,
+ 1.3877787807814457e-17,
+ 6.938893903907228e-18,
+ 1.0
+ ],
+ "translation": [
+ 0.0,
+ 9.646917343139648,
+ -1.2493472922869842e-10
+ ]
+ },
+ {
+ "children": [
+ 13
+ ],
+ "name": "Bind_Neck_05",
+ "rotation": [
+ -0.00319267506711185,
+ 2.0838732692491124e-17,
+ -6.8723985088253156e-18,
+ 0.9999949932098389
+ ],
+ "translation": [
+ 0.0,
+ 10.852775573730469,
+ -6.181995360066139e-08
+ ]
+ },
+ {
+ "children": [
+ 14,
+ 15,
+ 16,
+ 17
+ ],
+ "name": "Bind_Head_06",
+ "rotation": [
+ -0.3285781443119049,
+ 0.04624968394637108,
+ 0.026309780776500702,
+ 0.9429767727851868
+ ],
+ "translation": [
+ 0.0,
+ 3.8477859497070313,
+ -1.5588610172271729
+ ]
+ },
+ {
+ "name": "Bind_HeadTop_End_07",
+ "rotation": [
+ 1.128474576789396e-36,
+ 1.734723475976807e-18,
+ -6.505213034913027e-19,
+ 1.0
+ ],
+ "translation": [
+ -1.1102230246251565e-16,
+ 53.3917236328125,
+ -21.63069725036621
+ ]
+ },
+ {
+ "name": "Jaw_08",
+ "rotation": [
+ 0.08639583736658096,
+ 1.67203486947144e-18,
+ -7.979618015830874e-19,
+ 0.9962608814239502
+ ],
+ "translation": [
+ 6.983906342128421e-09,
+ 5.740715980529785,
+ 1.2521814107894897
+ ]
+ },
+ {
+ "name": "L_Hair_09",
+ "rotation": [
+ 0.1304885745048523,
+ 0.6625872254371643,
+ 0.16132499277591705,
+ 0.7196701765060425
+ ],
+ "translation": [
+ 35.283023834228516,
+ 20.620445251464844,
+ -6.699451446533203
+ ]
+ },
+ {
+ "name": "R_Hair_010",
+ "rotation": [
+ 0.7747023105621338,
+ -0.23457419872283936,
+ 0.5847077965736389,
+ -0.054113924503326416
+ ],
+ "translation": [
+ -33.04266357421875,
+ 20.12215232849121,
+ -7.416570663452148
+ ]
+ },
+ {
+ "children": [
+ 19,
+ 43,
+ 46
+ ],
+ "name": "Bind_LeftShoulder_011",
+ "rotation": [
+ -0.2662123739719391,
+ -0.5996513366699219,
+ 0.6745321154594421,
+ -0.3384607434272766
+ ],
+ "translation": [
+ 5.379435062408447,
+ 9.1515474319458,
+ 0.02172478288412094
+ ]
+ },
+ {
+ "children": [
+ 20
+ ],
+ "name": "Bind_LeftArm_012",
+ "rotation": [
+ 0.028347233310341835,
+ -0.14768758416175842,
+ -0.15414583683013916,
+ 0.9765366911888123
+ ],
+ "translation": [
+ -3.3291378542799066e-09,
+ 11.624507904052734,
+ 2.2510033659273176e-07
+ ]
+ },
+ {
+ "children": [
+ 21,
+ 42
+ ],
+ "name": "Bind_LeftForeArm_013",
+ "rotation": [
+ 0.006260070484131575,
+ -0.034905657172203064,
+ 0.19010411202907562,
+ 0.9811232686042786
+ ],
+ "translation": [
+ 1.8348063690609706e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ]
+ },
+ {
+ "children": [
+ 22,
+ 26,
+ 30,
+ 34,
+ 38
+ ],
+ "name": "Bind_LeftHand_014",
+ "rotation": [
+ 0.12460372596979141,
+ 0.2469019591808319,
+ -0.25746357440948486,
+ 0.9258649349212646
+ ],
+ "translation": [
+ 9.06764796582138e-09,
+ 15.437748908996582,
+ -4.6585498125750746e-08
+ ]
+ },
+ {
+ "children": [
+ 23
+ ],
+ "name": "Bind_LeftHandThumb1_015",
+ "rotation": [
+ 0.09793616086244583,
+ -0.010103910230100155,
+ 0.47780099511146545,
+ 0.8729333281517029
+ ],
+ "translation": [
+ -2.0003788471221924,
+ 1.489945411682129,
+ 0.9085098505020142
+ ]
+ },
+ {
+ "children": [
+ 24
+ ],
+ "name": "Bind_LeftHandThumb2_00",
+ "rotation": [
+ -0.12984336912631989,
+ -0.05350292846560478,
+ -0.09912092983722687,
+ 0.9851158261299133
+ ],
+ "translation": [
+ 0.4073832035064697,
+ 2.084235668182373,
+ 2.3665762682867353e-09
+ ]
+ },
+ {
+ "children": [
+ 25
+ ],
+ "name": "Bind_LeftHandThumb3_016",
+ "rotation": [
+ -0.0013843075139448047,
+ 0.005801762454211712,
+ -0.05925946310162544,
+ 0.9982247948646545
+ ],
+ "translation": [
+ -0.43090179562568665,
+ 2.4385557174682617,
+ -2.5788224888856348e-08
+ ]
+ },
+ {
+ "name": "Bind_LeftHandThumb4_017",
+ "rotation": [
+ -2.0383328802608958e-08,
+ -1.3877786980633844e-17,
+ -2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ 0.023518025875091553,
+ 2.0926527976989746,
+ -6.555737286362273e-09
+ ]
+ },
+ {
+ "children": [
+ 27
+ ],
+ "name": "Bind_LeftHandIndex1_018",
+ "rotation": [
+ -0.1254134327173233,
+ -0.028122756630182266,
+ 0.15139396488666534,
+ 0.9800818562507629
+ ],
+ "translation": [
+ -2.7948715686798096,
+ 6.629097938537598,
+ 0.33077335357666016
+ ]
+ },
+ {
+ "children": [
+ 28
+ ],
+ "name": "Bind_LeftHandIndex2_019",
+ "rotation": [
+ -0.1228741928935051,
+ -0.001765654538758099,
+ 0.010293210856616497,
+ 0.9923673272132874
+ ],
+ "translation": [
+ -0.024724427610635757,
+ 1.7317616939544678,
+ 4.160796152063995e-09
+ ]
+ },
+ {
+ "children": [
+ 29
+ ],
+ "name": "Bind_LeftHandIndex3_020",
+ "rotation": [
+ -0.1228765919804573,
+ 0.0006175052258186042,
+ 0.0015939964214339852,
+ 0.992420494556427
+ ],
+ "translation": [
+ 0.012180538848042488,
+ 1.8475908041000366,
+ -1.0481812751095276e-08
+ ]
+ },
+ {
+ "name": "Bind_LeftHandIndex4_021",
+ "rotation": [
+ 6.830302989868642e-09,
+ 2.7755573961267688e-17,
+ -2.220446049250313e-16,
+ 1.0
+ ],
+ "translation": [
+ 0.012543875724077225,
+ 1.2999814748764038,
+ 5.978525052796613e-08
+ ]
+ },
+ {
+ "children": [
+ 31
+ ],
+ "name": "Bind_LeftHandMiddle1_022",
+ "rotation": [
+ -0.12627777457237244,
+ -0.009752928279340267,
+ 0.08829393237829208,
+ 0.9880096316337585
+ ],
+ "translation": [
+ -0.9997185468673706,
+ 7.330282688140869,
+ -0.05704843997955322
+ ]
+ },
+ {
+ "children": [
+ 32
+ ],
+ "name": "Bind_LeftHandMiddle2_023",
+ "rotation": [
+ -0.12288255989551544,
+ -0.0004586642317008227,
+ 0.0029715567361563444,
+ 0.9924166798591614
+ ],
+ "translation": [
+ -0.010471895337104797,
+ 1.7958145141601563,
+ -9.767963149442949e-08
+ ]
+ },
+ {
+ "children": [
+ 33
+ ],
+ "name": "Bind_LeftHandMiddle3_024",
+ "rotation": [
+ -0.12287881225347519,
+ 0.0002531306236051023,
+ 0.004152339417487383,
+ 0.9924129843711853
+ ],
+ "translation": [
+ 0.00029350799741223454,
+ 1.8321508169174194,
+ 1.3056506986686145e-08
+ ]
+ },
+ {
+ "name": "Bind_LeftHandMiddle4_025",
+ "rotation": [
+ -5.045029727313022e-09,
+ 2.7755575615628914e-17,
+ 1.3877787807814457e-17,
+ 1.0
+ ],
+ "translation": [
+ 0.010178402997553349,
+ 1.2224982976913452,
+ 5.725866003558622e-09
+ ]
+ },
+ {
+ "children": [
+ 35
+ ],
+ "name": "Bind_LeftHandRing1_026",
+ "rotation": [
+ -0.12696509063243866,
+ -0.0008034028578549623,
+ 0.028364963829517365,
+ 0.9915012121200562
+ ],
+ "translation": [
+ 1.0679792165756226,
+ 7.604959964752197,
+ -0.04521997272968292
+ ]
+ },
+ {
+ "children": [
+ 36
+ ],
+ "name": "Bind_LeftHandRing2_027",
+ "rotation": [
+ -0.12288288027048111,
+ -0.00019567893468774855,
+ 0.001545181730762124,
+ 0.992419958114624
+ ],
+ "translation": [
+ 0.0006612433353438973,
+ 1.7508594989776611,
+ 4.0119289224094246e-08
+ ]
+ },
+ {
+ "children": [
+ 37
+ ],
+ "name": "Bind_LeftHandRing3_028",
+ "rotation": [
+ -0.12288127839565277,
+ 0.0003709824522957206,
+ -0.005037443246692419,
+ 0.9924085140228271
+ ],
+ "translation": [
+ 0.006002799607813358,
+ 1.7070767879486084,
+ -1.2761789491833042e-07
+ ]
+ },
+ {
+ "name": "Bind_LeftHandRing4_029",
+ "rotation": [
+ -7.145399383290396e-09,
+ -2.7755575615628914e-17,
+ -2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ -0.006664051674306393,
+ 1.0190144777297974,
+ -3.966280814893253e-08
+ ]
+ },
+ {
+ "children": [
+ 39
+ ],
+ "name": "Bind_LeftHandPinky1_030",
+ "rotation": [
+ -0.12745095789432526,
+ 0.0075384220108389854,
+ -0.023494763299822807,
+ 0.9915379285812378
+ ],
+ "translation": [
+ 2.7266106605529785,
+ 6.898226737976074,
+ 0.2341374009847641
+ ]
+ },
+ {
+ "children": [
+ 40
+ ],
+ "name": "Bind_LeftHandPinky2_031",
+ "rotation": [
+ -0.12287504971027374,
+ 0.0014655389823019505,
+ -0.008009346202015877,
+ 0.9923888444900513
+ ],
+ "translation": [
+ 0.031214429065585136,
+ 1.7794663906097412,
+ -8.801228545962658e-08
+ ]
+ },
+ {
+ "children": [
+ 41
+ ],
+ "name": "Bind_LeftHandPinky3_032",
+ "rotation": [
+ -0.12284702807664871,
+ 0.0002919392427429557,
+ -0.015256662853062153,
+ 0.9923083186149597
+ ],
+ "translation": [
+ 0.0020013966131955385,
+ 1.5704317092895508,
+ 1.0405827310933091e-08
+ ]
+ },
+ {
+ "name": "Bind_LeftHandPinky4_033",
+ "rotation": [
+ -2.4613436289122603e-10,
+ 2.7755575615628914e-17,
+ -2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ -0.03321589156985283,
+ 1.1413064002990723,
+ -1.4293277672550175e-10
+ ]
+ },
+ {
+ "name": "LeftForeArm_IK_BakingLOC_034",
+ "rotation": [
+ -3.469446951953614e-17,
+ 1.3877787807814457e-17,
+ 2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ 9.01513385772705,
+ 7.105427357601002e-15,
+ 0.0
+ ]
+ },
+ {
+ "children": [
+ 44
+ ],
+ "name": "FK_LeftArm_035",
+ "rotation": [
+ -0.062085770070552826,
+ 0.08686311542987823,
+ -0.006814987864345312,
+ 0.9942603707313538
+ ],
+ "translation": [
+ -3.3291378542799066e-09,
+ 11.624507904052734,
+ 2.2510033659273176e-07
+ ]
+ },
+ {
+ "children": [
+ 45
+ ],
+ "name": "FK_LeftForeArm_036",
+ "rotation": [
+ 2.4874010705389082e-05,
+ 0.0006663607782684267,
+ 0.008721617050468922,
+ 0.9999617338180542
+ ],
+ "translation": [
+ 1.8348065111695178e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ]
+ },
+ {
+ "name": "FK_LeftHand_037",
+ "rotation": [
+ 0.010546411387622356,
+ -0.0987684577703476,
+ -0.06700275838375092,
+ 0.9927962422370911
+ ],
+ "translation": [
+ 9.0676444131077e-09,
+ 15.437748908996582,
+ -4.658548391489603e-08
+ ]
+ },
+ {
+ "children": [
+ 47
+ ],
+ "name": "IK_LeftArm_038",
+ "rotation": [
+ 0.028347233310341835,
+ -0.14768758416175842,
+ -0.15414583683013916,
+ 0.9765366911888123
+ ],
+ "translation": [
+ -3.3291378542799066e-09,
+ 11.624507904052734,
+ 2.2510033659273176e-07
+ ]
+ },
+ {
+ "children": [
+ 48
+ ],
+ "name": "IK_LeftForeArm_039",
+ "rotation": [
+ 0.006260070484131575,
+ -0.034905657172203064,
+ 0.19010411202907562,
+ 0.9811232686042786
+ ],
+ "translation": [
+ 1.834806653278065e-07,
+ 18.0302677154541,
+ -4.883528390564607e-07
+ ]
+ },
+ {
+ "name": "IK_LeftHand_040",
+ "rotation": [
+ 0.12460372596979141,
+ 0.2469019591808319,
+ -0.25746357440948486,
+ 0.9258649349212646
+ ],
+ "translation": [
+ 9.067633754966664e-09,
+ 15.437748908996582,
+ -4.658548391489603e-08
+ ]
+ },
+ {
+ "children": [
+ 50,
+ 74,
+ 77
+ ],
+ "name": "Bind_RightShoulder_041",
+ "rotation": [
+ 0.3876267373561859,
+ -0.47772324085235596,
+ 0.6206824779510498,
+ 0.4860858917236328
+ ],
+ "translation": [
+ -5.379435062408447,
+ 9.151409149169922,
+ 2.2535946300195064e-06
+ ]
+ },
+ {
+ "children": [
+ 51
+ ],
+ "name": "Bind_RightArm_042",
+ "rotation": [
+ 0.053801245987415314,
+ 0.0276021771132946,
+ 0.30753767490386963,
+ 0.9496126174926758
+ ],
+ "translation": [
+ -3.0813751550340385e-10,
+ 11.624507904052734,
+ 2.2512470820856834e-07
+ ]
+ },
+ {
+ "children": [
+ 52,
+ 73
+ ],
+ "name": "Bind_RightForeArm_043",
+ "rotation": [
+ 0.00753143010661006,
+ 0.041699763387441635,
+ -0.19814267754554749,
+ 0.979256808757782
+ ],
+ "translation": [
+ 1.1682024592118978e-07,
+ 18.010852813720703,
+ 3.457519142102683e-07
+ ]
+ },
+ {
+ "children": [
+ 53,
+ 57,
+ 61,
+ 65,
+ 69
+ ],
+ "name": "Bind_RightHand_044",
+ "rotation": [
+ -0.029103590175509453,
+ -0.1516452431678772,
+ 0.2279701977968216,
+ 0.9613460898399353
+ ],
+ "translation": [
+ -4.148044041585308e-08,
+ 15.44003963470459,
+ -1.645459803967242e-07
+ ]
+ },
+ {
+ "children": [
+ 54
+ ],
+ "name": "Bind_RightHandThumb1_045",
+ "rotation": [
+ 0.05229288712143898,
+ 0.008455846458673477,
+ -0.5228735208511353,
+ 0.8507627248764038
+ ],
+ "translation": [
+ 1.9995228052139282,
+ 1.7232539653778076,
+ 0.809159517288208
+ ]
+ },
+ {
+ "children": [
+ 55
+ ],
+ "name": "Bind_RightHandThumb2_046",
+ "rotation": [
+ -0.15641580522060394,
+ 0.09687777608633041,
+ 0.1125311404466629,
+ 0.9764659404754639
+ ],
+ "translation": [
+ -0.49848684668540955,
+ 2.1517062187194824,
+ 7.536691271070595e-08
+ ]
+ },
+ {
+ "children": [
+ 56
+ ],
+ "name": "Bind_RightHandThumb3_047",
+ "rotation": [
+ -0.0026838136836886406,
+ -0.007705928757786751,
+ 0.14422433078289032,
+ 0.9895113706588745
+ ],
+ "translation": [
+ 0.4705868661403656,
+ 2.4418108463287354,
+ -1.0174068165724748e-07
+ ]
+ },
+ {
+ "name": "Bind_RightHandThumb4_048",
+ "rotation": [
+ -1.2469779875345921e-08,
+ -1.3877787807814457e-17,
+ -2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ 0.02789994515478611,
+ 2.0620369911193848,
+ -3.002644177740876e-08
+ ]
+ },
+ {
+ "children": [
+ 58
+ ],
+ "name": "Bind_RightHandIndex1_049",
+ "rotation": [
+ -0.15105874836444855,
+ 0.02218252792954445,
+ -0.15110453963279724,
+ 0.9766558408737183
+ ],
+ "translation": [
+ 2.9371888637542725,
+ 7.326357841491699,
+ 0.07216176390647888
+ ]
+ },
+ {
+ "children": [
+ 59
+ ],
+ "name": "Bind_RightHandIndex2_050",
+ "rotation": [
+ -0.15176865458488464,
+ 5.27212796441745e-05,
+ -0.00034139197668991983,
+ 0.9884160757064819
+ ],
+ "translation": [
+ 0.0008362052612937987,
+ 1.7729346752166748,
+ 4.207808501632826e-08
+ ]
+ },
+ {
+ "children": [
+ 60
+ ],
+ "name": "Bind_RightHandIndex3_051",
+ "rotation": [
+ -0.31799057126045227,
+ 3.49048241332639e-05,
+ -2.6233677999698557e-05,
+ 0.9480938911437988
+ ],
+ "translation": [
+ -0.00044182653073221445,
+ 1.6700936555862427,
+ 1.32053799006826e-07
+ ]
+ },
+ {
+ "name": "Bind_RightHandIndex4_052",
+ "rotation": [
+ 1.0186484544760788e-08,
+ -2.7755575615628914e-17,
+ 5.551115123125783e-17,
+ 1.0
+ ],
+ "translation": [
+ -0.0003943575138691813,
+ 1.2846384048461914,
+ 2.6605702529991504e-08
+ ]
+ },
+ {
+ "children": [
+ 62
+ ],
+ "name": "Bind_RightHandMiddle1_053",
+ "rotation": [
+ -0.15243293344974518,
+ 0.01047371607273817,
+ -0.0816156342625618,
+ 0.9848825335502625
+ ],
+ "translation": [
+ 0.9581771492958069,
+ 7.959803104400635,
+ -0.017875520512461662
+ ]
+ },
+ {
+ "children": [
+ 63
+ ],
+ "name": "Bind_RightHandMiddle2_054",
+ "rotation": [
+ -0.15176771581172943,
+ 0.0002639235754031688,
+ -0.0011435913620516658,
+ 0.9884154796600342
+ ],
+ "translation": [
+ 0.0057175979018211365,
+ 1.7328118085861206,
+ -4.125774921703851e-08
+ ]
+ },
+ {
+ "children": [
+ 64
+ ],
+ "name": "Bind_RightHandMiddle3_055",
+ "rotation": [
+ -0.15176472067832947,
+ 0.00021548203949350864,
+ -0.004585685208439827,
+ 0.9884060025215149
+ ],
+ "translation": [
+ 0.0017080012476071715,
+ 1.7921829223632813,
+ -9.574700499115352e-08
+ ]
+ },
+ {
+ "name": "Bind_RightHandMiddle4_056",
+ "rotation": [
+ 3.910996526634847e-10,
+ -2.7755575615628914e-17,
+ -4.85722573273506e-17,
+ 1.0
+ ],
+ "translation": [
+ -0.0074256183579564095,
+ 0.90435791015625,
+ -1.2187555853415688e-08
+ ]
+ },
+ {
+ "children": [
+ 66
+ ],
+ "name": "Bind_RightHandRing1_057",
+ "rotation": [
+ -0.1531156599521637,
+ 0.00035968158044852316,
+ -0.020402023568749428,
+ 0.9879975914955139
+ ],
+ "translation": [
+ -1.1336196660995483,
+ 8.05142879486084,
+ -0.034262992441654205
+ ]
+ },
+ {
+ "children": [
+ 67
+ ],
+ "name": "Bind_RightHandRing2_058",
+ "rotation": [
+ -0.15176862478256226,
+ -5.39130560355261e-05,
+ 0.00039147166535258293,
+ 0.9884160757064819
+ ],
+ "translation": [
+ -0.00011940200784010813,
+ 1.690424919128418,
+ 6.032352928286855e-08
+ ]
+ },
+ {
+ "children": [
+ 68
+ ],
+ "name": "Bind_RightHandRing3_059",
+ "rotation": [
+ -0.15176841616630554,
+ 0.00012149847316322848,
+ -0.0007938391645438969,
+ 0.9884157776832581
+ ],
+ "translation": [
+ 0.001168174552731216,
+ 1.6405105590820313,
+ -7.835726023586176e-08
+ ]
+ },
+ {
+ "name": "Bind_RightHandRing4_060",
+ "rotation": [
+ 1.6771325661579795e-08,
+ -8.326672684688674e-17,
+ -3.122502256758253e-17,
+ 1.0
+ ],
+ "translation": [
+ -0.0010488309198990464,
+ 1.142881155014038,
+ 5.364483968151035e-09
+ ]
+ },
+ {
+ "children": [
+ 70
+ ],
+ "name": "Bind_RightHandPinky1_061",
+ "rotation": [
+ -0.1524750292301178,
+ -0.004279237240552902,
+ 0.03983306884765625,
+ 0.9874950051307678
+ ],
+ "translation": [
+ -2.761746406555176,
+ 7.3487935066223145,
+ 0.0912403017282486
+ ]
+ },
+ {
+ "children": [
+ 71
+ ],
+ "name": "Bind_RightHandPinky2_062",
+ "rotation": [
+ -0.15176697075366974,
+ -0.00045840899110771716,
+ 0.003805730026215315,
+ 0.9884088635444641
+ ],
+ "translation": [
+ -0.002917672973126173,
+ 1.75445556640625,
+ 7.556025138910627e-09
+ ]
+ },
+ {
+ "children": [
+ 72
+ ],
+ "name": "Bind_RightHandPinky3_063",
+ "rotation": [
+ -0.15176603198051453,
+ 0.0008163467282429338,
+ -0.005465678405016661,
+ 0.9884009957313538
+ ],
+ "translation": [
+ 0.008993231691420078,
+ 1.49755859375,
+ -3.23259499168671e-08
+ ]
+ },
+ {
+ "name": "Bind_RightHandPinky4_064",
+ "rotation": [
+ -1.767825352771979e-08,
+ 1.1102230246251565e-16,
+ -1.0408340855860843e-16,
+ 1.0
+ ],
+ "translation": [
+ -0.006075437646359205,
+ 1.2095835208892822,
+ -6.523649176415347e-09
+ ]
+ },
+ {
+ "name": "RightForeArm_IK_BakingLOC_065",
+ "rotation": [
+ -1.3877787807814457e-17,
+ -1.3877787807814457e-17,
+ -5.551115123125783e-17,
+ 1.0
+ ],
+ "translation": [
+ -9.005426406860352,
+ -3.552713678800501e-15,
+ 0.0
+ ]
+ },
+ {
+ "children": [
+ 75
+ ],
+ "name": "FK_RightArm_066",
+ "rotation": [
+ -0.06231982633471489,
+ -0.07575975358486176,
+ 0.004194877576082945,
+ 0.9951679706573486
+ ],
+ "translation": [
+ -3.0813751550340385e-10,
+ 11.624507904052734,
+ 2.2512470820856834e-07
+ ]
+ },
+ {
+ "children": [
+ 76
+ ],
+ "name": "FK_RightForeArm_067",
+ "rotation": [
+ 2.2877100491314195e-05,
+ -0.0005438466323539615,
+ -0.008719336241483688,
+ 0.9999618530273438
+ ],
+ "translation": [
+ 1.1682023881576242e-07,
+ 18.010852813720703,
+ 3.457519142102683e-07
+ ]
+ },
+ {
+ "name": "FK_RightHand_068",
+ "rotation": [
+ 0.005860696081072092,
+ 0.0791374146938324,
+ 0.0595884770154953,
+ 0.9950639009475708
+ ],
+ "translation": [
+ -4.1480429757712045e-08,
+ 15.44003963470459,
+ -1.6454595197501476e-07
+ ]
+ },
+ {
+ "children": [
+ 78
+ ],
+ "name": "IK_RightArm_069",
+ "rotation": [
+ 0.053801245987415314,
+ 0.0276021771132946,
+ 0.30753767490386963,
+ 0.9496126174926758
+ ],
+ "translation": [
+ -3.0813751550340385e-10,
+ 11.624507904052734,
+ 2.2512470820856834e-07
+ ]
+ },
+ {
+ "children": [
+ 79
+ ],
+ "name": "IK_RightForeArm_070",
+ "rotation": [
+ 0.007531429640948772,
+ 0.041699767112731934,
+ -0.19814267754554749,
+ 0.979256808757782
+ ],
+ "translation": [
+ 1.1682023881576242e-07,
+ 18.010852813720703,
+ 3.4575188578855887e-07
+ ]
+ },
+ {
+ "name": "IK_RightHand_071",
+ "rotation": [
+ -0.029103590175509453,
+ -0.1516452431678772,
+ 0.2279701977968216,
+ 0.9613460898399353
+ ],
+ "translation": [
+ -4.14804368631394e-08,
+ 15.44003963470459,
+ -1.6454595197501476e-07
+ ]
+ },
+ {
+ "children": [
+ 81
+ ],
+ "name": "Bind_LeftUpLeg_072",
+ "rotation": [
+ -0.1680680513381958,
+ -0.04562976211309433,
+ 0.9842625856399536,
+ -0.02997402846813202
+ ],
+ "translation": [
+ 7.95612907409668,
+ -4.027217864990234,
+ 0.5332439541816711
+ ]
+ },
+ {
+ "children": [
+ 82,
+ 86
+ ],
+ "name": "Bind_LeftLeg_073",
+ "rotation": [
+ -0.4226432144641876,
+ 0.0066438778303563595,
+ -0.001087593729607761,
+ 0.9062711596488953
+ ],
+ "translation": [
+ 2.2695072487977086e-09,
+ 25.232135772705078,
+ -1.2350813705097607e-08
+ ]
+ },
+ {
+ "children": [
+ 83,
+ 85
+ ],
+ "name": "Bind_LeftFoot_074",
+ "rotation": [
+ 0.391352117061615,
+ -0.0023967395536601543,
+ 0.016923431307077408,
+ 0.9200822710990906
+ ],
+ "translation": [
+ -1.8424024972318875e-08,
+ 26.492334365844727,
+ 8.560206765650946e-08
+ ]
+ },
+ {
+ "children": [
+ 84
+ ],
+ "name": "Bind_LeftToeBase_075",
+ "rotation": [
+ 0.4417617917060852,
+ -0.07999371737241745,
+ 0.03958675637841225,
+ 0.8926817178726196
+ ],
+ "translation": [
+ -3.9735379431249385e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ]
+ },
+ {
+ "name": "Bind_LeftToe_End_076",
+ "rotation": [
+ -0.15471044182777405,
+ 1.7563960952315938e-08,
+ 2.7504438726566605e-09,
+ 0.9879598617553711
+ ],
+ "translation": [
+ -1.2900219559242032e-08,
+ 5.577835559844971,
+ 5.0208086577185895e-09
+ ]
+ },
+ {
+ "name": "LeftFoot_IK_BakingLOC_077",
+ "rotation": [
+ 0.004835099447518587,
+ 0.46701839566230774,
+ 0.8842339515686035,
+ -0.0008737971656955779
+ ],
+ "translation": [
+ -8.951504241849761e-06,
+ 3.840190402115695e-05,
+ 2.526393529933557e-07
+ ]
+ },
+ {
+ "name": "LeftLeg_IK_BakingLOC_078",
+ "rotation": [
+ 1.3877787807814457e-17,
+ -4.336808689942018e-19,
+ -2.168404344971009e-19,
+ 1.0
+ ],
+ "translation": [
+ 0.0,
+ -8.881784197001252e-16,
+ 12.616067886352539
+ ]
+ },
+ {
+ "children": [
+ 88
+ ],
+ "name": "Bind_RightUpLeg_079",
+ "rotation": [
+ -0.14755576848983765,
+ 0.7090669274330139,
+ 0.6803594827651978,
+ 0.11208198964595795
+ ],
+ "translation": [
+ -7.95612907409668,
+ -4.027217864990234,
+ -0.410585880279541
+ ]
+ },
+ {
+ "children": [
+ 89,
+ 93
+ ],
+ "name": "Bind_RightLeg_080",
+ "rotation": [
+ -0.2067466676235199,
+ -0.01025101263076067,
+ -0.00020007659622933716,
+ 0.9783408045768738
+ ],
+ "translation": [
+ -1.0733938182738711e-09,
+ 25.164966583251953,
+ 2.628388529046788e-08
+ ]
+ },
+ {
+ "children": [
+ 90,
+ 92
+ ],
+ "name": "Bind_RightFoot_081",
+ "rotation": [
+ 0.3680313527584076,
+ 0.0017366275424137712,
+ 0.004010785836726427,
+ 0.9298031330108643
+ ],
+ "translation": [
+ -3.9214391733821685e-09,
+ 26.481624603271484,
+ 1.658045079011572e-08
+ ]
+ },
+ {
+ "children": [
+ 91
+ ],
+ "name": "Bind_RightToeBase_082",
+ "rotation": [
+ 0.42314159870147705,
+ 0.08119364082813263,
+ -0.03810591995716095,
+ 0.9016134142875671
+ ],
+ "translation": [
+ -3.84593867863714e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ]
+ },
+ {
+ "name": "Bind_RightToe_End_083",
+ "rotation": [
+ -0.13744458556175232,
+ -6.243274051675045e-17,
+ -2.967939588835779e-17,
+ 0.9905094504356384
+ ],
+ "translation": [
+ -7.096149445828814e-09,
+ 5.606495380401611,
+ -1.6563816984671575e-09
+ ]
+ },
+ {
+ "name": "RightFoot_IK_BakingLOC_084",
+ "rotation": [
+ -0.005025116726756096,
+ 0.49128487706184387,
+ 0.8709838390350342,
+ 0.001048035454005003
+ ],
+ "translation": [
+ 3.417491461732425e-05,
+ 4.724209429696202e-05,
+ -7.336444105021656e-05
+ ]
+ },
+ {
+ "name": "RightLeg_IK_BakingLOC_085",
+ "rotation": [
+ 2.7755575615628914e-17,
+ 8.673617379884035e-19,
+ 4.336808689942018e-19,
+ 1.0
+ ],
+ "translation": [
+ 0.0,
+ 3.552713678800501e-15,
+ 12.582483291625977
+ ]
+ },
+ {
+ "children": [
+ 95
+ ],
+ "name": "FK_LeftUpLeg_086",
+ "rotation": [
+ 0.00024400398251600564,
+ -0.00023556516680400819,
+ 0.9999929070472717,
+ -0.0037479635793715715
+ ],
+ "translation": [
+ 7.95612907409668,
+ -4.027217864990234,
+ 0.5332439541816711
+ ]
+ },
+ {
+ "children": [
+ 96
+ ],
+ "name": "FK_LeftLeg_087",
+ "rotation": [
+ -0.03928033262491226,
+ -3.660416041384451e-05,
+ -0.007414763793349266,
+ 0.999200701713562
+ ],
+ "translation": [
+ 2.269505472440869e-09,
+ 25.232135772705078,
+ -1.2350810152383929e-08
+ ]
+ },
+ {
+ "children": [
+ 97
+ ],
+ "name": "FK_LeftFoot_088",
+ "rotation": [
+ 0.5069550275802612,
+ -0.005829900503158569,
+ 0.00017374024901073426,
+ 0.8619527816772461
+ ],
+ "translation": [
+ -1.8424023195962036e-08,
+ 26.492334365844727,
+ 8.560206765650946e-08
+ ]
+ },
+ {
+ "children": [
+ 98
+ ],
+ "name": "FK_LeftToeBase_089",
+ "rotation": [
+ 0.29833662509918213,
+ -0.08515508472919464,
+ 0.026734132319688797,
+ 0.9502784609794617
+ ],
+ "translation": [
+ -3.973541495838617e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ]
+ },
+ {
+ "name": "FK_LeftToe_End_090",
+ "rotation": [
+ -2.7755575615628914e-16,
+ 5.551115123125783e-17,
+ 2.7755575615628914e-17,
+ 1.0
+ ],
+ "translation": [
+ -1.2900219559242032e-08,
+ 5.577835559844971,
+ 5.0208086577185895e-09
+ ]
+ },
+ {
+ "children": [
+ 100
+ ],
+ "name": "FK_RightUpLeg_091",
+ "rotation": [
+ -0.00011382203229004517,
+ -0.001708936644718051,
+ 0.9999898672103882,
+ 0.0041650282219052315
+ ],
+ "translation": [
+ -7.95612907409668,
+ -4.027217864990234,
+ -0.410585880279541
+ ]
+ },
+ {
+ "children": [
+ 101
+ ],
+ "name": "FK_RightLeg_092",
+ "rotation": [
+ -0.010246514342725277,
+ 5.827220229548402e-05,
+ 0.007470688782632351,
+ 0.999919593334198
+ ],
+ "translation": [
+ -1.0733933741846613e-09,
+ 25.164966583251953,
+ 2.6283895948608915e-08
+ ]
+ },
+ {
+ "children": [
+ 102
+ ],
+ "name": "FK_RightFoot_093",
+ "rotation": [
+ 0.48585978150367737,
+ 0.0059525016695261,
+ -0.0004407685773912817,
+ 0.8740164041519165
+ ],
+ "translation": [
+ -3.921440505649798e-09,
+ 26.481624603271484,
+ 1.6580440131974683e-08
+ ]
+ },
+ {
+ "children": [
+ 103
+ ],
+ "name": "FK_RightToeBase_094",
+ "rotation": [
+ 0.29520589113235474,
+ 0.08566059172153473,
+ -0.0265844464302063,
+ 0.951214611530304
+ ],
+ "translation": [
+ -3.845939566815559e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ]
+ },
+ {
+ "name": "FK_RightToe_End_095",
+ "rotation": [
+ -2.220446049250313e-16,
+ -4.85722573273506e-17,
+ -3.469446951953614e-18,
+ 1.0
+ ],
+ "translation": [
+ -7.096148113561185e-09,
+ 5.606495380401611,
+ -1.656380366199528e-09
+ ]
+ },
+ {
+ "children": [
+ 105
+ ],
+ "name": "IK_LeftUpLeg_096",
+ "rotation": [
+ -0.1680680513381958,
+ -0.04562976211309433,
+ 0.9842625856399536,
+ -0.02997402846813202
+ ],
+ "translation": [
+ 7.95612907409668,
+ -4.027217864990234,
+ 0.5332439541816711
+ ]
+ },
+ {
+ "children": [
+ 106
+ ],
+ "name": "IK_LeftLeg_097",
+ "rotation": [
+ -0.4226432144641876,
+ 0.0066438778303563595,
+ -0.001087593729607761,
+ 0.9062711596488953
+ ],
+ "translation": [
+ 2.269505472440869e-09,
+ 25.232135772705078,
+ -1.235080659967025e-08
+ ]
+ },
+ {
+ "children": [
+ 107
+ ],
+ "name": "IK_LeftFoot_098",
+ "rotation": [
+ 0.391352117061615,
+ -0.0023967393208295107,
+ 0.016923431307077408,
+ 0.9200822710990906
+ ],
+ "translation": [
+ -1.8424023195962036e-08,
+ 26.492334365844727,
+ 8.560207476193682e-08
+ ]
+ },
+ {
+ "children": [
+ 108
+ ],
+ "name": "IK_LeftToeBase_099",
+ "rotation": [
+ 0.4417617917060852,
+ -0.07999371737241745,
+ 0.03958675265312195,
+ 0.8926817178726196
+ ],
+ "translation": [
+ -3.9735379431249385e-09,
+ 13.40460205078125,
+ -2.6047965206998924e-07
+ ]
+ },
+ {
+ "name": "IK_LeftToe_End_0100",
+ "rotation": [
+ -0.15471044182777405,
+ 1.7563960952315938e-08,
+ 2.7504438726566605e-09,
+ 0.9879598617553711
+ ],
+ "translation": [
+ -1.2900219559242032e-08,
+ 5.577835559844971,
+ 5.0208086577185895e-09
+ ]
+ },
+ {
+ "children": [
+ 110
+ ],
+ "name": "IK_RightUpLeg_0101",
+ "rotation": [
+ -0.14755576848983765,
+ 0.7090669274330139,
+ 0.6803594827651978,
+ 0.11208198964595795
+ ],
+ "translation": [
+ -7.95612907409668,
+ -4.027217864990234,
+ -0.410585880279541
+ ]
+ },
+ {
+ "children": [
+ 111
+ ],
+ "name": "IK_RightLeg_0102",
+ "rotation": [
+ -0.2067466676235199,
+ -0.01025101263076067,
+ -0.00020007659622933716,
+ 0.9783408045768738
+ ],
+ "translation": [
+ -1.0733920419170317e-09,
+ 25.164966583251953,
+ 2.628388529046788e-08
+ ]
+ },
+ {
+ "children": [
+ 112
+ ],
+ "name": "IK_RightFoot_0103",
+ "rotation": [
+ 0.3680313527584076,
+ 0.001736627658829093,
+ 0.004010785836726427,
+ 0.9298031330108643
+ ],
+ "translation": [
+ -3.921442726095847e-09,
+ 26.481624603271484,
+ 1.658045079011572e-08
+ ]
+ },
+ {
+ "children": [
+ 113
+ ],
+ "name": "IK_RightToeBase_0104",
+ "rotation": [
+ 0.42314159870147705,
+ 0.08119364082813263,
+ -0.03810591623187065,
+ 0.9016134142875671
+ ],
+ "translation": [
+ -3.845939566815559e-09,
+ 13.53796100616455,
+ 2.8668364393524826e-07
+ ]
+ },
+ {
+ "name": "IK_RightToe_End_0105",
+ "rotation": [
+ -0.13744458556175232,
+ -2.252654675593005e-17,
+ 1.0884939990937358e-17,
+ 0.9905094504356384
+ ],
+ "translation": [
+ -7.096148557650395e-09,
+ 5.606495380401611,
+ -1.6563852511808363e-09
+ ]
+ },
+ {
+ "matrix": [
+ 1.0,
+ -2.382099218393724e-20,
+ 0.0,
+ 0.0,
+ 2.382099218393724e-20,
+ 1.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0000000000000002,
+ 0.0,
+ -5.204170427930421e-18,
+ -7.105427357601002e-15,
+ 5.551115123125783e-17,
+ 1.0
+ ],
+ "name": "Object_114"
+ },
+ {
+ "mesh": 0,
+ "name": "Object_115",
+ "skin": 0
+ },
+ {
+ "children": [
+ 117,
+ 118
+ ],
+ "name": "Mesh_GRP"
+ },
+ {
+ "name": "Mesh_mei"
+ },
+ {
+ "name": "Mesh_mei1"
+ }
+ ],
+ "samplers": [
+ {
+ "magFilter": 9729,
+ "minFilter": 9987,
+ "wrapS": 10497,
+ "wrapT": 10497
+ }
+ ],
+ "scene": 0,
+ "scenes": [
+ {
+ "name": "Sketchfab_Scene",
+ "nodes": [
+ 0
+ ]
+ }
+ ],
+ "skins": [
+ {
+ "inverseBindMatrices": 4,
+ "joints": [
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58,
+ 59,
+ 60,
+ 61,
+ 62,
+ 63,
+ 64,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 73,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 82,
+ 83,
+ 84,
+ 85,
+ 86,
+ 87,
+ 88,
+ 89,
+ 90,
+ 91,
+ 92,
+ 93,
+ 94,
+ 95,
+ 96,
+ 97,
+ 98,
+ 99,
+ 100,
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113
+ ],
+ "skeleton": 7
+ }
+ ],
+ "textures": [
+ {
+ "sampler": 0,
+ "source": 0
+ }
+ ]
+}
diff --git a/mei/textures/Mei_geo_002FACE_2Material_baseColor.png b/mei/textures/Mei_geo_002FACE_2Material_baseColor.png
new file mode 100644
index 0000000..f65ea94
--- /dev/null
+++ b/mei/textures/Mei_geo_002FACE_2Material_baseColor.png
Binary files differ
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..d1e52a5
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,1070 @@
+{
+ "name": "aschaffenburg.fun",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "gl-matrix": "^3.4.3",
+ "maplibre-gl": "^3.2.0",
+ "suncalc": "^1.9.0",
+ "three": "^0.154.0"
+ },
+ "devDependencies": {
+ "prettier": "^3.0.0",
+ "vite": "^4.4.3"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.12.tgz",
+ "integrity": "sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.12.tgz",
+ "integrity": "sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.12.tgz",
+ "integrity": "sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.12.tgz",
+ "integrity": "sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.12.tgz",
+ "integrity": "sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.12.tgz",
+ "integrity": "sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.12.tgz",
+ "integrity": "sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.12.tgz",
+ "integrity": "sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.12.tgz",
+ "integrity": "sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.12.tgz",
+ "integrity": "sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.12.tgz",
+ "integrity": "sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.12.tgz",
+ "integrity": "sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.12.tgz",
+ "integrity": "sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.12.tgz",
+ "integrity": "sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.12.tgz",
+ "integrity": "sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.12.tgz",
+ "integrity": "sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.12.tgz",
+ "integrity": "sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.12.tgz",
+ "integrity": "sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.12.tgz",
+ "integrity": "sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.12.tgz",
+ "integrity": "sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.12.tgz",
+ "integrity": "sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.12.tgz",
+ "integrity": "sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@mapbox/geojson-rewind": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz",
+ "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==",
+ "dependencies": {
+ "get-stream": "^6.0.1",
+ "minimist": "^1.2.6"
+ },
+ "bin": {
+ "geojson-rewind": "geojson-rewind"
+ }
+ },
+ "node_modules/@mapbox/jsonlint-lines-primitives": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz",
+ "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/@mapbox/point-geometry": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz",
+ "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ=="
+ },
+ "node_modules/@mapbox/tiny-sdf": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz",
+ "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA=="
+ },
+ "node_modules/@mapbox/unitbezier": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz",
+ "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw=="
+ },
+ "node_modules/@mapbox/vector-tile": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz",
+ "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==",
+ "dependencies": {
+ "@mapbox/point-geometry": "~0.1.0"
+ }
+ },
+ "node_modules/@mapbox/whoots-js": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz",
+ "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@maplibre/maplibre-gl-style-spec": {
+ "version": "19.2.2",
+ "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.2.2.tgz",
+ "integrity": "sha512-FbIm5WppbIFKeMQVE1xm4eawBPdlC5GcOCMz491Ip6kXTqe0pxp25rep60D69ioh8gTAAwS4up5MhI6vwMqsLg==",
+ "dependencies": {
+ "@mapbox/jsonlint-lines-primitives": "~2.0.2",
+ "@mapbox/unitbezier": "^0.0.1",
+ "json-stringify-pretty-compact": "^3.0.0",
+ "minimist": "^1.2.8",
+ "rw": "^1.3.3",
+ "sort-object": "^3.0.3"
+ },
+ "bin": {
+ "gl-style-format": "dist/gl-style-format.mjs",
+ "gl-style-migrate": "dist/gl-style-migrate.mjs",
+ "gl-style-validate": "dist/gl-style-validate.mjs"
+ }
+ },
+ "node_modules/@types/geojson": {
+ "version": "7946.0.10",
+ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
+ "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA=="
+ },
+ "node_modules/@types/mapbox__point-geometry": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz",
+ "integrity": "sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA=="
+ },
+ "node_modules/@types/mapbox__vector-tile": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz",
+ "integrity": "sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==",
+ "dependencies": {
+ "@types/geojson": "*",
+ "@types/mapbox__point-geometry": "*",
+ "@types/pbf": "*"
+ }
+ },
+ "node_modules/@types/pbf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz",
+ "integrity": "sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ=="
+ },
+ "node_modules/arr-union": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+ "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/assign-symbols": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+ "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/bytewise": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz",
+ "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==",
+ "dependencies": {
+ "bytewise-core": "^1.2.2",
+ "typewise": "^1.0.3"
+ }
+ },
+ "node_modules/bytewise-core": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz",
+ "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==",
+ "dependencies": {
+ "typewise-core": "^1.2"
+ }
+ },
+ "node_modules/earcut": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
+ "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ=="
+ },
+ "node_modules/esbuild": {
+ "version": "0.18.12",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.12.tgz",
+ "integrity": "sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.18.12",
+ "@esbuild/android-arm64": "0.18.12",
+ "@esbuild/android-x64": "0.18.12",
+ "@esbuild/darwin-arm64": "0.18.12",
+ "@esbuild/darwin-x64": "0.18.12",
+ "@esbuild/freebsd-arm64": "0.18.12",
+ "@esbuild/freebsd-x64": "0.18.12",
+ "@esbuild/linux-arm": "0.18.12",
+ "@esbuild/linux-arm64": "0.18.12",
+ "@esbuild/linux-ia32": "0.18.12",
+ "@esbuild/linux-loong64": "0.18.12",
+ "@esbuild/linux-mips64el": "0.18.12",
+ "@esbuild/linux-ppc64": "0.18.12",
+ "@esbuild/linux-riscv64": "0.18.12",
+ "@esbuild/linux-s390x": "0.18.12",
+ "@esbuild/linux-x64": "0.18.12",
+ "@esbuild/netbsd-x64": "0.18.12",
+ "@esbuild/openbsd-x64": "0.18.12",
+ "@esbuild/sunos-x64": "0.18.12",
+ "@esbuild/win32-arm64": "0.18.12",
+ "@esbuild/win32-ia32": "0.18.12",
+ "@esbuild/win32-x64": "0.18.12"
+ }
+ },
+ "node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/geojson-vt": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz",
+ "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg=="
+ },
+ "node_modules/get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-value": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+ "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/gl-matrix": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz",
+ "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA=="
+ },
+ "node_modules/global-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
+ "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
+ "dependencies": {
+ "ini": "^1.3.5",
+ "kind-of": "^6.0.2",
+ "which": "^1.3.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/ini": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
+ },
+ "node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/json-stringify-pretty-compact": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz",
+ "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA=="
+ },
+ "node_modules/kdbush": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz",
+ "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA=="
+ },
+ "node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/maplibre-gl": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-3.2.0.tgz",
+ "integrity": "sha512-TOo/cV9r8Xy3ngbJtY6JUC7rpjpObrsdO5pt14l5OIw4gY1v5XnxWP16VDSe0zRoncFfDCEBDmRwhfEFwtlbvw==",
+ "dependencies": {
+ "@mapbox/geojson-rewind": "^0.5.2",
+ "@mapbox/jsonlint-lines-primitives": "^2.0.2",
+ "@mapbox/point-geometry": "^0.1.0",
+ "@mapbox/tiny-sdf": "^2.0.6",
+ "@mapbox/unitbezier": "^0.0.1",
+ "@mapbox/vector-tile": "^1.3.1",
+ "@mapbox/whoots-js": "^3.1.0",
+ "@maplibre/maplibre-gl-style-spec": "^19.2.1",
+ "@types/geojson": "^7946.0.10",
+ "@types/mapbox__point-geometry": "^0.1.2",
+ "@types/mapbox__vector-tile": "^1.3.0",
+ "@types/pbf": "^3.0.2",
+ "earcut": "^2.2.4",
+ "geojson-vt": "^3.2.1",
+ "gl-matrix": "^3.4.3",
+ "global-prefix": "^3.0.0",
+ "kdbush": "^4.0.2",
+ "murmurhash-js": "^1.0.0",
+ "pbf": "^3.2.1",
+ "potpack": "^2.0.0",
+ "quickselect": "^2.0.0",
+ "supercluster": "^8.0.1",
+ "tinyqueue": "^2.0.3",
+ "vt-pbf": "^3.1.3"
+ },
+ "engines": {
+ "node": ">=16.14.0",
+ "npm": ">=8.1.0"
+ },
+ "funding": {
+ "url": "https://github.com/maplibre/maplibre-gl-js?sponsor=1"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/murmurhash-js": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz",
+ "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw=="
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
+ "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/pbf": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz",
+ "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==",
+ "dependencies": {
+ "ieee754": "^1.1.12",
+ "resolve-protobuf-schema": "^2.1.0"
+ },
+ "bin": {
+ "pbf": "bin/pbf"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+ "dev": true
+ },
+ "node_modules/postcss": {
+ "version": "8.4.26",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.26.tgz",
+ "integrity": "sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/potpack": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.0.0.tgz",
+ "integrity": "sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw=="
+ },
+ "node_modules/prettier": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz",
+ "integrity": "sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==",
+ "dev": true,
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/protocol-buffers-schema": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz",
+ "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw=="
+ },
+ "node_modules/quickselect": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz",
+ "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="
+ },
+ "node_modules/resolve-protobuf-schema": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz",
+ "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==",
+ "dependencies": {
+ "protocol-buffers-schema": "^3.3.1"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "3.26.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.2.tgz",
+ "integrity": "sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==",
+ "dev": true,
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=14.18.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/rw": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
+ "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ=="
+ },
+ "node_modules/set-value": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
+ "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "is-extendable": "^0.1.1",
+ "is-plain-object": "^2.0.3",
+ "split-string": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sort-asc": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz",
+ "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sort-desc": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz",
+ "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/sort-object": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz",
+ "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==",
+ "dependencies": {
+ "bytewise": "^1.1.0",
+ "get-value": "^2.0.2",
+ "is-extendable": "^0.1.1",
+ "sort-asc": "^0.2.0",
+ "sort-desc": "^0.2.0",
+ "union-value": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
+ "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/split-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "dependencies": {
+ "extend-shallow": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/split-string/node_modules/extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==",
+ "dependencies": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/split-string/node_modules/is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dependencies": {
+ "is-plain-object": "^2.0.4"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/suncalc": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/suncalc/-/suncalc-1.9.0.tgz",
+ "integrity": "sha512-vMJ8Byp1uIPoj+wb9c1AdK4jpkSKVAywgHX0lqY7zt6+EWRRC3Z+0Ucfjy/0yxTVO1hwwchZe4uoFNqrIC24+A=="
+ },
+ "node_modules/supercluster": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz",
+ "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==",
+ "dependencies": {
+ "kdbush": "^4.0.2"
+ }
+ },
+ "node_modules/three": {
+ "version": "0.154.0",
+ "resolved": "https://registry.npmjs.org/three/-/three-0.154.0.tgz",
+ "integrity": "sha512-Uzz8C/5GesJzv8i+Y2prEMYUwodwZySPcNhuJUdsVMH2Yn4Nm8qlbQe6qRN5fOhg55XB0WiLfTPBxVHxpE60ug=="
+ },
+ "node_modules/tinyqueue": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz",
+ "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA=="
+ },
+ "node_modules/typewise": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz",
+ "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==",
+ "dependencies": {
+ "typewise-core": "^1.2.0"
+ }
+ },
+ "node_modules/typewise-core": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz",
+ "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg=="
+ },
+ "node_modules/union-value": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
+ "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
+ "dependencies": {
+ "arr-union": "^3.1.0",
+ "get-value": "^2.0.6",
+ "is-extendable": "^0.1.1",
+ "set-value": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/vite": {
+ "version": "4.4.4",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.4.tgz",
+ "integrity": "sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==",
+ "dev": true,
+ "dependencies": {
+ "esbuild": "^0.18.10",
+ "postcss": "^8.4.25",
+ "rollup": "^3.25.2"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ },
+ "peerDependencies": {
+ "@types/node": ">= 14",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.4.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vt-pbf": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz",
+ "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==",
+ "dependencies": {
+ "@mapbox/point-geometry": "0.1.0",
+ "@mapbox/vector-tile": "^1.3.1",
+ "pbf": "^3.2.1"
+ }
+ },
+ "node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "which": "bin/which"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..17eace9
--- /dev/null
+++ b/package.json
@@ -0,0 +1,12 @@
+{
+ "dependencies": {
+ "gl-matrix": "^3.4.3",
+ "maplibre-gl": "^3.2.0",
+ "suncalc": "^1.9.0",
+ "three": "^0.154.0"
+ },
+ "devDependencies": {
+ "prettier": "^3.0.0",
+ "vite": "^4.4.3"
+ }
+}