Skip to content

Instantly share code, notes, and snippets.

@bluecookies
Last active July 14, 2018 11:19
Show Gist options
  • Save bluecookies/672a40a4f8b2e093da046c5bf2b0e3b1 to your computer and use it in GitHub Desktop.
Save bluecookies/672a40a4f8b2e093da046c5bf2b0e3b1 to your computer and use it in GitHub Desktop.
Dice input method
<!DOCTYPE html>
<html>
<head>
<title>Text input</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/94/three.min.js"></script>
<script src="https://cdn.rawgit.com/jeromeetienne/threex.keyboardstate/master/threex.keyboardstate.js"></script>
<script src="model.js"></script>
<script src="main.js"></script>
<style>
body {
background-color: lightgrey;
margin: 0;
position: relative;
}
#input {
margin-top: 40px;
width: 100%;
position: absolute;
text-align: center;
font: 40px Comic Sans MS;
}
</style>
</head>
<body>
<div id="input"></div>
</body>
</html>
// texture ripped by booscaster
// models by partyplanner64
window.onload = function() {
var width = window.innerWidth;
var height = window.innerHeight;
var renderer = new THREE.WebGLRenderer();
renderer.setSize(width, height);
document.body.appendChild(renderer.domElement);
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(75, width / height, 0.1, 10000);
camera.position.set(0, 200, 400);
var objectLoader = new THREE.ObjectLoader();
var model = objectLoader.parse(model_json);
var luigi = new THREE.Group();
luigi.add(model);
scene.add(luigi);
create_ground(scene);
var dice = create_input(scene);
var light = new THREE.AmbientLight(0x404040);
scene.add(light);
renderer.setClearColor(0xFF8888, 1);
//
var mixer = new THREE.AnimationMixer(luigi);
var clipAction = mixer.clipAction(idle_clip);
clipAction.play();
var clock = new THREE.Clock();
var keyboard = new THREEx.KeyboardState();
var state = "IDLE";
const move_speed = 500.0;
var y_speed = 0.0;
var dice_refresh = 0;
const jump_speed = 800.0;
const gravity = 4000.0;
const dice_freq = 0.3;
mixer.addEventListener("finished", function(e) {
if (state == "PUNCH") {
document.getElementById("input").innerHTML = document.getElementById("input").innerHTML.slice(0, -1);
stateIdle();
}
});
function animate() {
requestAnimationFrame(animate);
renderer.render(scene, camera);
// Update
var delta = clock.getDelta();
mixer.update(delta);
switch(state) {
case "IDLE":
if (keyboard.pressed("left")) {
stateLeft();
} else if (keyboard.pressed("right")) {
stateRight();
} else if (keyboard.pressed("space")) {
stateJump();
} else if (keyboard.pressed("down")) {
statePunch();
}
break;
case "LEFT":
luigi.position.x -= delta * move_speed;
if (!keyboard.pressed("left")) {
stateIdle();
}
break;
case "RIGHT":
luigi.position.x += delta * move_speed;
if (!keyboard.pressed("right")) {
stateIdle();
}
break;
case "JUMP_UP":
luigi.position.y += delta * y_speed * 2;
y_speed -= 2 * delta * gravity;
if (y_speed < 0) {
checkDice(dice, luigi.position);
state = "JUMP_DOWN";
}
break;
case "JUMP_DOWN":
luigi.position.y += delta * y_speed;
y_speed -= delta * gravity;
if (luigi.position.y <= -2) {
y_speed = 0.0;
luigi.position.y = 0;
stateIdle();
}
break;
}
dice_refresh -= delta;
if (dice_refresh <= 0) {
dice_refresh = dice_freq;
for (var i = 0; i < dice.length; i++) {
dice[i].roll();
}
}
}
function stateLeft() {
state = "LEFT";
luigi.rotation.y = -Math.PI/2;
mixer.stopAllAction();
clipAction = mixer.clipAction(run_clip);
clipAction.play();
}
function stateRight() {
state = "RIGHT";
luigi.rotation.y = +Math.PI/2;
mixer.stopAllAction();
clipAction = mixer.clipAction(run_clip);
clipAction.play();
}
function stateIdle() {
state = "IDLE";
mixer.stopAllAction();
clipAction = mixer.clipAction(idle_clip);
clipAction.play();
}
function stateJump() {
state = "JUMP_UP";
y_speed = jump_speed;
mixer.stopAllAction();
clipAction = mixer.clipAction(jump_clip).setEffectiveTimeScale(1.0);
clipAction.play();
}
function statePunch() {
state = "PUNCH";
mixer.stopAllAction();
clipAction = mixer.clipAction(punch_clip).reset().setLoop(THREE.loopOnce, 1);
clipAction.play();
}
setTimeout(animate, 0);
};
function create_ground(scene) {
var ground_box = new THREE.BoxGeometry(1000, 10, 400);
var loader = new THREE.TextureLoader();
loader.load(grass_img, function(texture) {
var ground_material = new THREE.MeshBasicMaterial( { map: texture, color: 0xFFFFFF } );
var ground = new THREE.Mesh(ground_box, ground_material);
ground.position.y -= 5;
scene.add(ground);
});
}
const cubeSize = 80;
function create_input(scene) {
var canvas = document.createElement('canvas');
canvas.width = 128;
canvas.height = 128;
var ctx = canvas.getContext('2d');
ctx.strokeStyle = "#885500";
ctx.strokeWidth = 40;
ctx.font="72px Comic Sans MS";
ctx.textBaseline = "middle";
ctx.textAlign = "center";
var loader = new THREE.TextureLoader();
function add_box(x, y, z, lower, upper) {
var letters = lower.concat(upper);
var materials = [];
for (var i = 0; i < 12; i++) {
ctx.fillStyle = "#FFFF00";
ctx.fillRect(0, 0, 128, 128);
ctx.strokeRect(0, 0, 128, 128);
ctx.strokeRect(10, 10, 108, 108);
ctx.fillStyle = "#888800";
ctx.fillText(letters[i], 64, 64);
// Doesn't work
//var texture = (new THREE.Texture(canvas)).clone();
//texture.needsUpdate = true;
var texture = loader.load(canvas.toDataURL());
var mat = new THREE.MeshBasicMaterial({ map: texture });
materials.push(mat);
}
var geom = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
var lower_box = new THREE.Mesh(geom, materials.slice(0, 6));
lower_box.position.set(x, y, z);
scene.add(lower_box);
var upper_box = new THREE.Mesh(geom, materials.slice(6, 12));
upper_box.position.set(x, y, z);
upper_box.visible = false;
scene.add(upper_box);
var dice = new InputDice(lower_box, upper_box, lower, upper);
return dice;
}
var dice = [];
dice.push(add_box(-200, 315, 0, "qwerty", "QWERTY"));
dice.push(add_box(-100, 315, 0, "asdfgh", "ASDFGH"));
dice.push(add_box(0, 315, 0, "zxcvbn", "ZXCVBN"));
dice.push(add_box(100, 315, 0, "uiopkl", "UIOPKL"));
dice.push(add_box(200, 315, 0, "jm .!?".split(""), ['J', 'M', ' ', '.', '!?', ':)']));
// move this
var geom = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
ctx.fillStyle = "#0000FF";
ctx.fillRect(0, 0, 128, 128);
ctx.strokeRect(0, 0, 128, 128);
ctx.strokeRect(10, 10, 108, 108);
ctx.fillStyle = "#000088";
ctx.font="20px Comic Sans MS";
ctx.fillText("SHIFT", 64, 64);
var texture = loader.load(canvas.toDataURL());
var mat = new THREE.MeshBasicMaterial({ map: texture });
var box = new THREE.Mesh(geom, mat);
box.position.set(-300, 315, 0);
scene.add(box);
var toggle = new Dice(box);
toggle.trigger = function() {
for (var i = 0; i < dice.length; i++) {
dice[i].toggle();
}
};
toggle.roll = function() {};
dice.push(toggle);
ctx.fillStyle = "#0000FF";
ctx.fillRect(0, 0, 128, 128);
ctx.strokeRect(0, 0, 128, 128);
ctx.strokeRect(10, 10, 108, 108);
ctx.fillStyle = "#000088";
ctx.font="20px Comic Sans MS";
ctx.fillText("Submit", 64, 64);
var texture = loader.load(canvas.toDataURL());
ctx.fillStyle = "#0000FF";
ctx.fillRect(0, 0, 128, 128);
ctx.strokeRect(0, 0, 128, 128);
ctx.strokeRect(10, 10, 108, 108);
ctx.fillStyle = "#000088";
ctx.font="20px Comic Sans MS";
ctx.fillText("Clear", 64, 64);
var texture2 = loader.load(canvas.toDataURL());
var mat2 = new THREE.MeshBasicMaterial({ map: texture2 });
var tex = [];
for (var i = 0; i < 5; i++) {
tex.push(new THREE.MeshBasicMaterial({ map: texture }));
}
tex.push(mat2);
box = new THREE.Mesh(geom, tex);
box.position.set(300, 315, 0);
scene.add(box);
var submit = new Dice(box);
submit.trigger = function() {
var text = document.getElementById("input").innerHTML;
if (this.num < 5) {
alert(text);
} else {
document.getElementById("input").innerHTML = "";
}
};
dice.push(submit);
return dice;
}
function InputDice(lower_box, upper_box, lower, upper) {
this.boxes = [lower_box, upper_box];
this.cases = [lower, upper];
this.case = 0;
this.num = 0;
this.box = this.boxes[this.case];
this.letters = this.cases[this.case];
}
function Dice(box) {
this.box = box;
}
// I don't actually know js
// you might be able to tell
Dice.rotations = [
new THREE.Euler(0, -Math.PI/2, 0),
new THREE.Euler(0, Math.PI/2, 0),
new THREE.Euler(Math.PI/2, 0, 0),
new THREE.Euler(-Math.PI/2, 0, 0),
new THREE.Euler(0, 0, 0),
new THREE.Euler(0, Math.PI, 0),
];
Dice.prototype.roll = function() {
var r = Math.floor(Math.random() * 6);
this.num = r;
this.box.rotation.copy(Dice.rotations[r]);
}
InputDice.prototype.roll = Dice.prototype.roll;
InputDice.prototype.trigger = function() {
var curr_letter = this.letters[this.num];
document.getElementById("input").innerHTML += curr_letter;
};
InputDice.prototype.toggle = function() {
this.case = 1 - this.case;
this.box.visible = false;
this.box = this.boxes[this.case];
this.box.visible = true;
this.letters = this.cases[this.case];
}
Dice.prototype.toggle = function() {};
function checkDice(dice, position) {
var x = position.x;
for (var i = 0; i < dice.length; i++) {
var dice_x = dice[i].box.position.x;
if (Math.abs(x - dice_x) < cubeSize / 2) {
dice[i].trigger();
}
}
}
var model_json = {
"metadata": {
"version": 4.5,
"type": "Object",
"generator": "Object3D.toJSON"
},
"geometries": [
{
"uuid": "130B14E9-1125-46F6-B0FB-B023C1ADA013",
"type": "Geometry",
"data": {
"vertices": [
0,
6.330360174179077,
-13.023397233337164,
11.770513448864222,
8.671274613589048,
-4.6818288788199425,
14.507075399160385,
4.945593886077404,
-8.044832721352577,
0,
6.330360174179077,
-13.023397233337164,
14.507075399160385,
4.945593886077404,
-8.044832721352577,
0,
2.472796943038702,
-16.05669481679797,
0,
-2.242002561688423,
-14.474104773253202,
-14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
-14.507075399160385,
4.945593886077404,
-8.044832721352577,
0,
-2.242002561688423,
-14.474104773253202,
-14.507075399160385,
4.945593886077404,
-8.044832721352577,
0,
2.472796943038702,
-16.05669481679797,
0,
-1.9122963026165962,
-9.165834002196789,
-10.451688412576914,
-0.8242656476795673,
-0.8902068994939327,
-14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
0,
-1.9122963026165962,
-9.165834002196789,
-14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
0,
-2.242002561688423,
-14.474104773253202,
0,
2.472796943038702,
-16.05669481679797,
-14.507075399160385,
4.945593886077404,
-8.044832721352577,
-11.770513448864222,
8.671274613589048,
-4.6818288788199425,
0,
2.472796943038702,
-16.05669481679797,
-11.770513448864222,
8.671274613589048,
-4.6818288788199425,
0,
6.330360174179077,
-13.023397233337164,
0,
2.472796943038702,
-16.05669481679797,
14.507075399160385,
4.945593886077404,
-8.044832721352577,
14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
0,
2.472796943038702,
-16.05669481679797,
14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
0,
-2.242002561688423,
-14.474104773253202,
0,
-2.242002561688423,
-14.474104773253202,
14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
10.451688412576914,
-0.8242656476795673,
-0.8902068994939327,
0,
-2.242002561688423,
-14.474104773253202,
10.451688412576914,
-0.8242656476795673,
-0.8902068994939327,
0,
-1.9122963026165962,
-9.165834002196789,
-11.770513448864222,
8.671274613589048,
-4.6818288788199425,
-14.507075399160385,
4.945593886077404,
-8.044832721352577,
-14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
-11.770513448864222,
8.671274613589048,
-4.6818288788199425,
-14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
-10.451688412576914,
-0.8242656476795673,
-0.8902068994939327,
14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
14.507075399160385,
4.945593886077404,
-8.044832721352577,
11.770513448864222,
8.671274613589048,
-4.6818288788199425,
14.507075399160385,
0.13188250362873077,
-6.2973895482718945,
11.770513448864222,
8.671274613589048,
-4.6818288788199425,
10.451688412576914,
-0.8242656476795673,
-0.8902068994939327,
0,
51.79685330018401,
2.901415079832077,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
-18.72731551527977,
46.587494406849146,
12.0013078302145,
15.331341046839952,
31.190212108194828,
14.737869780510664,
14.605987276881933,
22.815673127770424,
15.166487917304039,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-8.110773973166943,
-4.088357612490654,
13.748751003295183,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
-11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
10.286835283041,
0.6594125181436539,
15.694017931818962,
11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
10.286835283041,
0.6594125181436539,
15.694017931818962,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
13.550927247852087,
10.352776534855366,
16.946901716291904,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
-13.550927247852087,
10.352776534855366,
16.946901716291904,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-13.550927247852087,
10.352776534855366,
16.946901716291904,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
-15.331341046839952,
31.190212108194828,
14.737869780510664,
17.111754845827818,
38.147014174610376,
13.35310349240899,
18.72731551527977,
46.587494406849146,
12.0013078302145,
0,
52.72003082558513,
23.73885065317154,
17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
52.72003082558513,
23.73885065317154,
0,
42.26834241300821,
23.442115020006895,
-8.110773973166943,
-4.088357612490654,
13.748751003295183,
0,
-7.286508325487375,
11.968337204307318,
0,
-5.1434176415205,
18.694344889372587,
-13.550927247852087,
10.352776534855366,
16.946901716291904,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
0,
0.36267688497900963,
22.78270250186324,
-13.550927247852087,
10.352776534855366,
16.946901716291904,
0,
0.36267688497900963,
22.78270250186324,
0,
11.572689693421125,
24.892822559922934,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
-13.550927247852087,
10.352776534855366,
16.946901716291904,
0,
11.572689693421125,
24.892822559922934,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
11.572689693421125,
24.892822559922934,
0,
22.222201861441135,
23.475085645914078,
0,
34.35539219528437,
22.057348731905222,
-15.331341046839952,
31.190212108194828,
14.737869780510664,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
34.35539219528437,
22.057348731905222,
-14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
22.222201861441135,
23.475085645914078,
0,
34.35539219528437,
22.057348731905222,
0,
42.26834241300821,
23.442115020006895,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
34.35539219528437,
22.057348731905222,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
-15.331341046839952,
31.190212108194828,
14.737869780510664,
0,
-5.1434176415205,
18.694344889372587,
0,
-7.286508325487375,
11.968337204307318,
8.110773973166943,
-4.088357612490654,
13.748751003295183,
13.550927247852087,
10.352776534855366,
16.946901716291904,
0,
11.572689693421125,
24.892822559922934,
0,
0.36267688497900963,
22.78270250186324,
13.550927247852087,
10.352776534855366,
16.946901716291904,
0,
0.36267688497900963,
22.78270250186324,
10.286835283041,
0.6594125181436539,
15.694017931818962,
14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
22.222201861441135,
23.475085645914078,
0,
11.572689693421125,
24.892822559922934,
14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
11.572689693421125,
24.892822559922934,
13.550927247852087,
10.352776534855366,
16.946901716291904,
0,
34.35539219528437,
22.057348731905222,
0,
22.222201861441135,
23.475085645914078,
14.605987276881933,
22.815673127770424,
15.166487917304039,
0,
34.35539219528437,
22.057348731905222,
14.605987276881933,
22.815673127770424,
15.166487917304039,
15.331341046839952,
31.190212108194828,
14.737869780510664,
11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
10.286835283041,
0.6594125181436539,
15.694017931818962,
8.110773973166943,
-4.088357612490654,
13.748751003295183,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
-18.72731551527977,
46.587494406849146,
12.0013078302145,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
0,
51.79685330018401,
2.901415079832077,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
0,
33.728950303047895,
-14.80381103232503,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
14.605987276881933,
22.815673127770424,
15.166487917304039,
13.550927247852087,
10.352776534855366,
16.946901716291904,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
13.550927247852087,
10.352776534855366,
16.946901716291904,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
18.72731551527977,
46.587494406849146,
12.0013078302145,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
18.72731551527977,
46.587494406849146,
12.0013078302145,
17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
16.320459824055433,
-23.01349688321352,
0,
11.242983434349298,
-15.924812313169241,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
0,
16.320459824055433,
-23.01349688321352,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
0,
11.242983434349298,
-15.924812313169241,
0,
-2.9673563316464424,
-9.231775254011154,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
0,
-2.9673563316464424,
-9.231775254011154,
-8.176715224981308,
-1.945266928523779,
-5.011535137891769,
0,
-7.286508325487375,
11.968337204307318,
-11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
-8.176715224981308,
-1.945266928523779,
-5.011535137891769,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
0,
-2.9673563316464424,
-9.231775254011154,
0,
11.242983434349298,
-15.924812313169241,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
0,
11.242983434349298,
-15.924812313169241,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
0,
-7.286508325487375,
11.968337204307318,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
6.36333080008626,
6.2973895482718945,
33.26736154034734,
8.869098369032145,
11.078130304813385,
32.97062590718269,
0,
11.242983434349298,
39.235044829547405,
-6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
18.925139270722866,
33.03656715899706,
0,
11.86942532658577,
-1.3188250362873077,
6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
18.925139270722866,
33.03656715899706,
0,
11.242983434349298,
39.235044829547405,
6.8249195627868176,
16.254518572241068,
33.234390914440155,
8.869098369032145,
11.078130304813385,
32.97062590718269,
0,
11.86942532658577,
-1.3188250362873077,
-6.36333080008626,
6.2973895482718945,
33.26736154034734,
-8.869098369032145,
11.078130304813385,
32.97062590718269,
0,
11.86942532658577,
-1.3188250362873077,
-6.8249195627868176,
16.254518572241068,
33.234390914440155,
-8.869098369032145,
11.078130304813385,
32.97062590718269,
0,
11.242983434349298,
39.235044829547405,
-6.36333080008626,
6.2973895482718945,
33.26736154034734,
0,
4.2532107420265675,
33.06953778490424,
0,
11.242983434349298,
39.235044829547405,
6.36333080008626,
6.2973895482718945,
33.26736154034734,
0,
4.2532107420265675,
33.06953778490424,
0,
11.86942532658577,
-1.3188250362873077,
22.321113739162683,
29.37682768329978,
27.002942617982626,
20.07911117747426,
30.1021814532578,
3.330033216625452,
0,
39.33395670726895,
3.3630038425326347,
0,
32.607949022203684,
38.509691059589386,
22.321113739162683,
29.37682768329978,
27.002942617982626,
0,
39.33395670726895,
3.3630038425326347,
-19.45266928523779,
30.1021814532578,
3.330033216625452,
-21.727642472833395,
29.37682768329978,
27.002942617982626,
0,
39.33395670726895,
3.3630038425326347,
-21.727642472833395,
29.37682768329978,
27.002942617982626,
0,
32.607949022203684,
38.509691059589386,
0,
39.33395670726895,
3.3630038425326347,
16.91393109038472,
22.617849372327328,
-0.9561481513082981,
14.638957902789116,
6.462242677807808,
5.901742037385702,
26.277588848024607,
13.320132866501808,
-6.528183929622173,
14.770840406417847,
6.594125181436539,
5.275300145149231,
15.562135428190231,
15.100546665489674,
-6.00065391510725,
26.07976509258151,
13.35310349240899,
-6.495213303714991,
-26.277588848024607,
13.320132866501808,
-6.528183929622173,
-14.638957902789116,
6.462242677807808,
5.901742037385702,
-16.91393109038472,
22.617849372327328,
-0.9561481513082981,
-26.145706344395876,
13.35310349240899,
-6.495213303714991,
-15.562135428190231,
15.100546665489674,
-6.00065391510725,
-14.704899154603481,
6.594125181436539,
5.275300145149231,
18.72731551527977,
46.587494406849146,
12.0013078302145,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
0,
51.79685330018401,
2.901415079832077,
0,
51.79685330018401,
2.901415079832077,
-18.72731551527977,
46.587494406849146,
12.0013078302145,
0,
52.72003082558513,
23.73885065317154,
0,
51.79685330018401,
2.901415079832077,
0,
52.72003082558513,
23.73885065317154,
18.72731551527977,
46.587494406849146,
12.0013078302145,
-14.836781658232212,
28.981180172413588,
-21.233083084225655,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
0,
33.728950303047895,
-14.80381103232503,
0,
33.728950303047895,
-14.80381103232503,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
0,
51.79685330018401,
2.901415079832077,
0,
33.728950303047895,
-14.80381103232503,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
14.836781658232212,
28.981180172413588,
-21.233083084225655,
14.836781658232212,
28.981180172413588,
-21.233083084225655,
0,
25.980853214859962,
-25.618176329880953,
0,
33.728950303047895,
-14.80381103232503,
0,
16.320459824055433,
-23.01349688321352,
0,
25.980853214859962,
-25.618176329880953,
14.836781658232212,
28.981180172413588,
-21.233083084225655,
0,
16.320459824055433,
-23.01349688321352,
14.836781658232212,
28.981180172413588,
-21.233083084225655,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
0,
-7.286508325487375,
11.968337204307318,
0,
-2.9673563316464424,
-9.231775254011154,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
-8.176715224981308,
-1.945266928523779,
-5.011535137891769,
0,
-2.9673563316464424,
-9.231775254011154,
0,
-7.286508325487375,
11.968337204307318,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
-21.43090683966875,
32.17933088541031,
-13.616868499666452,
-14.836781658232212,
28.981180172413588,
-21.233083084225655,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
-14.836781658232212,
28.981180172413588,
-21.233083084225655,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
0,
33.728950303047895,
-14.80381103232503,
0,
25.980853214859962,
-25.618176329880953,
-14.836781658232212,
28.981180172413588,
-21.233083084225655,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
0,
11.242983434349298,
-15.924812313169241,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
0,
11.242983434349298,
-15.924812313169241,
0,
16.320459824055433,
-23.01349688321352,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
-14.836781658232212,
28.981180172413588,
-21.233083084225655,
0,
25.980853214859962,
-25.618176329880953,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
0,
25.980853214859962,
-25.618176329880953,
0,
16.320459824055433,
-23.01349688321352,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-12.924485355615616,
21.331994961947203,
-19.617522414773703,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
0,
18.925139270722866,
33.03656715899706,
6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
11.86942532658577,
-1.3188250362873077,
-8.869098369032145,
11.078130304813385,
32.97062590718269,
-6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
11.86942532658577,
-1.3188250362873077,
8.869098369032145,
11.078130304813385,
32.97062590718269,
6.36333080008626,
6.2973895482718945,
33.26736154034734,
0,
11.86942532658577,
-1.3188250362873077,
0,
4.2532107420265675,
33.06953778490424,
-6.36333080008626,
6.2973895482718945,
33.26736154034734,
0,
11.86942532658577,
-1.3188250362873077,
0,
11.242983434349298,
39.235044829547405,
8.869098369032145,
11.078130304813385,
32.97062590718269,
6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
11.242983434349298,
39.235044829547405,
0,
18.925139270722866,
33.03656715899706,
-6.8249195627868176,
16.254518572241068,
33.234390914440155,
0,
11.242983434349298,
39.235044829547405,
-8.869098369032145,
11.078130304813385,
32.97062590718269,
-6.36333080008626,
6.2973895482718945,
33.26736154034734,
0,
11.242983434349298,
39.235044829547405,
0,
4.2532107420265675,
33.06953778490424,
6.36333080008626,
6.2973895482718945,
33.26736154034734,
8.110773973166943,
-4.088357612490654,
13.748751003295183,
0,
-7.286508325487375,
11.968337204307318,
11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
10.286835283041,
0.6594125181436539,
15.694017931818962,
0,
0.36267688497900963,
22.78270250186324,
0,
-5.1434176415205,
18.694344889372587,
0,
-5.1434176415205,
18.694344889372587,
0,
0.36267688497900963,
22.78270250186324,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
-11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
0,
-7.286508325487375,
11.968337204307318,
-8.110773973166943,
-4.088357612490654,
13.748751003295183,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
-16.221547946333885,
22.716761250048876,
-0.5605006404221058,
-15.331341046839952,
31.190212108194828,
14.737869780510664,
-20.046140551567078,
28.058002647012472,
-8.539392109960318,
-15.331341046839952,
31.190212108194828,
14.737869780510664,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
52.72003082558513,
23.73885065317154,
-18.72731551527977,
46.587494406849146,
12.0013078302145,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
52.72003082558513,
23.73885065317154,
-17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
42.26834241300821,
23.442115020006895,
17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
42.26834241300821,
23.442115020006895,
0,
34.35539219528437,
22.057348731905222,
17.111754845827818,
38.147014174610376,
13.35310349240899,
0,
34.35539219528437,
22.057348731905222,
15.331341046839952,
31.190212108194828,
14.737869780510664,
17.111754845827818,
38.147014174610376,
13.35310349240899,
15.331341046839952,
31.190212108194828,
14.737869780510664,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
17.111754845827818,
38.147014174610376,
13.35310349240899,
16.221547946333885,
22.716761250048876,
-0.5605006404221058,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
14.836781658232212,
28.981180172413588,
-21.233083084225655,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
12.924485355615616,
21.331994961947203,
-19.617522414773703,
21.43090683966875,
32.17933088541031,
-13.616868499666452,
20.046140551567078,
28.058002647012472,
-8.539392109960318,
-16.946901716291904,
22.617849372327328,
-1.2199131585657597,
-15.562135428190231,
15.100546665489674,
-6.00065391510725,
-23.672909401357174,
25.156587567180395,
-8.605333361774683,
-23.672909401357174,
25.156587567180395,
-8.605333361774683,
-15.562135428190231,
15.100546665489674,
-6.00065391510725,
-26.145706344395876,
13.35310349240899,
-6.495213303714991,
23.60696814954281,
25.156587567180395,
-8.605333361774683,
15.562135428190231,
15.100546665489674,
-6.00065391510725,
16.91393109038472,
22.617849372327328,
-1.2199131585657597,
26.07976509258151,
13.35310349240899,
-6.495213303714991,
15.562135428190231,
15.100546665489674,
-6.00065391510725,
23.60696814954281,
25.156587567180395,
-8.605333361774683,
26.277588848024607,
13.320132866501808,
-6.528183929622173,
23.771821279078722,
25.32144069671631,
-8.704245239496231,
16.91393109038472,
22.617849372327328,
-0.9561481513082981,
-16.91393109038472,
22.617849372327328,
-0.9561481513082981,
-23.771821279078722,
25.32144069671631,
-8.704245239496231,
-26.277588848024607,
13.320132866501808,
-6.528183929622173,
0,
36.49848287925124,
3.659739475697279,
20.07911117747426,
30.1021814532578,
3.330033216625452,
22.321113739162683,
29.37682768329978,
27.002942617982626,
0,
36.49848287925124,
3.659739475697279,
0,
32.607949022203684,
38.509691059589386,
-21.727642472833395,
29.37682768329978,
27.002942617982626,
-21.727642472833395,
29.37682768329978,
27.002942617982626,
-19.45266928523779,
30.1021814532578,
3.330033216625452,
0,
36.49848287925124,
3.659739475697279,
22.321113739162683,
29.37682768329978,
27.002942617982626,
0,
32.607949022203684,
38.509691059589386,
0,
36.49848287925124,
3.659739475697279,
-8.176715224981308,
-1.945266928523779,
-5.011535137891769,
-11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
11.407836563885212,
-1.1539719067513943,
2.9343857057392597,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
-16.254518572241068,
10.616541542112827,
2.2090319357812405,
-11.86942532658577,
15.891841687262058,
-11.111100930720568,
-8.176715224981308,
-1.945266928523779,
-5.011535137891769,
8.176715224981308,
-1.945266928523779,
-5.011535137891769,
11.86942532658577,
15.891841687262058,
-11.111100930720568,
16.254518572241068,
10.616541542112827,
2.2090319357812405,
0,
-5.1434176415205,
18.694344889372587,
8.110773973166943,
-4.088357612490654,
13.748751003295183,
10.286835283041,
0.6594125181436539,
15.694017931818962,
-10.286835283041,
0.6594125181436539,
15.694017931818962,
-8.110773973166943,
-4.088357612490654,
13.748751003295183,
0,
-5.1434176415205,
18.694344889372587
],
"normals": [
0,
0.6614173228346457,
-0.65625,
0.7480314960629921,
0.5590551181102362,
-0.0625,
0.7795275590551181,
0.25984251968503935,
-0.4453125,
0,
0.23622047244094488,
-0.90625,
0,
-0.78125,
-0.5078125,
-0.7265625,
-0.5625,
-0.125,
-0.7734375,
0.25984251968503935,
-0.4453125,
0,
-0.9296875,
-0.0078125,
-0.640625,
-0.5625,
0.3779527559055118,
-0.7421875,
0.5590551181102362,
-0.0625,
0.7322834645669292,
-0.5625,
-0.125,
0.6456692913385826,
-0.5625,
0.3779527559055118,
0,
0.8503937007874016,
-0.3984375,
-0.640625,
0.4881889763779528,
-0.46875,
-0.734375,
0.5433070866141733,
0.1968503937007874,
0.7559055118110236,
-0.0859375,
0.5511811023622047,
0.7795275590551181,
0.015748031496062992,
0.5275590551181102,
0.9212598425196851,
-0.1875,
0,
-0.53125,
-0.71875,
0.25984251968503935,
-0.6640625,
-0.4140625,
0.5118110236220472,
-0.703125,
-0.609375,
-0.0390625,
0.6692913385826772,
-0.4140625,
0.5118110236220472,
0.7086614173228346,
-0.609375,
-0.0390625,
0.8976377952755905,
-0.21875,
-0.1484375,
0.7716535433070866,
-0.125,
0.5196850393700787,
-0.890625,
-0.21875,
-0.1484375,
-0.765625,
-0.125,
0.5196850393700787,
-0.7734375,
0.015748031496062992,
0.5275590551181102,
-0.9140625,
-0.1875,
0,
-0.75,
-0.0859375,
0.5511811023622047,
0.7480314960629921,
-0.109375,
0.5590551181102362,
0.7401574803149606,
0.5433070866141733,
0.1968503937007874,
0,
0.7165354330708661,
0.6062992125984252,
0,
-0.0234375,
0.937007874015748,
0,
-0.9296875,
-0.0234375,
0,
-0.703125,
0.6141732283464567,
0,
-0.3984375,
0.8503937007874016,
0,
-0.0625,
0.937007874015748,
0,
0.07874015748031496,
0.937007874015748,
0,
0,
0.937007874015748,
-0.7421875,
-0.109375,
0.5590551181102362,
0.5354330708661418,
-0.71875,
0.25984251968503935,
-0.8671875,
-0.3359375,
-0.015625,
0.6456692913385826,
0.4881889763779528,
-0.46875,
0,
0.7637795275590551,
-0.546875,
0.8740157480314961,
-0.3359375,
-0.015625,
0,
-0.546875,
-0.7578125,
0,
-0.6171875,
-0.703125,
-0.71875,
-0.4140625,
-0.4296875,
-0.6171875,
-0.5078125,
-0.4765625,
0,
-0.7421875,
-0.5625,
-0.59375,
-0.609375,
-0.375,
0.5984251968503937,
-0.609375,
-0.375,
0.7244094488188977,
-0.4140625,
-0.4296875,
0.6220472440944882,
-0.5078125,
-0.4765625,
0.5669291338582677,
-0.671875,
0.3228346456692913,
0.8740157480314961,
-0.0390625,
0.3464566929133858,
-0.609375,
0.6220472440944882,
0.33858267716535434,
0,
0.8818897637795275,
0.33070866141732286,
0,
-0.1171875,
-0.921875,
0.6141732283464567,
0.6220472440944882,
0.33858267716535434,
-0.5625,
-0.671875,
0.3228346456692913,
-0.8671875,
-0.0390625,
0.3464566929133858,
0,
-0.8828125,
0.2992125984251969,
0.8110236220472441,
-0.3359375,
0.33070866141732286,
0.8740157480314961,
-0.3359375,
-0.0859375,
0,
0.937007874015748,
0.07874015748031496,
0,
-0.234375,
0.9133858267716536,
-0.859375,
-0.34375,
-0.09375,
-0.8046875,
-0.34375,
0.3228346456692913,
0.6220472440944882,
0.2283464566929134,
0.6614173228346457,
0.6141732283464567,
0.2047244094488189,
0.6850393700787402,
-0.140625,
-0.734375,
-0.5625,
-0.3828125,
-0.203125,
-0.828125,
-0.1171875,
-0.484375,
-0.7890625,
-0.6171875,
0.2283464566929134,
0.6614173228346457,
-0.609375,
0.2047244094488189,
0.6850393700787402,
0.11811023622047244,
-0.484375,
-0.7890625,
0.3858267716535433,
-0.203125,
-0.828125,
0.14173228346456693,
-0.7265625,
-0.5625,
-0.4140625,
0.33070866141732286,
-0.765625,
0.41732283464566927,
0.33070866141732286,
-0.765625,
0,
0.3228346456692913,
-0.875,
0.6850393700787402,
0.4330708661417323,
-0.46875,
0.4409448818897638,
0.14173228346456693,
-0.8125,
-0.4375,
0.14173228346456693,
-0.8125,
-0.6796875,
0.4251968503937008,
-0.46875,
0.6299212598425197,
0.2440944881889764,
0.6456692913385826,
-0.625,
0.2440944881889764,
0.6456692913385826,
0,
-0.9296875,
-0.046875
],
"colors": [ 11711154 ],
"uvs": [
[
0.7520800232887268,
0.9428529739379883,
0.7519819736480713,
0.9220830202102661,
0.7443829774856567,
0.9221630096435547,
0.7445979714393616,
0.9422209858894348,
0.7588160037994385,
0.9428049921989441,
0.758948028087616,
0.9204469919204712,
0.7444030046463013,
0.9208109974861145,
0.7685449719429016,
0.9378629922866821,
0.7602540254592896,
0.9358900189399719,
0.7591099739074707,
0.9349589943885803,
0.7685449719429016,
0.938169002532959,
0.7520939707756042,
0.9212219715118408,
0.7586920261383057,
0.9217990040779114,
0.7779809832572937,
0.9349589943885803,
0.7768359780311584,
0.9358900189399719,
0.7431529760360718,
0.9417449831962585,
0.7433919906616211,
0.9322159886360168,
0.7436789870262146,
0.941474974155426,
0.759880006313324,
0.9362810254096985,
0.7626140117645264,
0.9423789978027344,
0.7620390057563782,
0.9386450052261353,
0.7595250010490417,
0.9297289848327637,
0.7782459855079651,
0.9298160076141357,
0.03161809965968132,
0.02843319997191429,
0.0210695993155241,
0.03817259892821312,
0.022535599768161774,
0.03112890012562275,
0.5231069922447205,
0.6522849798202515,
0.6917999982833862,
0.6519290208816528,
0.6204140186309814,
0.9890239834785461,
0.6290169954299927,
0.7717159986495972,
0.6248530149459839,
0.7585049867630005,
0.6199460029602051,
0.7608969807624817,
0.7249600291252136,
0.7578259706497192,
0.7268800139427185,
0.757004976272583,
0.7279000282287598,
0.755262017250061,
0.7249839901924133,
0.7555099725723267,
0.7268779873847961,
0.757004976272583,
0.72496497631073,
0.7578629851341248,
0.7249529957771301,
0.7555469870567322,
0.987654983997345,
0.9885630011558533,
0.9879559874534607,
0.6522859930992126,
0.6916880011558533,
0.6523500084877014,
0.6201440095901489,
0.9889199733734131,
0.6200670003890991,
0.98853600025177,
0.6919839978218079,
0.6523159742355347,
0.5235959887504578,
0.6523609757423401,
0.909949004650116,
0.8736510276794434,
0.9032220244407654,
0.7837709784507751,
0.6078130006790161,
0.6192100048065186,
0.6078130006790161,
0.8234879970550537,
0.640625,
0.7849270105361938,
0.640625,
0.7747250199317932,
0.5402820110321045,
0.6131860017776489,
0.4620540142059326,
0.90625,
0.011160699650645256,
0.9308040142059326,
0.011334200389683247,
0.671314001083374,
0.08665759861469269,
0.3628450036048889,
0.12325400114059448,
0.6472870111465454,
0.559257984161377,
0.6438630223274231,
0.559257984161377,
0.36507999897003174,
0.559257984161377,
-0.008839249610900879,
0.10654599964618683,
-0.0038971900939941406,
0.6078130006790161,
0.9897890090942383,
0.30567601323127747,
0.8736500144004822,
0.3423619866371155,
0.9911720156669617,
0.6522330045700073,
0.7717159986495972,
0.5401059985160828,
0.6125370264053345,
0.9848799705505371,
0.3654490113258362,
0.5183470249176025,
0.36507999897003174,
0.5183470249176025,
0.6438630223274231,
0.9564120173454285,
0.6472870111465454,
0.5183470249176025,
-0.008839369751513004,
0.973576009273529,
-0.001292470027692616,
0.6613039970397949,
0.7608969807624817,
0.6563969850540161,
0.7585049867630005,
0.023321200162172318,
0.03472699970006943,
0.021739300340414047,
0.04019390046596527,
0.04216650128364563,
0.03817259892821312,
0.03161809965968132,
0.03694840148091316,
0.6204109787940979,
0.9889529943466187,
0.9873070120811462,
0.6523270010948181,
0.9886059761047363,
0.9874730110168457,
0.041496798396110535,
0.04019390046596527,
0.04070049896836281,
0.03112890012562275,
0.039914801716804504,
0.034727100282907486,
0.03161809965968132,
0.04484890028834343,
0.03161809965968132,
0.046300601214170456,
0.026330899447202682,
0.0442579984664917,
0.025416800752282143,
0.04286570101976395,
0.5183320045471191,
0.9594359993934631,
0.6329349875450134,
0.9729350209236145,
0.7723399996757507,
0.8946880102157593,
0.6833109855651855,
0.9695550203323364,
0.695110023021698,
0.9588000178337097,
0.6936650276184082,
0.9336519837379456,
0.6837729811668396,
0.933184027671814,
0.6301460266113281,
0.7626050114631653,
0.683987021446228,
0.9330750107765198,
0.68299400806427,
0.9700120091438293,
0.772333025932312,
0.8949589729309082,
0.6331800222396851,
0.973097026348114,
0.5198580026626587,
0.9937739968299866,
0.6511039733886719,
0.7626050114631653,
0.03918210044503212,
0.04173469915986061,
0.0369051992893219,
0.0442579984664917,
0.03781929984688759,
0.04286570101976395,
0.6536229848861694,
0.7492870092391968,
0.6569679975509644,
0.741316020488739,
0.6450989842414856,
0.741051971912384,
0.6390169858932495,
0.7354239821434021,
0.6359580159187317,
0.732712984085083,
0.6450989842414856,
0.7282620072364807,
0.6542400121688843,
0.732712984085083,
0.6509050130844116,
0.7351509928703308,
0.6392980217933655,
0.7459849715232849,
0.6365759968757629,
0.7492870092391968,
0.633230984210968,
0.741316020488739,
0.6450989842414856,
0.7527040243148804,
0.6511859893798828,
0.7457119822502136,
0.0408766008913517,
0.039441999047994614,
0.03995079919695854,
0.03914560005068779,
0.03161809965968132,
0.034871701151132584,
0.03161809965968132,
0.0375622995197773,
0.0235431008040905,
0.03914560005068779,
0.022600799798965454,
0.039441999047994614,
0.004464290104806423,
0.575892984867096,
0.004464290104806423,
0.7589290142059326,
0.12723200023174286,
0.654017984867096,
0.6733180284500122,
0.7563549876213074,
0.6766049861907959,
0.7502859830856323,
0.6740549802780151,
0.7453719973564148,
0.03161809965968132,
0.02805590070784092,
0.024502700194716454,
0.03979019820690155,
0.03873340040445328,
0.03979019820690155,
0.03161809965968132,
0.04097360000014305,
0.640625,
0.7683410048484802,
0.02405400015413761,
0.04173469915986061,
0.6449210047721863,
0.7328609824180603,
0.6369969844818115,
0.7408440113067627,
0.6531509757041931,
0.7402979731559753,
0.6453390121459961,
0.7471280097961426,
0.015625,
1.0133899450302124,
0.025258999317884445,
0.03832520171999931,
0.31240400671958923,
0.7837709784507751,
0.8732640147209167,
0.9911730289459229,
0.03797709941864014,
0.03832520171999931,
0.6758409738540649,
0.743349015712738,
0.6739940047264099,
0.7453719973564148,
0.08482140302658081,
0.5513389706611633,
0.627232015132904,
0.970982015132904,
0.48583999276161194,
0.9707030057907104,
0.5341799855232239,
0.9086909890174866,
0.732142984867096,
0.908482015132904,
0.4598209857940674,
0.9732139706611633
]
],
"faces": [
106,
0,
1,
2,
3,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
3,
0,
2,
3,
0,
2,
3,
0,
106,
6,
7,
8,
3,
4,
5,
6,
4,
5,
6,
0,
106,
9,
10,
11,
3,
4,
6,
3,
4,
6,
3,
0,
106,
12,
13,
14,
3,
7,
8,
9,
7,
8,
5,
0,
106,
15,
16,
17,
3,
7,
9,
10,
7,
5,
4,
0,
106,
18,
19,
20,
3,
3,
6,
11,
3,
6,
9,
0,
106,
21,
22,
23,
3,
3,
11,
0,
3,
9,
0,
0,
106,
24,
25,
26,
3,
3,
2,
12,
3,
2,
10,
0,
106,
27,
28,
29,
3,
3,
12,
4,
3,
10,
4,
0,
106,
30,
31,
32,
3,
10,
13,
14,
4,
10,
11,
0,
106,
33,
34,
35,
3,
10,
14,
7,
4,
11,
7,
0,
106,
36,
37,
38,
3,
15,
16,
17,
9,
6,
5,
0,
106,
39,
40,
41,
3,
15,
17,
18,
9,
5,
8,
0,
106,
42,
43,
44,
3,
19,
20,
21,
10,
2,
1,
0,
106,
45,
46,
47,
3,
19,
21,
22,
10,
1,
11,
0,
106,
48,
49,
50,
2,
23,
24,
25,
12,
13,
14,
0,
106,
51,
52,
53,
3,
26,
27,
28,
15,
16,
17,
0,
106,
54,
55,
56,
3,
29,
30,
31,
18,
19,
20,
0,
106,
57,
58,
59,
3,
32,
33,
34,
21,
22,
23,
0,
106,
60,
61,
62,
3,
32,
34,
35,
21,
23,
24,
0,
106,
63,
64,
65,
3,
34,
36,
37,
25,
20,
19,
0,
106,
66,
67,
68,
3,
34,
37,
38,
25,
19,
26,
0,
106,
69,
70,
71,
3,
39,
40,
41,
25,
26,
27,
0,
106,
72,
73,
74,
3,
39,
41,
42,
25,
27,
28,
0,
106,
75,
76,
77,
3,
43,
44,
45,
28,
27,
29,
0,
106,
78,
79,
80,
2,
46,
47,
48,
30,
31,
32,
0,
106,
81,
82,
83,
2,
46,
48,
49,
30,
32,
33,
0,
106,
84,
85,
86,
3,
29,
50,
51,
18,
34,
35,
0,
106,
87,
88,
89,
3,
52,
53,
54,
26,
19,
36,
0,
106,
90,
91,
92,
3,
52,
54,
55,
26,
36,
37,
0,
106,
93,
94,
95,
3,
56,
57,
58,
27,
26,
37,
0,
106,
96,
97,
98,
3,
56,
58,
59,
27,
37,
38,
0,
106,
99,
100,
101,
3,
60,
61,
56,
39,
29,
27,
0,
106,
102,
103,
104,
3,
60,
56,
59,
39,
27,
38,
0,
106,
105,
106,
107,
2,
62,
49,
63,
39,
33,
40,
0,
106,
108,
109,
110,
2,
62,
63,
64,
39,
40,
29,
0,
106,
111,
112,
113,
3,
51,
50,
65,
35,
34,
41,
0,
106,
114,
115,
116,
3,
66,
55,
54,
24,
37,
36,
0,
106,
117,
118,
119,
3,
66,
54,
53,
24,
36,
21,
0,
106,
120,
121,
122,
3,
67,
68,
69,
16,
38,
37,
0,
106,
123,
124,
125,
3,
67,
69,
70,
16,
37,
24,
0,
106,
126,
127,
128,
3,
71,
68,
67,
39,
38,
16,
0,
106,
129,
130,
131,
3,
71,
67,
72,
39,
16,
15,
0,
106,
132,
133,
134,
3,
73,
74,
65,
22,
21,
41,
0,
106,
135,
136,
137,
2,
75,
25,
24,
40,
14,
13,
0,
106,
138,
139,
140,
2,
75,
24,
76,
40,
13,
42,
0,
106,
141,
142,
143,
2,
23,
77,
78,
12,
43,
44,
0,
106,
144,
145,
146,
3,
79,
27,
80,
17,
16,
24,
0,
106,
147,
148,
149,
3,
79,
80,
81,
17,
24,
23,
0,
106,
150,
151,
152,
2,
82,
77,
83,
45,
43,
31,
0,
106,
153,
154,
155,
2,
82,
83,
84,
45,
31,
30,
0,
106,
156,
157,
158,
2,
85,
86,
87,
46,
47,
48,
0,
106,
159,
160,
161,
2,
85,
87,
88,
46,
48,
49,
0,
106,
162,
163,
164,
3,
89,
90,
91,
25,
28,
48,
0,
106,
165,
166,
167,
3,
92,
93,
94,
48,
47,
50,
0,
106,
168,
169,
170,
3,
92,
94,
95,
48,
50,
51,
0,
106,
171,
172,
173,
3,
50,
31,
96,
34,
20,
51,
0,
106,
174,
175,
176,
3,
97,
94,
93,
52,
50,
47,
0,
106,
177,
178,
179,
3,
97,
93,
98,
52,
47,
53,
0,
106,
180,
181,
182,
3,
99,
100,
101,
53,
17,
23,
0,
106,
183,
184,
185,
3,
102,
73,
50,
52,
22,
34,
0,
106,
186,
187,
188,
2,
82,
103,
104,
45,
17,
53,
0,
106,
189,
190,
191,
2,
82,
104,
105,
45,
53,
54,
0,
106,
192,
193,
194,
3,
106,
107,
108,
55,
56,
33,
0,
106,
195,
196,
197,
3,
109,
110,
111,
57,
58,
59,
0,
106,
198,
199,
200,
3,
112,
111,
108,
60,
58,
33,
0,
106,
201,
202,
203,
3,
113,
112,
107,
60,
56,
59,
0,
106,
204,
205,
206,
3,
114,
115,
116,
61,
62,
59,
0,
106,
207,
208,
209,
3,
110,
116,
108,
57,
62,
33,
0,
106,
210,
211,
212,
3,
115,
117,
108,
61,
63,
33,
0,
106,
213,
214,
215,
3,
118,
106,
117,
55,
63,
59,
0,
106,
216,
217,
218,
2,
119,
120,
121,
64,
65,
66,
0,
106,
219,
220,
221,
2,
122,
119,
121,
67,
64,
66,
0,
106,
222,
223,
224,
2,
123,
124,
121,
68,
69,
66,
0,
106,
225,
226,
227,
2,
124,
122,
121,
69,
67,
66,
0,
106,
228,
229,
230,
3,
125,
126,
127,
70,
71,
70,
0,
106,
231,
232,
233,
3,
128,
128,
128,
72,
73,
74,
0,
106,
234,
235,
236,
3,
127,
126,
125,
75,
76,
75,
0,
106,
237,
238,
239,
3,
129,
130,
130,
77,
78,
79,
0,
106,
240,
241,
242,
2,
83,
77,
23,
31,
43,
12,
0,
106,
243,
244,
245,
2,
23,
25,
131,
12,
14,
32,
0,
106,
246,
247,
248,
2,
23,
131,
83,
12,
32,
31,
0,
106,
249,
250,
251,
2,
132,
24,
78,
80,
13,
44,
0,
106,
252,
253,
254,
2,
78,
24,
23,
44,
13,
12,
0,
106,
255,
256,
257,
2,
78,
77,
133,
44,
43,
81,
0,
106,
258,
259,
260,
2,
133,
134,
78,
81,
82,
44,
0,
106,
261,
262,
263,
2,
85,
134,
133,
46,
82,
81,
0,
106,
264,
265,
266,
2,
85,
133,
105,
46,
81,
54,
0,
106,
267,
268,
269,
3,
50,
135,
102,
34,
50,
52,
0,
106,
270,
271,
272,
3,
96,
135,
50,
51,
50,
34,
0,
106,
273,
274,
275,
2,
76,
24,
132,
42,
13,
80,
0,
106,
276,
277,
278,
2,
76,
132,
88,
42,
80,
49,
0,
106,
279,
280,
281,
2,
78,
134,
132,
44,
82,
80,
0,
106,
282,
283,
284,
2,
105,
104,
86,
54,
53,
47,
0,
106,
285,
286,
287,
2,
105,
86,
85,
54,
47,
46,
0,
106,
288,
289,
290,
2,
88,
132,
134,
49,
80,
82,
0,
106,
291,
292,
293,
2,
88,
134,
85,
49,
82,
46,
0,
106,
294,
295,
296,
2,
88,
87,
136,
49,
48,
28,
0,
106,
297,
298,
299,
2,
88,
136,
76,
49,
28,
42,
0,
106,
300,
301,
302,
3,
137,
111,
112,
58,
60,
59,
0,
106,
303,
304,
305,
3,
138,
116,
110,
62,
57,
59,
0,
106,
306,
307,
308,
3,
139,
107,
106,
56,
55,
59,
0,
106,
309,
310,
311,
3,
140,
117,
115,
63,
61,
59,
0,
106,
312,
313,
314,
3,
108,
107,
112,
33,
56,
60,
0,
106,
315,
316,
317,
3,
108,
111,
110,
33,
58,
57,
0,
106,
318,
319,
320,
3,
108,
116,
115,
33,
62,
61,
0,
106,
321,
322,
323,
3,
108,
117,
106,
33,
63,
55,
0,
106,
324,
325,
326,
3,
65,
50,
73,
41,
34,
22,
0,
106,
327,
328,
329,
3,
53,
54,
141,
21,
36,
35,
0,
106,
330,
331,
332,
3,
141,
54,
53,
35,
36,
19,
0,
106,
333,
334,
335,
3,
31,
50,
29,
20,
34,
18,
0,
106,
336,
337,
338,
2,
76,
136,
142,
42,
28,
29,
0,
106,
339,
340,
341,
2,
76,
142,
75,
42,
29,
40,
0,
106,
342,
343,
344,
2,
48,
143,
63,
32,
14,
40,
0,
106,
345,
346,
347,
2,
48,
63,
49,
32,
40,
33,
0,
106,
348,
349,
350,
2,
46,
49,
62,
30,
33,
39,
0,
106,
351,
352,
353,
2,
46,
62,
144,
30,
39,
15,
0,
106,
354,
355,
356,
2,
84,
145,
103,
30,
15,
17,
0,
106,
357,
358,
359,
2,
84,
103,
82,
30,
17,
45,
0,
106,
360,
361,
362,
2,
105,
133,
77,
54,
81,
43,
0,
106,
363,
364,
365,
2,
105,
77,
82,
54,
43,
45,
0,
106,
366,
367,
368,
3,
130,
130,
130,
83,
78,
84,
0,
106,
369,
370,
371,
3,
146,
130,
130,
84,
78,
77,
0,
106,
372,
373,
374,
3,
147,
128,
128,
85,
73,
86,
0,
106,
375,
376,
377,
3,
129,
128,
128,
74,
73,
85,
0,
106,
378,
379,
380,
3,
127,
148,
125,
70,
87,
70,
0,
106,
381,
382,
383,
3,
125,
148,
127,
75,
88,
75,
0,
106,
384,
385,
386,
2,
122,
119,
120,
89,
65,
64,
0,
106,
387,
388,
389,
2,
124,
122,
122,
89,
67,
69,
0,
106,
390,
391,
392,
2,
122,
124,
124,
69,
68,
89,
0,
106,
393,
394,
395,
2,
120,
119,
122,
64,
67,
89,
0,
106,
396,
397,
398,
3,
149,
150,
151,
51,
20,
25,
0,
106,
399,
400,
401,
3,
151,
150,
149,
23,
22,
52,
0,
106,
402,
403,
404,
3,
151,
152,
149,
25,
48,
51,
0,
106,
405,
406,
407,
3,
149,
152,
151,
52,
53,
23,
0,
106,
408,
409,
410,
3,
141,
153,
53,
35,
41,
21,
0,
106,
411,
412,
413,
3,
53,
153,
141,
19,
18,
35,
0
]
}
},
{
"uuid": "4CDF51FA-5B30-4CA1-9757-97245E5DD514",
"type": "Geometry",
"data": {
"vertices": [
5.934712663292885,
8.704245239496231,
7.352449577301741,
7.022743318229914,
0.85723627358675,
19.518610537052155,
8.671274613589048,
1.3847662881016731,
8.5723627358675,
-5.473123900592327,
8.704245239496231,
7.352449577301741,
-7.748097088187933,
0.85723627358675,
19.518610537052155,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-5.473123900592327,
8.704245239496231,
7.352449577301741,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
-7.748097088187933,
2.3409144394099712,
-12.561808470636606,
4.813711382448673,
7.22056707367301,
-10.15495277941227,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-8.968010246753693,
-6.791948936879635,
19.58455178886652,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
-5.473123900592327,
8.704245239496231,
7.352449577301741,
5.934712663292885,
8.704245239496231,
7.352449577301741,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
5.934712663292885,
8.704245239496231,
7.352449577301741,
4.813711382448673,
7.22056707367301,
-10.15495277941227,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-8.968010246753693,
-6.791948936879635,
19.58455178886652,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-8.968010246753693,
-6.791948936879635,
19.58455178886652,
-7.748097088187933,
0.85723627358675,
19.518610537052155,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
7.1546258218586445,
-6.791948936879635,
19.58455178886652,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
7.1546258218586445,
-6.791948936879635,
19.58455178886652,
7.022743318229914,
0.85723627358675,
19.518610537052155,
8.671274613589048,
1.3847662881016731,
8.5723627358675,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
8.671274613589048,
1.3847662881016731,
8.5723627358675,
7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
-8.968010246753693,
-6.791948936879635,
-12.067249082028866,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-8.968010246753693,
-6.791948936879635,
-12.067249082028866,
-7.748097088187933,
2.3409144394099712,
-12.561808470636606,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
7.1546258218586445,
-6.791948936879635,
19.58455178886652,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-8.968010246753693,
-6.791948936879635,
-12.067249082028866,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
4.813711382448673,
7.22056707367301,
-10.15495277941227,
5.934712663292885,
8.704245239496231,
7.352449577301741,
7.022743318229914,
2.3409144394099712,
-12.561808470636606,
5.934712663292885,
8.704245239496231,
7.352449577301741,
8.671274613589048,
1.3847662881016731,
8.5723627358675,
7.022743318229914,
0.85723627358675,
19.518610537052155,
7.1546258218586445,
-6.791948936879635,
19.58455178886652,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
7.022743318229914,
0.85723627358675,
19.518610537052155,
8.836127743124962,
-6.791948936879635,
8.5723627358675,
8.671274613589048,
1.3847662881016731,
8.5723627358675,
-7.748097088187933,
0.85723627358675,
19.518610537052155,
-8.968010246753693,
-6.791948936879635,
19.58455178886652,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-7.748097088187933,
0.85723627358675,
19.518610537052155,
-1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
-5.473123900592327,
8.704245239496231,
7.352449577301741,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-7.748097088187933,
0.85723627358675,
19.518610537052155,
-7.748097088187933,
2.3409144394099712,
-12.561808470636606,
-8.968010246753693,
-6.791948936879635,
-12.067249082028866,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-7.748097088187933,
2.3409144394099712,
-12.561808470636606,
-11.078130304813385,
-6.791948936879635,
8.5723627358675,
-10.451688412576914,
1.3847662881016731,
8.5723627358675,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
7.022743318229914,
0.85723627358675,
19.518610537052155,
5.934712663292885,
8.704245239496231,
7.352449577301741,
5.934712663292885,
8.704245239496231,
7.352449577301741,
-5.473123900592327,
8.704245239496231,
7.352449577301741,
-0.428618136793375,
0.85723627358675,
23.27726189047098,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-7.748097088187933,
2.3409144394099712,
-12.561808470636606,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
-4.418063871562481,
7.22056707367301,
-10.15495277941227,
4.813711382448673,
7.22056707367301,
-10.15495277941227,
-0.428618136793375,
2.3409144394099712,
-14.836781658232212
],
"normals": [
0.3779527559055118,
0.8267716535433071,
0.2440944881889764,
0.7322834645669292,
0.33858267716535434,
0.48031496062992124,
0.9212598425196851,
0.18110236220472442,
0.031496062992125984,
-0.4921875,
0.7637795275590551,
0.2125984251968504,
-0.6640625,
0.4330708661417323,
0.49606299212598426,
-0.0859375,
0.5669291338582677,
0.7480314960629921,
-0.8671875,
0.33070866141732286,
0.05511811023622047,
-0.328125,
0.7480314960629921,
-0.4453125,
-0.6640625,
0.3464566929133858,
-0.5546875,
0.28346456692913385,
0.7480314960629921,
-0.4921875,
0.7086614173228346,
0.2440944881889764,
-0.5546875,
0,
0.3464566929133858,
-0.8671875,
0,
-0.796875,
0.4881889763779528,
-0.6640625,
-0.3828125,
0.5275590551181102,
-0.4296875,
-0.828125,
0.015748031496062992,
0.6614173228346457,
-0.453125,
0.4881889763779528,
0.41732283464566927,
-0.8359375,
0.007874015748031496,
0.6141732283464567,
-0.5,
-0.4921875,
0,
-0.7890625,
-0.4921875,
-0.625,
-0.4453125,
-0.5234375
],
"colors": [ 11711154 ],
"uvs": [
[
0.8979700207710266,
0.03204150125384331,
0.8826490044593811,
0.06083729863166809,
0.8737710118293762,
0.056289300322532654,
0.9623460173606873,
0.06083729863166809,
0.9229660034179688,
0.06083729863166809,
0.9227110147476196,
0.026857800781726837,
0.9721620082855225,
0.056289199739694595,
0.9535499811172485,
0.02121729962527752,
0.9479299783706665,
0.02076050080358982,
0.9623460173606873,
0.04742150008678436,
0.8979700207710266,
0.02076050080358982,
0.8826490044593811,
0.04742150008678436,
0.9229660034179688,
0.04742150008678436,
0.925682008266449,
0.1146949976682663,
0.968038022518158,
0.1146949976682663,
0.9793930053710938,
0.1146949976682663,
0.9224640130996704,
0.009986219927668571,
0.9227110147476196,
0.010393300093710423,
0.881026029586792,
0.1146949976682663,
0.8719710111618042,
0.1146949976682663,
0.8918709754943848,
0.02121729962527752,
0.9479299783706665,
0.03204150125384331
]
],
"faces": [
106,
0,
1,
2,
2,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
2,
3,
4,
5,
3,
4,
5,
0,
106,
6,
7,
8,
2,
6,
7,
8,
6,
3,
7,
0,
106,
9,
10,
11,
2,
6,
8,
9,
6,
7,
8,
0,
106,
12,
13,
14,
2,
10,
11,
12,
9,
10,
11,
0,
106,
15,
16,
17,
2,
13,
14,
15,
12,
13,
14,
0,
106,
18,
19,
20,
2,
7,
16,
10,
7,
3,
0,
0,
106,
21,
22,
23,
2,
7,
10,
17,
7,
0,
9,
0,
106,
24,
25,
26,
2,
6,
15,
14,
6,
14,
13,
0,
106,
27,
28,
29,
2,
6,
14,
3,
6,
13,
4,
0,
106,
30,
31,
32,
2,
4,
13,
18,
5,
12,
15,
0,
106,
33,
34,
35,
2,
4,
18,
1,
5,
15,
1,
0,
106,
36,
37,
38,
2,
2,
19,
18,
2,
16,
17,
0,
106,
39,
40,
41,
2,
2,
18,
11,
2,
17,
10,
0,
106,
42,
43,
44,
2,
12,
13,
14,
11,
18,
19,
0,
106,
45,
46,
47,
2,
12,
14,
9,
11,
19,
8,
0,
106,
48,
49,
50,
2,
13,
18,
19,
18,
17,
16,
0,
106,
51,
52,
53,
2,
19,
18,
13,
16,
15,
12,
0,
106,
54,
55,
56,
2,
19,
13,
15,
16,
12,
14,
0,
106,
57,
58,
59,
2,
15,
14,
13,
14,
19,
18,
0,
106,
60,
61,
62,
2,
15,
13,
19,
14,
18,
16,
0,
106,
63,
64,
65,
2,
11,
18,
13,
10,
17,
18,
0,
106,
66,
67,
68,
2,
11,
13,
12,
10,
18,
11,
0,
106,
69,
70,
71,
2,
11,
10,
20,
10,
9,
0,
0,
106,
72,
73,
74,
2,
11,
20,
2,
10,
0,
2,
0,
106,
75,
76,
77,
2,
1,
18,
19,
1,
15,
16,
0,
106,
78,
79,
80,
2,
1,
19,
2,
1,
16,
2,
0,
106,
81,
82,
83,
2,
3,
14,
13,
4,
13,
12,
0,
106,
84,
85,
86,
2,
3,
13,
4,
4,
12,
5,
0,
106,
87,
88,
89,
2,
6,
3,
21,
3,
6,
4,
0,
106,
90,
91,
92,
2,
9,
14,
15,
8,
19,
14,
0,
106,
93,
94,
95,
2,
9,
15,
6,
8,
14,
6,
0,
106,
96,
97,
98,
2,
4,
20,
16,
5,
1,
0,
0,
106,
99,
100,
101,
2,
5,
3,
5,
0,
3,
5,
0,
106,
102,
103,
104,
2,
12,
8,
17,
11,
8,
7,
0,
106,
105,
106,
107,
2,
17,
10,
12,
7,
9,
11,
0
]
}
},
{
"uuid": "A2005256-AA34-48B9-A66A-1A998069E9A3",
"type": "Geometry",
"data": {
"vertices": [
9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
0.29673563316464424,
-26.145706344395876,
11.045159678906202,
9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
0.29673563316464424,
-26.145706344395876,
11.045159678906202,
9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
0.428618136793375,
-26.508383229374886,
-13.715780377388,
-7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
0.428618136793375,
-26.508383229374886,
-13.715780377388,
-9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
0.29673563316464424,
-26.145706344395876,
11.045159678906202,
9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
0.428618136793375,
-26.508383229374886,
-13.715780377388,
0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
-7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
0.5605006404221058,
6.462242677807808,
4.484005123376846,
0.428618136793375,
-26.508383229374886,
-13.715780377388,
9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
0.5605006404221058,
6.462242677807808,
4.484005123376846,
0.5605006404221058,
6.462242677807808,
4.484005123376846,
0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
-7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
0.5605006404221058,
6.462242677807808,
4.484005123376846,
0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
0.29673563316464424,
-26.145706344395876,
11.045159678906202,
-9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
-9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
0.428618136793375,
-26.508383229374886,
-13.715780377388,
0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
0.29673563316464424,
-26.145706344395876,
11.045159678906202
],
"normals": [
0.84251968503937,
0.41732283464566927,
0.05511811023622047,
0,
0.4015748031496063,
0.8503937007874016,
-0.0234375,
-0.734375,
0.5826771653543307,
0.6456692913385826,
-0.6796875,
0.023622047244094488,
-0.8203125,
0.4330708661417323,
0.047244094488188976,
0.007874015748031496,
0.6377952755905512,
-0.6875,
-0.0234375,
-0.7578125,
-0.546875,
-0.671875,
-0.640625,
0.015748031496062992,
0.007874015748031496,
0.937007874015748,
0.11023622047244094,
-0.03125,
-0.9296875,
0.015748031496062992
],
"colors": [ 254 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
0,
2,
3,
0,
106,
6,
7,
8,
1,
0,
0,
0,
4,
5,
6,
0,
106,
9,
10,
11,
1,
0,
0,
0,
4,
6,
7,
0,
106,
12,
13,
14,
1,
0,
0,
0,
1,
4,
7,
0,
106,
15,
16,
17,
1,
0,
0,
0,
1,
7,
2,
0,
106,
18,
19,
20,
1,
0,
0,
0,
3,
6,
5,
0,
106,
21,
22,
23,
1,
0,
0,
0,
3,
5,
0,
0,
106,
24,
25,
26,
1,
0,
0,
0,
4,
1,
8,
0,
106,
27,
28,
29,
1,
0,
0,
0,
6,
3,
9,
0,
106,
30,
31,
32,
1,
0,
0,
0,
0,
5,
8,
0,
106,
33,
34,
35,
1,
0,
0,
0,
8,
5,
4,
0,
106,
36,
37,
38,
1,
0,
0,
0,
8,
1,
0,
0,
106,
39,
40,
41,
1,
0,
0,
0,
2,
7,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
7,
6,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
3,
2,
0
]
}
},
{
"uuid": "741EC3B9-4607-4C64-A121-BC13C11C928F",
"type": "Geometry",
"data": {
"vertices": [
9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
0.29673563316464424,
-27.431560754776,
11.50674844160676,
9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0.29673563316464424,
-27.431560754776,
11.50674844160676,
9.099892750382423,
-27.431560754776,
0.4615887627005577,
-8.011862095445395,
0.13188250362873077,
0.5605006404221058,
0.16485312953591347,
0,
-11.770513448864222,
0,
-27.39859012886882,
-11.770513448864222,
-8.011862095445395,
0.13188250362873077,
0.5605006404221058,
0,
-27.39859012886882,
-11.770513448864222,
-8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
-8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
-8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0.29673563316464424,
-27.431560754776,
11.50674844160676,
0.29673563316464424,
-27.431560754776,
11.50674844160676,
-8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
-8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0,
-27.39859012886882,
-11.770513448864222,
9.099892750382423,
-27.431560754776,
0.4615887627005577,
0.29673563316464424,
-27.431560754776,
11.50674844160676,
0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
9.099892750382423,
-27.431560754776,
0.4615887627005577,
0,
-27.39859012886882,
-11.770513448864222,
0.16485312953591347,
0,
-11.770513448864222,
9.099892750382423,
-27.431560754776,
0.4615887627005577,
0.16485312953591347,
0,
-11.770513448864222,
9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
0,
-27.39859012886882,
-11.770513448864222,
9.099892750382423,
-27.431560754776,
0.4615887627005577,
0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0.16485312953591347,
7.22056707367301,
0.5275300145149231,
0.16485312953591347,
0,
-11.770513448864222,
-8.011862095445395,
0.13188250362873077,
0.5605006404221058,
0.16485312953591347,
7.22056707367301,
0.5275300145149231,
0.16485312953591347,
7.22056707367301,
0.5275300145149231,
-8.011862095445395,
0.13188250362873077,
0.5605006404221058,
0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
0.16485312953591347,
7.22056707367301,
0.5275300145149231,
9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0.16485312953591347,
0,
-11.770513448864222
],
"normals": [
0.8346456692913385,
0.4330708661417323,
0.015748031496062992,
-0.0078125,
0.5039370078740157,
0.7952755905511811,
-0.0078125,
-0.5078125,
0.7874015748031497,
0.8346456692913385,
-0.4296875,
0.015748031496062992,
-0.8359375,
0.41732283464566927,
0.031496062992125984,
-0.0234375,
0.5433070866141733,
-0.7578125,
-0.015625,
-0.5390625,
-0.7578125,
-0.8359375,
-0.40625,
0.031496062992125984,
-0.015625,
-0.9296875,
0.023622047244094488,
-0.015625,
0.937007874015748,
0.023622047244094488
],
"colors": [ 254 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
0,
2,
3,
0,
106,
6,
7,
8,
1,
0,
0,
0,
4,
5,
6,
0,
106,
9,
10,
11,
1,
0,
0,
0,
4,
6,
7,
0,
106,
12,
13,
14,
1,
0,
0,
0,
1,
4,
7,
0,
106,
15,
16,
17,
1,
0,
0,
0,
1,
7,
2,
0,
106,
18,
19,
20,
1,
0,
0,
0,
2,
7,
8,
0,
106,
21,
22,
23,
1,
0,
0,
0,
8,
7,
6,
0,
106,
24,
25,
26,
1,
0,
0,
0,
3,
2,
8,
0,
106,
27,
28,
29,
1,
0,
0,
0,
3,
6,
5,
0,
106,
30,
31,
32,
1,
0,
0,
0,
3,
5,
0,
0,
106,
33,
34,
35,
1,
0,
0,
0,
8,
6,
3,
0,
106,
36,
37,
38,
1,
0,
0,
0,
1,
0,
9,
0,
106,
39,
40,
41,
1,
0,
0,
0,
5,
4,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
4,
1,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
0,
5,
0
]
}
},
{
"uuid": "B1BB71B8-39B9-4228-98B8-E8E2711BDE02",
"type": "Geometry",
"data": {
"vertices": [
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
-7.022743318229914,
0.85723627358675,
19.518610537052155,
-5.934712663292885,
8.704245239496231,
7.352449577301741,
0.428618136793375,
0.85723627358675,
23.27726189047098,
7.748097088187933,
0.85723627358675,
19.518610537052155,
5.473123900592327,
8.704245239496231,
7.352449577301741,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
4.418063871562481,
7.22056707367301,
-10.15495277941227,
5.473123900592327,
8.704245239496231,
7.352449577301741,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
5.473123900592327,
8.704245239496231,
7.352449577301741,
10.451688412576914,
1.3847662881016731,
8.5723627358675,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
8.968010246753693,
-6.791948936879635,
19.58455178886652,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
-5.934712663292885,
8.704245239496231,
7.352449577301741,
5.473123900592327,
8.704245239496231,
7.352449577301741,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
5.473123900592327,
8.704245239496231,
7.352449577301741,
4.418063871562481,
7.22056707367301,
-10.15495277941227,
7.748097088187933,
0.85723627358675,
19.518610537052155,
8.968010246753693,
-6.791948936879635,
19.58455178886652,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
7.748097088187933,
0.85723627358675,
19.518610537052155,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
10.451688412576914,
1.3847662881016731,
8.5723627358675,
-7.022743318229914,
0.85723627358675,
19.518610537052155,
-7.1546258218586445,
-6.791948936879635,
19.58455178886652,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-7.022743318229914,
0.85723627358675,
19.518610537052155,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
0.428618136793375,
0.85723627358675,
23.27726189047098,
-7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
-7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
8.968010246753693,
-6.791948936879635,
-12.067249082028866,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
-7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-7.1546258218586445,
-6.791948936879635,
19.58455178886652,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
8.968010246753693,
-6.791948936879635,
-12.067249082028866,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
1.1210012808442116,
-6.791948936879635,
-14.44113414734602,
-7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-7.1546258218586445,
-6.791948936879635,
-12.067249082028866,
-7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
-5.934712663292885,
8.704245239496231,
7.352449577301741,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
-7.022743318229914,
2.3409144394099712,
-12.561808470636606,
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
-8.836127743124962,
-6.791948936879635,
8.5723627358675,
-7.1546258218586445,
-6.791948936879635,
19.58455178886652,
-8.671274613589048,
1.3847662881016731,
8.5723627358675,
-7.1546258218586445,
-6.791948936879635,
19.58455178886652,
-7.022743318229914,
0.85723627358675,
19.518610537052155,
0.428618136793375,
0.85723627358675,
23.27726189047098,
1.1210012808442116,
-6.791948936879635,
23.37617376819253,
8.968010246753693,
-6.791948936879635,
19.58455178886652,
0.428618136793375,
0.85723627358675,
23.27726189047098,
8.968010246753693,
-6.791948936879635,
19.58455178886652,
7.748097088187933,
0.85723627358675,
19.518610537052155,
7.748097088187933,
0.85723627358675,
19.518610537052155,
10.451688412576914,
1.3847662881016731,
8.5723627358675,
5.473123900592327,
8.704245239496231,
7.352449577301741,
10.451688412576914,
1.3847662881016731,
8.5723627358675,
11.078130304813385,
-6.791948936879635,
8.5723627358675,
8.968010246753693,
-6.791948936879635,
-12.067249082028866,
10.451688412576914,
1.3847662881016731,
8.5723627358675,
8.968010246753693,
-6.791948936879635,
-12.067249082028866,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
-5.934712663292885,
8.704245239496231,
7.352449577301741,
-7.022743318229914,
0.85723627358675,
19.518610537052155,
0.428618136793375,
0.85723627358675,
23.27726189047098,
0.428618136793375,
0.85723627358675,
23.27726189047098,
5.473123900592327,
8.704245239496231,
7.352449577301741,
-5.934712663292885,
8.704245239496231,
7.352449577301741,
4.418063871562481,
7.22056707367301,
-10.15495277941227,
7.748097088187933,
2.3409144394099712,
-12.561808470636606,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
0.428618136793375,
2.3409144394099712,
-14.836781658232212,
-4.813711382448673,
7.22056707367301,
-10.15495277941227,
4.418063871562481,
7.22056707367301,
-10.15495277941227
],
"normals": [
-0.9140625,
0.18110236220472442,
0.031496062992125984,
-0.7265625,
0.33858267716535434,
0.48031496062992124,
-0.375,
0.8267716535433071,
0.2440944881889764,
0.08661417322834646,
0.5669291338582677,
0.7480314960629921,
0.6692913385826772,
0.4330708661417323,
0.49606299212598426,
0.49606299212598426,
0.7637795275590551,
0.2125984251968504,
0.6692913385826772,
0.3464566929133858,
-0.5546875,
0.33070866141732286,
0.7480314960629921,
-0.4453125,
0.8740157480314961,
0.33070866141732286,
0.05511811023622047,
0,
0.3464566929133858,
-0.8671875,
-0.703125,
0.2440944881889764,
-0.5546875,
-0.28125,
0.7480314960629921,
-0.4921875,
0.4330708661417323,
-0.828125,
0.015748031496062992,
0.6692913385826772,
-0.3828125,
0.5275590551181102,
0,
-0.796875,
0.4881889763779528,
-0.65625,
-0.453125,
0.4881889763779528,
-0.609375,
-0.5,
-0.4921875,
-0.4140625,
-0.8359375,
0.007874015748031496,
0.6299212598425197,
-0.4453125,
-0.5234375,
0,
-0.7890625,
-0.4921875
],
"colors": [ 11711154 ],
"uvs": [
[
0.8737710118293762,
0.056289300322532654,
0.8826490044593811,
0.06083729863166809,
0.8979700207710266,
0.03204150125384331,
0.9227110147476196,
0.026857800781726837,
0.9229660034179688,
0.06083729863166809,
0.9623460173606873,
0.06083729863166809,
0.9623460173606873,
0.04742150008678436,
0.9479299783706665,
0.02076050080358982,
0.9535499811172485,
0.02121729962527752,
0.9721620082855225,
0.056289199739694595,
0.9229660034179688,
0.04742150008678436,
0.8826490044593811,
0.04742150008678436,
0.8979700207710266,
0.02076050080358982,
0.9793930053710938,
0.1146949976682663,
0.968038022518158,
0.1146949976682663,
0.925682008266449,
0.1146949976682663,
0.9227110147476196,
0.010393300093710423,
0.9224640130996704,
0.009986219927668571,
0.881026029586792,
0.1146949976682663,
0.8719710111618042,
0.1146949976682663,
0.8918709754943848,
0.02121729962527752,
0.9479299783706665,
0.03204150125384331
]
],
"faces": [
106,
0,
1,
2,
2,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
2,
3,
4,
5,
3,
4,
5,
0,
106,
6,
7,
8,
2,
6,
7,
8,
6,
7,
5,
0,
106,
9,
10,
11,
2,
6,
8,
9,
6,
5,
8,
0,
106,
12,
13,
14,
2,
10,
11,
12,
9,
10,
11,
0,
106,
15,
16,
17,
2,
13,
14,
15,
12,
13,
14,
0,
106,
18,
19,
20,
2,
16,
12,
17,
11,
2,
5,
0,
106,
21,
22,
23,
2,
16,
17,
8,
11,
5,
7,
0,
106,
24,
25,
26,
2,
5,
14,
13,
4,
13,
12,
0,
106,
27,
28,
29,
2,
5,
13,
9,
4,
12,
8,
0,
106,
30,
31,
32,
2,
1,
18,
15,
1,
15,
14,
0,
106,
33,
34,
35,
2,
1,
15,
4,
1,
14,
3,
0,
106,
36,
37,
38,
2,
11,
18,
19,
10,
16,
17,
0,
106,
39,
40,
41,
2,
11,
19,
0,
10,
17,
0,
0,
106,
42,
43,
44,
2,
6,
14,
15,
6,
18,
19,
0,
106,
45,
46,
47,
2,
6,
15,
10,
6,
19,
9,
0,
106,
48,
49,
50,
2,
19,
18,
15,
17,
16,
19,
0,
106,
51,
52,
53,
2,
15,
18,
19,
14,
15,
17,
0,
106,
54,
55,
56,
2,
13,
15,
19,
12,
14,
17,
0,
106,
57,
58,
59,
2,
15,
14,
13,
19,
18,
12,
0,
106,
60,
61,
62,
2,
19,
15,
13,
17,
19,
12,
0,
106,
63,
64,
65,
2,
10,
15,
18,
9,
19,
16,
0,
106,
66,
67,
68,
2,
10,
18,
11,
9,
16,
10,
0,
106,
69,
70,
71,
2,
0,
20,
12,
0,
2,
11,
0,
106,
72,
73,
74,
2,
0,
12,
11,
0,
11,
10,
0,
106,
75,
76,
77,
2,
0,
19,
18,
0,
17,
15,
0,
106,
78,
79,
80,
2,
0,
18,
1,
0,
15,
1,
0,
106,
81,
82,
83,
2,
4,
15,
14,
3,
14,
13,
0,
106,
84,
85,
86,
2,
4,
14,
5,
3,
13,
4,
0,
106,
87,
88,
89,
2,
21,
5,
9,
4,
8,
5,
0,
106,
90,
91,
92,
2,
9,
13,
14,
8,
12,
18,
0,
106,
93,
94,
95,
2,
9,
14,
6,
8,
18,
6,
0,
106,
96,
97,
98,
2,
17,
20,
4,
2,
1,
3,
0,
106,
99,
100,
101,
2,
3,
5,
3,
3,
5,
2,
0,
106,
102,
103,
104,
2,
16,
7,
10,
7,
6,
9,
0,
106,
105,
106,
107,
2,
10,
12,
16,
9,
11,
7,
0
]
}
},
{
"uuid": "93349AD4-9627-4854-9024-B299FF693C49",
"type": "Geometry",
"data": {
"vertices": [
-9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-0.29673563316464424,
-26.145706344395876,
11.045159678906202,
-0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
-0.428618136793375,
-26.508383229374886,
-13.715780377388,
-0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
-0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-0.29673563316464424,
-26.145706344395876,
11.045159678906202,
9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-0.29673563316464424,
-26.145706344395876,
11.045159678906202,
7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
-0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
-0.428618136793375,
-26.508383229374886,
-13.715780377388,
-9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
-0.428618136793375,
-26.508383229374886,
-13.715780377388,
-9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
-0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
-0.5605006404221058,
6.462242677807808,
4.484005123376846,
-0.428618136793375,
-26.508383229374886,
-13.715780377388,
9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
-0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
-0.5605006404221058,
6.462242677807808,
4.484005123376846,
-0.5605006404221058,
6.462242677807808,
4.484005123376846,
-0.6264418922364712,
-0.3956475108861923,
-12.034278456121683,
-9.132863376289606,
-0.23079438135027885,
-0.3956475108861923,
-0.5605006404221058,
6.462242677807808,
4.484005123376846,
-0.5275300145149231,
-0.06594125181436539,
11.242983434349298,
7.945920843631029,
0.032970625907182693,
-0.4615887627005577,
-0.29673563316464424,
-26.145706344395876,
11.045159678906202,
-9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
-0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
9.363657757639885,
-25.980853214859962,
-0.4615887627005577,
-0.29673563316464424,
-26.145706344395876,
11.045159678906202,
-0.09891187772154808,
-27.79423763975501,
-0.3956475108861923,
-9.627422764897346,
-26.70620698481798,
-0.32970625907182693,
-0.428618136793375,
-26.508383229374886,
-13.715780377388
],
"normals": [
-0.640625,
-0.6796875,
0.023622047244094488,
0.023622047244094488,
-0.734375,
0.5826771653543307,
0,
0.4015748031496063,
0.8503937007874016,
-0.8359375,
0.41732283464566927,
0.05511811023622047,
0.6771653543307087,
-0.640625,
0.015748031496062992,
0.023622047244094488,
-0.7578125,
-0.546875,
-0.0078125,
0.6377952755905512,
-0.6875,
0.8267716535433071,
0.4330708661417323,
0.047244094488188976,
-0.0078125,
0.937007874015748,
0.11023622047244094,
0.031496062992125984,
-0.9296875,
0.015748031496062992
],
"colors": [ 254 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
0,
2,
3,
0,
106,
6,
7,
8,
1,
0,
0,
0,
4,
5,
6,
0,
106,
9,
10,
11,
1,
0,
0,
0,
4,
6,
7,
0,
106,
12,
13,
14,
1,
0,
0,
0,
1,
4,
7,
0,
106,
15,
16,
17,
1,
0,
0,
0,
1,
7,
2,
0,
106,
18,
19,
20,
1,
0,
0,
0,
3,
6,
5,
0,
106,
21,
22,
23,
1,
0,
0,
0,
3,
5,
0,
0,
106,
24,
25,
26,
1,
0,
0,
0,
3,
2,
8,
0,
106,
27,
28,
29,
1,
0,
0,
0,
5,
4,
9,
0,
106,
30,
31,
32,
1,
0,
0,
0,
7,
6,
8,
0,
106,
33,
34,
35,
1,
0,
0,
0,
8,
6,
3,
0,
106,
36,
37,
38,
1,
0,
0,
0,
8,
2,
7,
0,
106,
39,
40,
41,
1,
0,
0,
0,
1,
0,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
4,
1,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
0,
5,
0
]
}
},
{
"uuid": "C6F01B52-BEB4-4359-87E0-3BA4FF5DD34E",
"type": "Geometry",
"data": {
"vertices": [
-9.099892750382423,
-27.431560754776,
0.4615887627005577,
-0.29673563316464424,
-27.431560754776,
11.50674844160676,
-0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
-9.099892750382423,
-27.431560754776,
0.4615887627005577,
-0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
-9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
8.407509606331587,
-27.233736999332905,
0.5275300145149231,
0,
-27.39859012886882,
-11.770513448864222,
-0.16485312953591347,
0,
-11.770513448864222,
8.407509606331587,
-27.233736999332905,
0.5275300145149231,
-0.16485312953591347,
0,
-11.770513448864222,
8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-0.29673563316464424,
-27.431560754776,
11.50674844160676,
8.407509606331587,
-27.233736999332905,
0.5275300145149231,
8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-0.29673563316464424,
-27.431560754776,
11.50674844160676,
8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
-0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
8.407509606331587,
-27.233736999332905,
0.5275300145149231,
-0.29673563316464424,
-27.431560754776,
11.50674844160676,
0,
-27.39859012886882,
-11.770513448864222,
8.407509606331587,
-27.233736999332905,
0.5275300145149231,
-0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
-0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
-0.29673563316464424,
-27.431560754776,
11.50674844160676,
-9.099892750382423,
-27.431560754776,
0.4615887627005577,
-9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
-0.16485312953591347,
0,
-11.770513448864222,
0,
-27.39859012886882,
-11.770513448864222,
-9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
0,
-27.39859012886882,
-11.770513448864222,
-9.099892750382423,
-27.431560754776,
0.4615887627005577,
-9.099892750382423,
-27.431560754776,
0.4615887627005577,
0,
-27.39859012886882,
-11.770513448864222,
-0.13188250362873077,
-34.52024532482028,
0.5275300145149231,
-0.4615887627005577,
-0.032970625907182693,
11.50674844160676,
8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-0.16485312953591347,
7.22056707367301,
0.5275300145149231,
-0.16485312953591347,
0,
-11.770513448864222,
-9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
-0.16485312953591347,
7.22056707367301,
0.5275300145149231,
-0.16485312953591347,
7.22056707367301,
0.5275300145149231,
8.011862095445395,
0.13188250362873077,
0.5605006404221058,
-0.16485312953591347,
0,
-11.770513448864222,
-0.16485312953591347,
7.22056707367301,
0.5275300145149231,
-9.330687131732702,
-0.032970625907182693,
0.4945593886077404,
-0.4615887627005577,
-0.032970625907182693,
11.50674844160676
],
"normals": [
-0.828125,
-0.4296875,
0.015748031496062992,
0.007874015748031496,
-0.5078125,
0.7874015748031497,
0.007874015748031496,
0.5039370078740157,
0.7952755905511811,
-0.828125,
0.4330708661417323,
0.015748031496062992,
0.84251968503937,
-0.40625,
0.031496062992125984,
0.015748031496062992,
-0.5390625,
-0.7578125,
0.023622047244094488,
0.5433070866141733,
-0.7578125,
0.84251968503937,
0.41732283464566927,
0.031496062992125984,
0.015748031496062992,
-0.9296875,
0.023622047244094488,
0.015748031496062992,
0.937007874015748,
0.023622047244094488
],
"colors": [ 254 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
0,
2,
3,
0,
106,
6,
7,
8,
1,
0,
0,
0,
4,
5,
6,
0,
106,
9,
10,
11,
1,
0,
0,
0,
4,
6,
7,
0,
106,
12,
13,
14,
1,
0,
0,
0,
1,
4,
7,
0,
106,
15,
16,
17,
1,
0,
0,
0,
1,
7,
2,
0,
106,
18,
19,
20,
1,
0,
0,
0,
8,
4,
1,
0,
106,
21,
22,
23,
1,
0,
0,
0,
5,
4,
8,
0,
106,
24,
25,
26,
1,
0,
0,
0,
8,
1,
0,
0,
106,
27,
28,
29,
1,
0,
0,
0,
3,
6,
5,
0,
106,
30,
31,
32,
1,
0,
0,
0,
3,
5,
0,
0,
106,
33,
34,
35,
1,
0,
0,
0,
0,
5,
8,
0,
106,
36,
37,
38,
1,
0,
0,
0,
2,
7,
9,
0,
106,
39,
40,
41,
1,
0,
0,
0,
6,
3,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
7,
6,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
3,
2,
0
]
}
},
{
"uuid": "646D5588-CAF6-45B4-A18F-030003020B40",
"type": "Geometry",
"data": {
"vertices": [
0,
1.6815019212663174,
-4.022416360676289,
0,
-1.6815019212663174,
-4.022416360676289,
0,
0,
4.022416360676289,
1.7144725471735,
0,
-4.022416360676289,
-1.6815019212663174,
0,
-4.022416360676289,
0,
0,
4.022416360676289
],
"normals": [ -0.9375, 0, 0, 0, 0.9448818897637795, 0 ],
"colors": [ 11711154 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
0,
0,
0,
106,
3,
4,
5,
1,
0,
0,
0,
1,
1,
1,
0
]
}
},
{
"uuid": "A59FF547-B8EA-4270-AF7B-568348232E77",
"type": "Geometry",
"data": {
"vertices": [
1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
-6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
1.285854410380125,
-0.758324395865202,
-7.385420203208923,
1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
-6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
-3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
1.285854410380125,
-0.758324395865202,
-7.385420203208923,
-6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
-3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
1.1210012808442116,
-23.837762530893087,
4.187269490212202,
8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
1.285854410380125,
-0.9231775254011154,
7.022743318229914,
1.1210012808442116,
-23.837762530893087,
4.187269490212202,
8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
1.1210012808442116,
-23.837762530893087,
4.187269490212202,
6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
1.285854410380125,
-0.9231775254011154,
7.022743318229914,
8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
0.8902068994939327,
-20.738523695617914,
9.594452138990164,
0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
-8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
-8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
0.758324395865202,
-29.904357697814703,
9.561481513082981,
0.8902068994939327,
-20.738523695617914,
9.594452138990164,
-8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
0.758324395865202,
-29.904357697814703,
9.561481513082981,
-8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
-9.29771650582552,
-29.904357697814703,
-0.428618136793375,
0.758324395865202,
-29.87138707190752,
-10.847335923463106,
0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
-9.29771650582552,
-29.904357697814703,
-0.428618136793375,
10.847335923463106,
-20.573670566082,
-0.26376500725746155,
0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
11.473777815699577,
-29.937328323721886,
-0.428618136793375,
0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
0.758324395865202,
-29.87138707190752,
-10.847335923463106,
11.473777815699577,
-29.937328323721886,
-0.428618136793375,
10.847335923463106,
-20.573670566082,
-0.26376500725746155,
0.8902068994939327,
-20.738523695617914,
9.594452138990164,
11.473777815699577,
-29.937328323721886,
-0.428618136793375,
0.8902068994939327,
-20.738523695617914,
9.594452138990164,
0.758324395865202,
-29.904357697814703,
9.561481513082981,
0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
0.8902068994939327,
-20.738523695617914,
9.594452138990164,
10.847335923463106,
-20.573670566082,
-0.26376500725746155,
8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
1.285854410380125,
-0.758324395865202,
-7.385420203208923,
1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
1.285854410380125,
-0.758324395865202,
-7.385420203208923,
6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
1.285854410380125,
-0.758324395865202,
-7.385420203208923,
8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
0.758324395865202,
-29.904357697814703,
9.561481513082981,
0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-9.29771650582552,
-29.904357697814703,
-0.428618136793375,
0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
0.758324395865202,
-29.904357697814703,
9.561481513082981,
-9.29771650582552,
-29.904357697814703,
-0.428618136793375,
-8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
-9.29771650582552,
-29.904357697814703,
-0.428618136793375,
0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
0.758324395865202,
-29.87138707190752,
-10.847335923463106,
0.758324395865202,
-29.87138707190752,
-10.847335923463106,
0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
10.847335923463106,
-20.573670566082,
-0.26376500725746155,
0.758324395865202,
-29.87138707190752,
-10.847335923463106,
10.847335923463106,
-20.573670566082,
-0.26376500725746155,
11.473777815699577,
-29.937328323721886,
-0.428618136793375
],
"normals": [
0.023622047244094488,
0.937007874015748,
0.007874015748031496,
-0.859375,
0.36220472440944884,
0,
0.015748031496062992,
0.3228346456692913,
0.8818897637795275,
0.015748031496062992,
0.33858267716535434,
-0.8671875,
0.015748031496062992,
-0.09375,
-0.9296875,
-0.9296875,
-0.109375,
0,
0.007874015748031496,
-0.109375,
0.937007874015748,
0.8740157480314961,
0.33858267716535434,
0,
0.937007874015748,
-0.109375,
0,
0,
0.41732283464566927,
0.84251968503937,
0,
0.937007874015748,
0.007874015748031496,
-0.828125,
0.4330708661417323,
0.007874015748031496,
0,
0.44881889763779526,
-0.8203125,
-0.0078125,
-0.5078125,
0.7874015748031497,
-0.7890625,
-0.5,
0,
-0.0078125,
-0.5,
-0.7890625,
-0.0078125,
-0.9296875,
0,
0.8346456692913385,
0.4330708661417323,
0.007874015748031496,
0.7795275590551181,
-0.515625,
0
],
"colors": [ 11711154 ],
"uvs": [
[
0.9241139888763428,
0.2431419938802719,
0.9354360103607178,
0.2428479939699173,
0.9240620136260986,
0.24284200370311737,
0.9240599870681763,
0.24284900724887848,
0.924252986907959,
0.2419160008430481,
0.931393027305603,
0.24192599952220917,
0.9242540001869202,
0.24191200733184814,
0.9136880040168762,
0.24284599721431732,
0.9173009991645813,
0.24191400408744812,
0.6517400145530701,
0.8232679963111877,
0.6524369716644287,
0.8150129914283752,
0.6768860220909119,
0.8226839900016785,
0.6535059809684753,
0.8227260112762451,
0.6786779761314392,
0.8227499723434448,
0.652309000492096,
0.8108569979667664,
0.6538410186767578,
0.8520259857177734,
0.6535109877586365,
0.8234580159187317,
0.6796870231628418,
0.8519780039787292,
0.6538360118865967,
0.8518700003623962,
0.6538090109825134,
0.8705459833145142,
0.62813401222229,
0.8230230212211609,
0.6264650225639343,
0.8521149754524231,
0.6472399830818176,
0.8152689933776855
]
],
"faces": [
106,
0,
1,
2,
2,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
2,
1,
3,
4,
1,
3,
4,
0,
106,
6,
7,
8,
2,
1,
4,
5,
1,
4,
5,
0,
106,
9,
10,
11,
2,
0,
3,
1,
0,
3,
1,
0,
106,
12,
13,
14,
2,
2,
1,
5,
2,
1,
5,
0,
106,
15,
16,
17,
2,
2,
5,
6,
2,
5,
6,
0,
106,
18,
19,
20,
2,
7,
2,
6,
7,
2,
6,
0,
106,
21,
22,
23,
2,
7,
6,
8,
7,
6,
8,
0,
106,
24,
25,
26,
2,
0,
2,
7,
0,
2,
7,
0,
106,
27,
28,
29,
2,
9,
10,
11,
9,
10,
11,
0,
106,
30,
31,
32,
2,
12,
13,
14,
12,
11,
10,
0,
106,
33,
34,
35,
2,
15,
16,
13,
13,
9,
11,
0,
106,
36,
37,
38,
2,
15,
13,
17,
13,
11,
14,
0,
106,
39,
40,
41,
2,
18,
19,
17,
15,
16,
14,
0,
106,
42,
43,
44,
2,
20,
12,
14,
17,
12,
10,
0,
106,
45,
46,
47,
2,
21,
19,
18,
18,
16,
15,
0,
106,
48,
49,
50,
2,
21,
20,
16,
18,
17,
9,
0,
106,
51,
52,
53,
2,
21,
16,
15,
18,
9,
13,
0,
106,
54,
55,
56,
2,
22,
16,
20,
10,
9,
17,
0,
106,
57,
58,
59,
2,
7,
3,
0,
7,
3,
0,
0,
106,
60,
61,
62,
2,
8,
4,
3,
8,
4,
3,
0,
106,
63,
64,
65,
2,
8,
3,
7,
8,
3,
7,
0,
106,
66,
67,
68,
2,
15,
19,
21,
13,
16,
18,
0,
106,
69,
70,
71,
2,
17,
19,
15,
14,
16,
13,
0,
106,
72,
73,
74,
2,
17,
13,
12,
14,
11,
12,
0,
106,
75,
76,
77,
2,
17,
12,
18,
14,
12,
15,
0,
106,
78,
79,
80,
2,
18,
12,
20,
15,
12,
17,
0,
106,
81,
82,
83,
2,
18,
20,
21,
15,
17,
18,
0
]
}
},
{
"uuid": "FCF25B70-EA96-49E8-8675-B6C14444C0AC",
"type": "Geometry",
"data": {
"vertices": [
3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
-4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
2.5057675689458847,
4.516975749284029,
-8.143744599074125,
0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
2.5057675689458847,
4.516975749284029,
-8.143744599074125,
-4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
-6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
0.9561481513082981,
-15.529164802283049,
6.066595166921616,
7.814038340002298,
4.28618136793375,
-0.9891187772154808,
2.5057675689458847,
4.319151993840933,
6.2973895482718945,
0.9561481513082981,
-15.529164802283049,
6.066595166921616,
7.814038340002298,
4.28618136793375,
-0.9891187772154808,
0.9561481513082981,
-15.529164802283049,
6.066595166921616,
7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
7.814038340002298,
4.28618136793375,
-0.9891187772154808,
2.5057675689458847,
4.516975749284029,
-8.143744599074125,
3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
2.5057675689458847,
4.319151993840933,
6.2973895482718945,
7.814038340002298,
4.28618136793375,
-0.9891187772154808,
7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
2.5057675689458847,
4.516975749284029,
-8.143744599074125,
7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
2.5057675689458847,
4.516975749284029,
-8.143744599074125,
7.814038340002298,
4.28618136793375,
-0.9891187772154808,
7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
0.9561481513082981,
-15.529164802283049,
6.066595166921616,
0.9561481513082981,
-20.243964307010174,
-1.8793256767094135,
-6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
0.9561481513082981,
-20.243964307010174,
-1.8793256767094135,
0.9561481513082981,
-20.243964307010174,
-1.8793256767094135,
0.9561481513082981,
-15.529164802283049,
6.066595166921616,
-6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
0.9561481513082981,
-20.243964307010174,
-1.8793256767094135,
0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
7.879979591816664,
-15.4302529245615,
-1.1210012808442116
],
"normals": [
0.11023622047244094,
0.937007874015748,
0.007874015748031496,
-0.734375,
0.5826771653543307,
0,
0.07874015748031496,
0.5275590551181102,
0.7716535433070866,
0.07874015748031496,
0.5511811023622047,
-0.75,
0.023622047244094488,
-0.4453125,
-0.8203125,
-0.8125,
-0.453125,
-0.015625,
0.023622047244094488,
-0.515625,
0.7795275590551181,
0.84251968503937,
0.4094488188976378,
0,
0.8110236220472441,
-0.4765625,
-0.015625,
0.007874015748031496,
-0.9296875,
-0.0390625
],
"colors": [ 45568 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
1,
3,
4,
0,
106,
6,
7,
8,
1,
0,
0,
0,
1,
4,
5,
0,
106,
9,
10,
11,
1,
0,
0,
0,
0,
3,
1,
0,
106,
12,
13,
14,
1,
0,
0,
0,
2,
1,
5,
0,
106,
15,
16,
17,
1,
0,
0,
0,
2,
5,
6,
0,
106,
18,
19,
20,
1,
0,
0,
0,
7,
2,
6,
0,
106,
21,
22,
23,
1,
0,
0,
0,
7,
6,
8,
0,
106,
24,
25,
26,
1,
0,
0,
0,
7,
3,
0,
0,
106,
27,
28,
29,
1,
0,
0,
0,
0,
2,
7,
0,
106,
30,
31,
32,
1,
0,
0,
0,
8,
4,
3,
0,
106,
33,
34,
35,
1,
0,
0,
0,
8,
3,
7,
0,
106,
36,
37,
38,
1,
0,
0,
0,
8,
6,
9,
0,
106,
39,
40,
41,
1,
0,
0,
0,
5,
4,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
6,
5,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
4,
8,
0
]
}
},
{
"uuid": "4B5F2C81-FB60-4FDB-BAE4-2F0F4226FF52",
"type": "Geometry",
"data": {
"vertices": [
-1.285854410380125,
-0.9231775254011154,
7.022743318229914,
6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
-1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
-1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
-1.285854410380125,
-0.758324395865202,
-7.385420203208923,
3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
-1.285854410380125,
-0.758324395865202,
-7.385420203208923,
6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
-1.285854410380125,
-0.758324395865202,
-7.385420203208923,
-1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
-1.1210012808442116,
-23.837762530893087,
4.187269490212202,
3.890533857047558,
-23.475085645914078,
-0.3956475108861923,
6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
-1.1210012808442116,
-23.837762530893087,
4.187269490212202,
6.758978310972452,
-0.7912950217723846,
-0.16485312953591347,
-1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
-1.1210012808442116,
-23.837762530893087,
4.187269490212202,
-1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
-1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
-8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
-1.285854410380125,
-0.9231775254011154,
7.022743318229914,
-1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
-0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
-0.8902068994939327,
-20.738523695617914,
9.594452138990164,
-0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
-0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
9.29771650582552,
-29.904357697814703,
-0.428618136793375,
8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
-0.8902068994939327,
-20.738523695617914,
9.594452138990164,
9.29771650582552,
-29.904357697814703,
-0.428618136793375,
-0.8902068994939327,
-20.738523695617914,
9.594452138990164,
-0.758324395865202,
-29.904357697814703,
9.561481513082981,
9.29771650582552,
-29.904357697814703,
-0.428618136793375,
-0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
-0.758324395865202,
-29.87138707190752,
-10.847335923463106,
-0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
-0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
-10.847335923463106,
-20.573670566082,
-0.26376500725746155,
-0.758324395865202,
-29.87138707190752,
-10.847335923463106,
-0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
-11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-0.758324395865202,
-29.904357697814703,
9.561481513082981,
-0.8902068994939327,
-20.738523695617914,
9.594452138990164,
-10.847335923463106,
-20.573670566082,
-0.26376500725746155,
-0.758324395865202,
-29.904357697814703,
9.561481513082981,
-10.847335923463106,
-20.573670566082,
-0.26376500725746155,
-11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-10.847335923463106,
-20.573670566082,
-0.26376500725746155,
-0.8902068994939327,
-20.738523695617914,
9.594452138990164,
-0.8902068994939327,
-11.770513448864222,
-0.19782375544309616,
-1.2199131585657597,
6.429272051900625,
-0.09891187772154808,
-1.285854410380125,
-0.758324395865202,
-7.385420203208923,
-8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
-8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
-1.285854410380125,
-0.758324395865202,
-7.385420203208923,
-1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
-8.605333361774683,
-0.85723627358675,
-0.16485312953591347,
-1.1210012808442116,
-23.73885065317154,
-4.879652634263039,
-6.066595166921616,
-23.771821279078722,
-0.32970625907182693,
-11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
-0.758324395865202,
-29.904357697814703,
9.561481513082981,
-0.758324395865202,
-29.904357697814703,
9.561481513082981,
-0.7912950217723846,
-35.87204098701477,
-0.4945593886077404,
9.29771650582552,
-29.904357697814703,
-0.428618136793375,
-0.758324395865202,
-29.87138707190752,
-10.847335923463106,
-0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
-0.758324395865202,
-29.87138707190752,
-10.847335923463106,
8.902068994939327,
-20.507729314267635,
-0.26376500725746155,
9.29771650582552,
-29.904357697814703,
-0.428618136793375,
-11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-10.847335923463106,
-20.573670566082,
-0.26376500725746155,
-0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
-11.473777815699577,
-29.937328323721886,
-0.428618136793375,
-0.8902068994939327,
-20.474758688360453,
-10.319805908948183,
-0.758324395865202,
-29.87138707190752,
-10.847335923463106
],
"normals": [
-0.015625,
0.3228346456692913,
0.8818897637795275,
0.8661417322834646,
0.36220472440944884,
0,
-0.0234375,
0.937007874015748,
0.007874015748031496,
0.937007874015748,
-0.109375,
0,
-0.015625,
-0.09375,
-0.9296875,
-0.015625,
0.33858267716535434,
-0.8671875,
-0.0078125,
-0.109375,
0.937007874015748,
-0.9296875,
-0.109375,
0,
-0.8671875,
0.33858267716535434,
0,
0.8346456692913385,
0.4330708661417323,
0.007874015748031496,
0,
0.937007874015748,
0.007874015748031496,
0,
0.41732283464566927,
0.84251968503937,
0,
0.44881889763779526,
-0.8203125,
0.7952755905511811,
-0.5,
0,
0.007874015748031496,
-0.5078125,
0.7874015748031497,
0.007874015748031496,
-0.9296875,
0,
0.007874015748031496,
-0.5,
-0.7890625,
-0.828125,
0.4330708661417323,
0.007874015748031496,
-0.7734375,
-0.515625,
0
],
"colors": [ 11711154 ],
"uvs": [
[
0.9213740229606628,
0.23874099552631378,
0.9371479749679565,
0.23870599269866943,
0.9214460253715515,
0.23699000477790833,
0.9315410256385803,
0.24408400058746338,
0.921638011932373,
0.24414199590682983,
0.9213709831237793,
0.2387000024318695,
0.9216399788856506,
0.2441670000553131,
0.9119970202445984,
0.24415400624275208,
0.9069859981536865,
0.23871999979019165,
0.6856229901313782,
0.8188760280609131,
0.6541669964790344,
0.8104860186576843,
0.6532710194587708,
0.8195149898529053,
0.6540030241012573,
0.8059399724006653,
0.6879280209541321,
0.818947970867157,
0.6555430293083191,
0.8189229965209961,
0.6892269849777222,
0.8509169816970825,
0.6555500030517578,
0.8197230100631714,
0.6559749841690063,
0.8509690165519714,
0.6559330224990845,
0.8712249994277954,
0.6559680104255676,
0.850799024105072,
0.6229010224342346,
0.8192470073699951,
0.6207529902458191,
0.851065993309021,
0.6474819779396057,
0.8107659816741943
]
],
"faces": [
106,
0,
1,
2,
2,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
2,
3,
4,
5,
3,
4,
5,
0,
106,
6,
7,
8,
2,
3,
5,
1,
3,
5,
1,
0,
106,
9,
10,
11,
2,
1,
5,
2,
1,
5,
2,
0,
106,
12,
13,
14,
2,
6,
3,
1,
6,
3,
1,
0,
106,
15,
16,
17,
2,
6,
1,
0,
6,
1,
0,
0,
106,
18,
19,
20,
2,
7,
6,
0,
7,
6,
0,
0,
106,
21,
22,
23,
2,
7,
0,
8,
7,
0,
8,
0,
106,
24,
25,
26,
2,
8,
0,
2,
8,
0,
2,
0,
106,
27,
28,
29,
2,
9,
10,
11,
9,
10,
11,
0,
106,
30,
31,
32,
2,
12,
13,
14,
10,
9,
12,
0,
106,
33,
34,
35,
2,
15,
13,
16,
13,
9,
11,
0,
106,
36,
37,
38,
2,
15,
16,
17,
13,
11,
14,
0,
106,
39,
40,
41,
2,
15,
18,
19,
13,
15,
16,
0,
106,
42,
43,
44,
2,
12,
14,
20,
10,
12,
17,
0,
106,
45,
46,
47,
2,
19,
18,
21,
16,
15,
18,
0,
106,
48,
49,
50,
2,
17,
16,
20,
14,
11,
17,
0,
106,
51,
52,
53,
2,
17,
20,
21,
14,
17,
18,
0,
106,
54,
55,
56,
2,
20,
16,
22,
17,
11,
10,
0,
106,
57,
58,
59,
2,
2,
5,
8,
2,
5,
8,
0,
106,
60,
61,
62,
2,
8,
5,
4,
8,
5,
4,
0,
106,
63,
64,
65,
2,
8,
4,
7,
8,
4,
7,
0,
106,
66,
67,
68,
2,
21,
18,
17,
18,
15,
14,
0,
106,
69,
70,
71,
2,
17,
18,
15,
14,
15,
13,
0,
106,
72,
73,
74,
2,
19,
14,
13,
16,
12,
9,
0,
106,
75,
76,
77,
2,
19,
13,
15,
16,
9,
13,
0,
106,
78,
79,
80,
2,
21,
20,
14,
18,
17,
12,
0,
106,
81,
82,
83,
2,
21,
14,
19,
18,
12,
16,
0
]
}
},
{
"uuid": "9F45CB92-39AA-4E45-B76A-D438AE10D54F",
"type": "Geometry",
"data": {
"vertices": [
-2.5057675689458847,
4.319151993840933,
6.2973895482718945,
4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
-3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
-0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-2.5057675689458847,
4.516975749284029,
-8.143744599074125,
6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
-2.5057675689458847,
4.516975749284029,
-8.143744599074125,
4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
-2.5057675689458847,
4.516975749284029,
-8.143744599074125,
-3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
-0.9561481513082981,
-15.529164802283049,
6.066595166921616,
6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
-0.9561481513082981,
-15.529164802283049,
6.066595166921616,
4.2532107420265675,
4.549946375191212,
-0.8902068994939327,
-2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
-0.9561481513082981,
-15.529164802283049,
6.066595166921616,
-2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
-2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-7.814038340002298,
4.28618136793375,
-0.9891187772154808,
-3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
-2.5057675689458847,
4.516975749284029,
-8.143744599074125,
-7.814038340002298,
4.28618136793375,
-0.9891187772154808,
-7.814038340002298,
4.28618136793375,
-0.9891187772154808,
-2.5057675689458847,
4.319151993840933,
6.2973895482718945,
-3.1651800870895386,
8.308597728610039,
-0.8902068994939327,
-7.814038340002298,
4.28618136793375,
-0.9891187772154808,
-2.5057675689458847,
4.516975749284029,
-8.143744599074125,
-0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-7.814038340002298,
4.28618136793375,
-0.9891187772154808,
-0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
6.594125181436539,
-15.331341046839952,
-1.1210012808442116,
-0.9561481513082981,
-15.529164802283049,
6.066595166921616,
-0.5275300145149231,
-19.84831679612398,
-1.4836781658232212,
-7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
-0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
-0.5275300145149231,
-19.84831679612398,
-1.4836781658232212,
-0.5275300145149231,
-19.84831679612398,
-1.4836781658232212,
-0.9561481513082981,
-15.529164802283049,
6.066595166921616,
-7.879979591816664,
-15.4302529245615,
-1.1210012808442116,
-0.5275300145149231,
-19.84831679612398,
-1.4836781658232212,
-0.9561481513082981,
-15.364311672747135,
-8.341568354517221,
6.594125181436539,
-15.331341046839952,
-1.1210012808442116
],
"normals": [
-0.078125,
0.5275590551181102,
0.7716535433070866,
0.7401574803149606,
0.5826771653543307,
0,
-0.109375,
0.937007874015748,
0.007874015748031496,
0.8188976377952756,
-0.4609375,
-0.0078125,
-0.015625,
-0.484375,
-0.796875,
-0.078125,
0.5511811023622047,
-0.75,
-0.015625,
-0.5234375,
0.7795275590551181,
-0.78125,
-0.5078125,
-0.0078125,
-0.8359375,
0.4094488188976378,
0,
0,
-0.9296875,
-0.0234375
],
"colors": [ 45568 ],
"uvs": [
[ 0, 0 ]
],
"faces": [
106,
0,
1,
2,
1,
0,
0,
0,
0,
1,
2,
0,
106,
3,
4,
5,
1,
0,
0,
0,
3,
4,
5,
0,
106,
6,
7,
8,
1,
0,
0,
0,
3,
5,
1,
0,
106,
9,
10,
11,
1,
0,
0,
0,
1,
5,
2,
0,
106,
12,
13,
14,
1,
0,
0,
0,
6,
3,
1,
0,
106,
15,
16,
17,
1,
0,
0,
0,
6,
1,
0,
0,
106,
18,
19,
20,
1,
0,
0,
0,
7,
6,
0,
0,
106,
21,
22,
23,
1,
0,
0,
0,
7,
0,
8,
0,
106,
24,
25,
26,
1,
0,
0,
0,
2,
5,
8,
0,
106,
27,
28,
29,
1,
0,
0,
0,
8,
0,
2,
0,
106,
30,
31,
32,
1,
0,
0,
0,
8,
5,
4,
0,
106,
33,
34,
35,
1,
0,
0,
0,
8,
4,
7,
0,
106,
36,
37,
38,
1,
0,
0,
0,
3,
6,
9,
0,
106,
39,
40,
41,
1,
0,
0,
0,
7,
4,
9,
0,
106,
42,
43,
44,
1,
0,
0,
0,
9,
6,
7,
0,
106,
45,
46,
47,
1,
0,
0,
0,
9,
4,
3,
0
]
}
},
{
"uuid": "F9350E6C-3CBB-491A-B6AF-5D8F85CB5FB1",
"type": "Geometry",
"data": {
"vertices": [
18.925139270722866,
-7.418390829116106,
14.540046025067568,
0,
-6.066595166921616,
23.705880027264357,
0,
-16.78204858675599,
3.1981507129967213,
21.826554350554943,
7.649185210466385,
16.847989838570356,
0,
7.649185210466385,
26.046794466674328,
0,
-6.066595166921616,
23.705880027264357,
21.826554350554943,
7.649185210466385,
16.847989838570356,
0,
-6.066595166921616,
23.705880027264357,
18.925139270722866,
-7.418390829116106,
14.540046025067568,
14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
36.432541627436876,
16.847989838570356,
0,
7.649185210466385,
26.046794466674328,
14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
7.649185210466385,
26.046794466674328,
21.826554350554943,
7.649185210466385,
16.847989838570356,
15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
18.925139270722866,
-7.418390829116106,
14.540046025067568,
0,
-16.78204858675599,
3.1981507129967213,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
21.826554350554943,
7.649185210466385,
16.847989838570356,
18.925139270722866,
-7.418390829116106,
14.540046025067568,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
18.925139270722866,
-7.418390829116106,
14.540046025067568,
15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
11.473777815699577,
36.92710101604462,
-0.16485312953591347,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
0,
11.803484074771404,
-13.08933848515153,
11.473777815699577,
36.92710101604462,
-0.16485312953591347,
0,
11.803484074771404,
-13.08933848515153,
0,
37.09195414558053,
-5.011535137891769,
0,
-7.121655195951462,
-12.396955341100693,
15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
0,
-16.78204858675599,
3.1981507129967213,
0,
11.803484074771404,
-13.08933848515153,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
0,
11.803484074771404,
-13.08933848515153,
15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
0,
-7.121655195951462,
-12.396955341100693,
-18.694344889372587,
-7.418390829116106,
14.540046025067568,
-15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
0,
-16.78204858675599,
3.1981507129967213,
-15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
-18.694344889372587,
-7.418390829116106,
14.540046025067568,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
-15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
0,
36.432541627436876,
16.847989838570356,
0,
48.796526342630386,
3.1651800870895386,
-14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
-6.066595166921616,
23.705880027264357,
-18.694344889372587,
-7.418390829116106,
14.540046025067568,
0,
-16.78204858675599,
3.1981507129967213,
-18.694344889372587,
-7.418390829116106,
14.540046025067568,
0,
-6.066595166921616,
23.705880027264357,
0,
7.649185210466385,
26.046794466674328,
-18.694344889372587,
-7.418390829116106,
14.540046025067568,
0,
7.649185210466385,
26.046794466674328,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
11.473777815699577,
36.92710101604462,
-0.16485312953591347,
0,
48.796526342630386,
3.1651800870895386,
14.671928528696299,
36.432541627436876,
9.990099649876356,
-11.473777815699577,
36.92710101604462,
-0.16485312953591347,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
-11.473777815699577,
36.92710101604462,
-0.16485312953591347,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
-14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
-16.78204858675599,
3.1981507129967213,
-15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
0,
-7.121655195951462,
-12.396955341100693,
0,
-7.121655195951462,
-12.396955341100693,
-15.759959183633327,
-6.3963014259934425,
-6.660066433250904,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
0,
-7.121655195951462,
-12.396955341100693,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
0,
11.803484074771404,
-13.08933848515153,
-11.473777815699577,
36.92710101604462,
-0.16485312953591347,
0,
48.796526342630386,
3.1651800870895386,
0,
37.09195414558053,
-5.011535137891769,
0,
37.09195414558053,
-5.011535137891769,
0,
11.803484074771404,
-13.08933848515153,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
0,
37.09195414558053,
-5.011535137891769,
-18.067902997136116,
11.737542822957039,
-6.923831440508366,
-11.473777815699577,
36.92710101604462,
-0.16485312953591347,
0,
37.09195414558053,
-5.011535137891769,
0,
48.796526342630386,
3.1651800870895386,
11.473777815699577,
36.92710101604462,
-0.16485312953591347,
14.671928528696299,
36.432541627436876,
9.990099649876356,
21.826554350554943,
7.649185210466385,
16.847989838570356,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
14.671928528696299,
36.432541627436876,
9.990099649876356,
18.067902997136116,
11.737542822957039,
-6.923831440508366,
11.473777815699577,
36.92710101604462,
-0.16485312953591347,
14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
48.796526342630386,
3.1651800870895386,
0,
36.432541627436876,
16.847989838570356,
0,
7.649185210466385,
26.046794466674328,
0,
36.432541627436876,
16.847989838570356,
-14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
7.649185210466385,
26.046794466674328,
-14.671928528696299,
36.432541627436876,
9.990099649876356,
-21.826554350554943,
7.649185210466385,
16.847989838570356,
-14.671928528696299,
36.432541627436876,
9.990099649876356,
0,
48.796526342630386,
3.1651800870895386,
-11.473777815699577,
36.92710101604462,
-0.16485312953591347
],
"normals": [
0.6141732283464567,
-0.625,
0.3228346456692913,
0,
-0.578125,
0.7401574803149606,
0,
-0.9296875,
-0.0546875,
0.8267716535433071,
0.06299212598425197,
0.4409448818897638,
0,
0.05511811023622047,
0.937007874015748,
0.6692913385826772,
0.5669291338582677,
0.33858267716535434,
0,
0.5196850393700787,
0.7874015748031497,
0.5826771653543307,
-0.5390625,
-0.4921875,
0.7165354330708661,
0.09448818897637795,
-0.59375,
0.6062992125984252,
0.47244094488188976,
-0.5234375,
0,
0.12598425196850394,
-0.921875,
0,
0.4251968503937008,
-0.828125,
0,
-0.4765625,
-0.796875,
-0.609375,
-0.625,
0.3228346456692913,
-0.578125,
-0.5390625,
-0.4921875,
-0.8203125,
0.05511811023622047,
0.4409448818897638,
-0.7109375,
0.09448818897637795,
-0.59375,
0,
0.9291338582677166,
-0.140625,
-0.6640625,
0.5669291338582677,
0.33858267716535434,
-0.6015625,
0.47244094488188976,
-0.5234375
],
"colors": [ 11711154 ],
"uvs": [
[
0.4675529897212982,
0.4570629894733429,
0.4696640074253082,
0.45621201395988464,
0.4696640074253082,
0.45174500346183777,
0.4671669900417328,
0.46569299697875977,
0.46956899762153625,
0.46562498807907104,
0.46956899762153625,
0.4518660008907318,
0.46721500158309937,
0.45271798968315125,
0.03707759827375412,
0.010176200419664383,
0.4513390064239502,
0.009897230193018913,
0.4781250059604645,
0.591346025466919,
0.008241759613156319,
0.5915110111236572,
0.47132301330566406,
0.45913299918174744,
0.4718799889087677,
0.4589950144290924,
0.471439003944397,
0.45357999205589294,
0.4712890088558197,
0.46803900599479675,
0.47189998626708984,
0.46803900599479675,
0.4718799889087677,
0.45561501383781433,
0.47132301330566406,
0.45575299859046936,
0.7801480293273926,
0.06074630096554756,
0.9061020016670227,
0.5486119985580444,
0.515625,
0.5820940136909485,
0.5163919925689697,
0.060764700174331665,
0.4697999954223633,
0.4589950144290924,
0.47129398584365845,
0.4589950144290924,
0.4697990119457245,
0.4536759853363037,
0.4697990119457245,
0.46803900599479675,
0.4712800085544586,
0.46803900599479675,
0.47129398584365845,
0.45561501383781433,
0.4697999954223633,
0.45561501383781433,
0.47132301330566406,
0.4590640068054199,
0.47132301330566406,
0.45568400621414185,
0.47189000248908997,
0.46810799837112427,
0.4712910056114197,
0.4681769907474518,
0.010714299976825714,
0.9510800242424011,
0.042410701513290405,
0.8080360293388367,
0.2544980049133301,
0.9269729852676392,
0.46754398941993713,
0.4570629894733429,
0.4672049880027771,
0.45271798968315125,
0.4671570062637329,
0.46562498807907104,
0.22251899540424347,
0.6302250027656555,
0.04452529922127724,
0.807682991027832,
0.2549070119857788,
0.9269400238990784,
0.007150790188461542,
0.009283419698476791,
0.007698169909417629,
0.39724498987197876,
0.025151800364255905,
0.5867000222206116,
0.02527409978210926,
0.009491439908742905,
0.4712870121002197,
0.4589950144290924,
0.4712870121002197,
0.45561501383781433,
0.22123900055885315,
0.6305009722709656,
0.04241060093045235,
0.8080360293388367,
0.08035700023174286,
0.6187999844551086,
0.9063050150871277,
0.5486119985580444,
0.7805759906768799,
0.06074630096554756,
0.2221119999885559,
0.6306689977645874,
0.025554699823260307,
0.009491439908742905,
0.02494250051677227,
0.5864909887313843,
0.007890449836850166,
0.39682599902153015,
0.008766040205955505,
0.009207310155034065,
0.2551000118255615,
0.9269729852676392,
0.011160699650645256,
0.9510800242424011,
0.03696409985423088,
0.010385500267148018,
0.007962740026414394,
0.5913019776344299,
0.25495201349258423,
0.9269400238990784,
0.2222059965133667,
0.6303009986877441
]
],
"faces": [
106,
0,
1,
2,
2,
0,
1,
2,
0,
1,
2,
0,
106,
3,
4,
5,
2,
3,
4,
5,
3,
4,
1,
0,
106,
6,
7,
8,
2,
3,
5,
6,
3,
1,
0,
0,
106,
9,
10,
11,
2,
7,
8,
9,
5,
6,
4,
0,
106,
12,
13,
14,
2,
7,
9,
10,
5,
4,
3,
0,
106,
15,
16,
17,
2,
11,
12,
13,
7,
0,
2,
0,
106,
18,
19,
20,
2,
14,
15,
16,
8,
3,
0,
0,
106,
21,
22,
23,
2,
14,
16,
17,
8,
0,
7,
0,
106,
24,
25,
26,
2,
18,
19,
20,
9,
8,
10,
0,
106,
27,
28,
29,
2,
18,
20,
21,
9,
10,
11,
0,
106,
30,
31,
32,
2,
22,
23,
24,
12,
7,
2,
0,
106,
33,
34,
35,
2,
25,
26,
27,
10,
8,
7,
0,
106,
36,
37,
38,
2,
25,
27,
28,
10,
7,
12,
0,
106,
39,
40,
41,
2,
12,
29,
13,
13,
14,
2,
0,
106,
42,
43,
44,
2,
30,
16,
31,
14,
13,
15,
0,
106,
45,
46,
47,
2,
30,
31,
32,
14,
15,
16,
0,
106,
48,
49,
50,
2,
33,
34,
35,
6,
17,
18,
0,
106,
51,
52,
53,
2,
1,
36,
2,
1,
13,
2,
0,
106,
54,
55,
56,
2,
37,
5,
4,
13,
1,
4,
0,
106,
57,
58,
59,
2,
37,
4,
38,
13,
4,
15,
0,
106,
60,
61,
62,
2,
39,
40,
41,
9,
17,
5,
0,
106,
63,
64,
65,
2,
42,
43,
44,
19,
16,
15,
0,
106,
66,
67,
68,
2,
42,
44,
45,
19,
15,
18,
0,
106,
69,
70,
71,
2,
24,
46,
22,
2,
14,
12,
0,
106,
72,
73,
74,
2,
28,
47,
14,
12,
14,
16,
0,
106,
75,
76,
77,
2,
28,
14,
25,
12,
16,
10,
0,
106,
78,
79,
80,
2,
48,
49,
50,
19,
17,
11,
0,
106,
81,
82,
83,
2,
21,
20,
51,
11,
10,
16,
0,
106,
84,
85,
86,
2,
21,
51,
52,
11,
16,
19,
0,
106,
87,
88,
89,
2,
50,
49,
53,
11,
17,
9,
0,
106,
90,
91,
92,
2,
54,
55,
56,
5,
3,
8,
0,
106,
93,
94,
95,
2,
54,
56,
57,
5,
8,
9,
0,
106,
96,
97,
98,
2,
58,
34,
59,
5,
17,
6,
0,
106,
99,
100,
101,
2,
9,
8,
60,
4,
6,
18,
0,
106,
102,
103,
104,
2,
9,
60,
61,
4,
18,
15,
0,
106,
105,
106,
107,
2,
62,
40,
63,
18,
17,
19,
0
]
}
}
],
"materials": [
{
"uuid": "8E292D51-CE68-4283-B2CD-5A5C281490F6",
"type": "MeshBasicMaterial",
"color": 16777215,
"vertexColors": 2,
"depthFunc": 3,
"depthTest": true,
"depthWrite": true
},
{
"uuid": "85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"type": "MeshBasicMaterial",
"color": 16777215,
"vertexColors": 1,
"depthFunc": 3,
"depthTest": true,
"depthWrite": true
},
{
"uuid": "DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"type": "MeshBasicMaterial",
"color": 16777215,
"map": "9A03B0E0-3542-456A-8FB4-25F15119CF1D",
"vertexColors": 2,
"transparent": true,
"depthFunc": 3,
"depthTest": true,
"depthWrite": true,
"alphaTest": 0.5
},
{
"uuid": "06A640B4-BABB-40CE-AC5F-A542730A63BC",
"type": "MeshBasicMaterial",
"color": 16777215,
"map": "B60F8C2C-CC8E-4345-A20A-AD177C33DAC7",
"vertexColors": 2,
"transparent": true,
"depthFunc": 3,
"depthTest": true,
"depthWrite": true,
"alphaTest": 0.5
}
],
"textures": [
{
"uuid": "9A03B0E0-3542-456A-8FB4-25F15119CF1D",
"name": "",
"mapping": 300,
"repeat": [ 1, 1 ],
"offset": [ 0, 0 ],
"center": [ 0, 0 ],
"rotation": 0,
"wrap": [ 1001, 1001 ],
"format": 1023,
"minFilter": 1008,
"magFilter": 1006,
"anisotropy": 1,
"flipY": false,
"image": "9B2D0FBF-807F-4780-8170-109362DCA8C8"
},
{
"uuid": "B60F8C2C-CC8E-4345-A20A-AD177C33DAC7",
"name": "",
"mapping": 300,
"repeat": [ 1, 1 ],
"offset": [ 0, 0 ],
"center": [ 0, 0 ],
"rotation": 0,
"wrap": [ 1001, 1001 ],
"format": 1023,
"minFilter": 1008,
"magFilter": 1006,
"anisotropy": 1,
"flipY": false,
"image": "60CA3C24-DD82-4DC7-ADBA-84D814EC733C"
}
],
"images": [
{
"uuid": "9B2D0FBF-807F-4780-8170-109362DCA8C8",
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAD8UlEQVR4Xu2bz4vTQBTHX92r/4OVsoJH/wFrRUrV68KeRBYKRfYgrOCxv44LLexBpBBYxNPCXtVSxLr+E4JLsX+E16wyyUw7TWcm85KXTIPJtS+TeZ/3fW/eTNIKjOEvmK4T3/jz6sfxnp2djdW0CzC7DQBvbKy5zQhg/HZlXz+zu7ViBLCoA7z7ZjcSJYCTU4Tzo3B+zT8ArSExgCASvXwBoKM/2nKeTZhGAS4AYKMfibyIFg0A2/xvDjbkZycZhRUq+lz6Ut7LIxYTAFH0aVIAUwCPHwPUrhIHPrgRFX12w2bVjz7cf3DHaj76VQCT/xQAUNH/7wGoK79VyCNGegXYFkA2YO4KMMsfA2I3ABDnf/EAEOd/egCYFYAiBVAA6PKfTV2dApgVwAWA40/pl10uExoAaTtBrAIyB4BZAYKdWIpWOEkBzBSAMf9Z/63ZoyfdDqOizxugTAFo859vPoLcUUBgKtjn7fB1Pcwwq620AaqynGddBLXy582HNmJYR4R3Se7LqhEK5P9cEWGJujZnkzjCJY06+orfB+D6gGY3PBMMzuDEtZZ4t/8UXr54D9VqdfXrcrmEDx9fwbD/RbonKQDMdCXVaA5CsKNVAE75oahweu3IYrEMHb+lOPC88YGBqNUEmDwB0KmgAuBHToVDRyYTD9rtttp5gfnGB8/zoNNph/tztJSx8ZLtaYqhFsB8fg8ePlrEzvDH9xo0Gr8cAKBRQfEBpKwFBQfAVZACghYAq/693iw2BQaDJl8N8q4BNPVAC4AVtfl8YqwDYf53ePFzCUBaHpFtsgFAKK9u/ys06osNEMzx+VUNhv0nUuXfBQCisdp+VaaTsgYAM5f7At3tURvMy8zY7CIwUL83lAdWAEjSnu5K9E3M1DAMALbb4u3hY3aIBDGkH0KeMzsS2+oEpYJi/fRdk771xE0AbEAU13HhnUEB9hSLbFkC0NeAIsfVfu6lAkoFmD6TUx6A0h1I2gs1O0vzZ3IlANX3eqUCNr7IzE6c+YxcpoDxU9myBpQ1QP2aTPN1Zj5ZS/uUnaoBB/sHRu8ury9pvdd+IiMek1MNYI637rbg6P6R0cHzn+cw/T0FShDOFcCcv3h2gYrs4edDMghOAUSdZxEWV5waqCA4BeA1vQ3Z752t30L7r81/1WGw2jP2Ujbd5QxA1HnmBgYAs6eAUAJw0QnqCh9WAUwFaWuBEwUUCICqEKXfDpcANGv/DqaAZilK+lUoX7FsFKBb3KLLY8Y1IBsAzLm4ZdAGQA7LYHYAVCqQU8AGQNros2fErALZAWAPT7IPEGAonHcOQECw2QkKx6l3hE4VIMs87ixA2FJuhdmY/wCzmlEez5hvawAAAABJRU5ErkJggg=="
},
{
"uuid": "60CA3C24-DD82-4DC7-ADBA-84D814EC733C",
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAFP0lEQVR4Xu2bz0tUURTH79BWrI2YEpVNtGgjtAlzEdKIq0BwLVoLceXKRT9MR8ss8A8QF6VIyyBoJSoSaNImcNMimqwITdyUuBXjTJzxvPvuub/efTMj09vpe/fc8/2cc+6v9yZzuDp1JGr4yoQAMD6/IhbeFYoYt7a2IjhbWlpE782sGOu7lRgz9qPqA4z79JMIAOeQSmkSEGn24w3g8t3ZWLRtQjzan3PKBhA/MbdsYzqWeV9eDBjbeQHwFY/e2ELwFY/9QNaZIDgDSOqULYRy9eMEYHd7R7SPvGVTHyI72HlVNDY3lVIP2swsfYqlsSk6qixzsU+zYP3J7YhPtC6cAHBRUTkmF58KBFcKcj++9m2yzQmAHBUbx3QguCzAfpLatxkLnACc6rhf0mM7kHHDME5tqkEKAPjM6bQvOYsOV6eUrngBSCreODcFeoBCCAaAEw81/vXbD63rly6eZwcjXcMkthFCEABgTF7SUufa7r3WAth41lO8bwsilG2V3+ioUwmoBjSIukm43A5AmCCg+DRse0+DtKGvg2hDByFN23IwvDIgqYPgRJoATPYTZ8DG+w/Oaa8aHABC243rsVtp208EwCX67bt77KC43thQzAIdAFN702xpM9Y4l4BNdNDxK00NrI+fd/bE9MtBFsDwnRlhag/GAaTu4iB7zwImACBe5zh1duApnwGzD/RTKtoBkDoIZQWgEr85Pi725xciO0jYA2SzWZHvqGMzIL96IAqFQqxdfV+vaB0biwRdB6GiAED8Zn6CzdBcLicWH8bPCrsmV8TyMn8K1JofjUCoSgCqyMskTLtBjhy0o5lQFQDk9N/u7IpFESIHF80K1Rqd7jpVbcAGZE/z0mKJEQehbCVAAaiiD0I+PvpXu9ceH5eGDgDXBmzYZkHFAMi1HxoAQKBjQdVlwH8A0uhf8xmAKRtqEDxxJcBNaaZZQLfMPVFjQM0BkJe/oQFU3TQIAulaQLUQUkHwLQG6ECrrSlB3HiAvhnT7AFzMcO8F5G8AZHi29W86e3Q+DwBHdFtiFwghNkNJog9avACYToXogUha22EQrjsQsTkN8gYADW3O7HVHWnAaxKUn2oZTIe7iDkFc3z14ZQB1ygYEfd7WwbTsykCLAGhnpkGDi4jN6yto62o/LbuoI7P9augI3+mBc8U3PYqjat2K7CTfy6xNdhe/EwTxeKUJgb6xrYa3zEoA9BOXUNGlwmEVh/N8pSGUANAsCAlAFg79yIsc7tV1KPg6O0UAmP4hU18lXCUe/ldxAEgo6eAnf5aC5/9wvs+JrxoAPuJVX42BaLjgxQdcJvEVHwNMH0uDSLi4z1VRMGaRLFwXebi3Ntld0Wk3thLkvgWUhcqC8W+MuEk4Pl/J+gcfSgC4+jWNxFQwPmvayuJzlU7/IgAhROQHE1ykdSBsBcs2Qqc/bNOHZ98oXZ0eUJdaCQAV7ivIlC30fujoo/iz5y7E3Pj183vpf+tz0Q8mYxngIsL32ZDiadRB/MH+n5hbdfWnBQeh7ABCiJdTHaOO4g/2f0cg1NWfERQCLYfMaH/uyOcXGT7RTyJeFo2iwA8adVk8+ilDwFJgZwEfgbo2NuLb+48/xlbZovWtSnVOPNgyAqAdhvq1BtgE4XDZ/GqsZ4Q/ApMjjf7qRMsQAQI+H8sALnq+MFyEY99dQ8+tE89FOC0DZwCyRyYgNqnOqTSVgDUdiwetM8DCVrBHygUgMguYNkPB1FkYKhcAuhhKfCxuocv6kXIAiK0EaykDZPEQmZrJAJX4mgDA7QKxLv8CBSotDK94XnQAAAAASUVORK5CYII="
}
],
"object": {
"uuid": "8E7F0D38-492F-4060-9BBA-951B7DC4B176",
"type": "Object3D",
"name": "0x00",
"matrix": [
1,
0,
0,
0,
0,
0.998825175906701,
-0.04845893080690099,
0,
0,
0.04845893080690099,
0.998825175906701,
0,
0,
68.85199737548828,
0,
1
],
"children": [
{
"uuid": "137A4843-D6E0-4739-B105-1EAF584842E7",
"type": "Object3D",
"name": "0x01",
"matrix": [
1,
0,
0,
0,
0,
0.999813136619177,
-0.019331110773127574,
0,
0,
0.019331110773127574,
0.999813136619177,
0,
0.0000010807500530063407,
44.37459945678711,
4.312079906463623,
1
],
"children": [
{
"uuid": "2A8A3F20-9DC4-4DE8-A775-94FB2D03B477",
"type": "Object3D",
"name": "0x19",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "A3C7EDC5-2D05-46CA-B080-7878C56F18CA",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "130B14E9-1125-46F6-B0FB-B023C1ADA013",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "6E1F0205-671D-4789-A160-6A512CC752AE",
"type": "Object3D",
"name": "0x02",
"matrix": [
0.8993484148292785,
-0.16793971770169405,
0.4036937948028668,
0,
0.14444211931587095,
0.9855729607766783,
0.08821798656414517,
0,
-0.41268499235082867,
-0.02102831909990214,
0.9106310487152462,
0,
-11.213299751281738,
-1.0430550575256348,
3.205125093460083,
1
],
"children": [
{
"uuid": "18CFCBEE-1629-4ED4-87A5-801E69CA0301",
"type": "Object3D",
"name": "0x14",
"matrix": [
1,
0,
0,
0,
0,
0.9987502595339052,
0.04997918647754436,
0,
0,
-0.04997918647754436,
0.9987502595339052,
0,
-0.41413450241088867,
-27.47760009765625,
0.5354700088500977,
1
],
"children": [
{
"uuid": "45AC2CC2-8475-4900-A2D8-DA68152DA3DD",
"type": "Object3D",
"name": "0x16",
"matrix": [
0.9829152200865846,
0.12694359372927957,
-0.13327788313608727,
0,
-0.13093015710907233,
0.9911573445126421,
-0.021550229187672354,
0,
0.12936368919265775,
0.038632142443089795,
0.9908443840930433,
0,
0.2504335045814514,
-34.06945037841797,
-0.36787500977516174,
1
],
"children": [
{
"uuid": "7107DBF6-133B-419A-9CDB-2FB85D1E174F",
"type": "Object3D",
"name": "0x18",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"children": [
{
"uuid": "0487246E-401F-4FBB-A7F6-D75D74C4ACAE",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "4CDF51FA-5B30-4CA1-9757-97245E5DD514",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "2CF57CDB-929B-40F4-A7A5-C1C75BBFB3A8",
"type": "Object3D",
"name": "0x17",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "3EE564A6-5395-49CF-BF49-94EB599F0FC7",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "A2005256-AA34-48B9-A66A-1A998069E9A3",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "CFBDC128-C450-4E32-8DF9-49D2BB15E338",
"type": "Object3D",
"name": "0x15",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "7ECB85BD-43E7-4213-8D0A-CB2FCFC18BF2",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "741EC3B9-4607-4C64-A121-BC13C11C928F",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "52EEF4A8-B402-4FF8-AB2A-063766B74B15",
"type": "Object3D",
"name": "0x03",
"matrix": [
0.8993484148292785,
0.16793971770169405,
-0.4036937948028668,
0,
-0.14444211931587095,
0.9855729607766783,
0.08821798656414517,
0,
0.41268499235082867,
-0.02102831909990214,
0.9106310487152462,
0,
11.213299751281738,
-1.0430550575256348,
3.205125093460083,
1
],
"children": [
{
"uuid": "3EC4A47D-AACC-4CF9-928E-3544F1A85D65",
"type": "Object3D",
"name": "0x0F",
"matrix": [
1,
0,
0,
0,
0,
0.9987502595339052,
0.04997918647754436,
0,
0,
-0.04997918647754436,
0.9987502595339052,
0,
0.41413450241088867,
-27.47760009765625,
0.5354700088500977,
1
],
"children": [
{
"uuid": "96713064-BE85-4BDA-B00E-D3FE4470BC01",
"type": "Object3D",
"name": "0x11",
"matrix": [
0.9829151489524695,
-0.12694323524363335,
0.13327874918990057,
0,
0.130929829336578,
0.9911573878658237,
-0.02155022665522747,
0,
-0.12936456141323793,
0.038632208128408646,
0.9908442676553586,
0,
-0.2504335045814514,
-34.06945037841797,
-0.36787348985671997,
1
],
"children": [
{
"uuid": "9924D0B3-D276-4A64-9D5B-077F6C3AC3F0",
"type": "Object3D",
"name": "0x13",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"children": [
{
"uuid": "F2D5922B-2046-49B5-8B03-E30F32361760",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "B1BB71B8-39B9-4228-98B8-E8E2711BDE02",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "3C5EBEEF-3E40-432F-9559-67B89EED5F54",
"type": "Object3D",
"name": "0x12",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "43652D99-6B8A-430B-9D3C-8F21C3B9D1F9",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "93349AD4-9627-4854-9024-B299FF693C49",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "33C231D3-DD5A-4D49-A9C5-4B7053210855",
"type": "Object3D",
"name": "0x10",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "5A3D6158-7639-49DD-9EA8-08B1CC37E5BE",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "C6F01B52-BEB4-4359-87E0-3BA4FF5DD34E",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "FD8DA108-8A3F-4E0B-86BD-F27FE1DE2819",
"type": "Object3D",
"name": "0x04",
"matrix": [
0.8228060282104059,
-0.47443859735595817,
-0.31288697205145444,
0,
0.5643327213791567,
0.7471805760314918,
0.35106946090772867,
0,
0.06722216540257984,
-0.4654344251773381,
0.8825259068936329,
0,
-20.56529998779297,
31.397199630737305,
3.9478800296783447,
1
],
"children": [
{
"uuid": "B7B9FE52-3553-41BC-8E18-15467D95D649",
"type": "Object3D",
"name": "0x0A",
"matrix": [
1,
0,
0,
0,
0,
0.765018072526835,
-0.6440088110478974,
0,
0,
0.6440088110478974,
0.765018072526835,
0,
-0.5592799782752991,
-14.277000427246094,
-0.5546950101852417,
1
],
"children": [
{
"uuid": "13BD1589-EF83-4439-9D26-9E1D5A448CB1",
"type": "Object3D",
"name": "0x0C",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0.5097500085830688,
-27.396400451660156,
1.1306300163269043,
1
],
"children": [
{
"uuid": "6AF0F850-5337-4191-9279-01994EDD8E73",
"type": "Object3D",
"name": "0x0E",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"children": [
{
"uuid": "09A3CEB4-0FD3-4901-950C-15245E84053E",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "646D5588-CAF6-45B4-A18F-030003020B40",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "36002B14-E831-46BF-8052-60F2977A2B0F",
"type": "Object3D",
"name": "0x0D",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "F4DF86EF-062F-4ACD-8DF7-11771EFAF37B",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "A59FF547-B8EA-4270-AF7B-568348232E77",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "52AF1B67-7EE6-4A2A-8575-B71B38BAF610",
"type": "Object3D",
"name": "0x0B",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "34ABB552-C413-49F9-B948-9D41A51750DA",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "FCF25B70-EA96-49E8-8675-B6C14444C0AC",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "500C2DAB-3357-4C30-818A-C9BDF7B3E78A",
"type": "Object3D",
"name": "0x05",
"matrix": [
0.8541173273475101,
0.4183205568845738,
0.3090169943749474,
0,
-0.5119484704362126,
0.7809180873617847,
0.35787666094512816,
0,
-0.09160979610701347,
-0.463869434775554,
0.8811542389038592,
0,
20.56529998779297,
31.397199630737305,
3.9478800296783447,
1
],
"children": [
{
"uuid": "16C77D57-6C65-4180-85E9-7E482B5259E2",
"type": "Object3D",
"name": "0x07",
"matrix": [
1,
0,
0,
0,
0,
0.761456857963491,
-0.6482155918059731,
0,
0,
0.6482155918059731,
0.761456857963491,
0,
0.5592799782752991,
-14.277000427246094,
-0.5546950101852417,
1
],
"children": [
{
"uuid": "1D738B0E-B820-43C2-9433-BFD1C4F31930",
"type": "Object3D",
"name": "0x09",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "B20023F3-1F44-4F74-A89F-901BF830A927",
"type": "Mesh",
"matrix": [
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1
],
"geometry": "4B5F2C81-FB60-4FDB-BAE4-2F0F4226FF52",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "A41CB65B-6492-4643-9B4D-1F7B723EAEF9",
"type": "Object3D",
"name": "0x08",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "9AD60C6B-CC50-4084-8E74-70B3288F4EBE",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "9F45CB92-39AA-4E45-B76A-D438AE10D54F",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
},
{
"uuid": "433AB3EC-AFAB-4F76-84C0-6A260930FBAD",
"type": "Object3D",
"name": "0x06",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"children": [
{
"uuid": "F5A090A7-7F26-4DB7-B833-7AA6E726B83E",
"type": "Mesh",
"matrix": [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ],
"geometry": "F9350E6C-3CBB-491A-B6AF-5D8F85CB5FB1",
"material": [
"8E292D51-CE68-4283-B2CD-5A5C281490F6",
"85D6F030-1DA6-400D-8BDC-A5F8AF98A0A1",
"DC9B863C-58ED-4AEB-8215-1E4F80A4D39E",
"06A640B4-BABB-40CE-AC5F-A542730A63BC"
]
}
]
}
]
}
};
var grass_img = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAEDWlDQ1BJQ0MgUHJvZmlsZQAAOI2NVV1oHFUUPrtzZyMkzlNsNIV0qD8NJQ2TVjShtLp/3d02bpZJNtoi6GT27s6Yyc44M7v9oU9FUHwx6psUxL+3gCAo9Q/bPrQvlQol2tQgKD60+INQ6Ium65k7M5lpurHeZe58853vnnvuuWfvBei5qliWkRQBFpquLRcy4nOHj4g9K5CEh6AXBqFXUR0rXalMAjZPC3e1W99Dwntf2dXd/p+tt0YdFSBxH2Kz5qgLiI8B8KdVy3YBevqRHz/qWh72Yui3MUDEL3q44WPXw3M+fo1pZuQs4tOIBVVTaoiXEI/MxfhGDPsxsNZfoE1q66ro5aJim3XdoLFw72H+n23BaIXzbcOnz5mfPoTvYVz7KzUl5+FRxEuqkp9G/Ajia219thzg25abkRE/BpDc3pqvphHvRFys2weqvp+krbWKIX7nhDbzLOItiM8358pTwdirqpPFnMF2xLc1WvLyOwTAibpbmvHHcvttU57y5+XqNZrLe3lE/Pq8eUj2fXKfOe3pfOjzhJYtB/yll5SDFcSDiH+hRkH25+L+sdxKEAMZahrlSX8ukqMOWy/jXW2m6M9LDBc31B9LFuv6gVKg/0Szi3KAr1kGq1GMjU/aLbnq6/lRxc4XfJ98hTargX++DbMJBSiYMIe9Ck1YAxFkKEAG3xbYaKmDDgYyFK0UGYpfoWYXG+fAPPI6tJnNwb7ClP7IyF+D+bjOtCpkhz6CFrIa/I6sFtNl8auFXGMTP34sNwI/JhkgEtmDz14ySfaRcTIBInmKPE32kxyyE2Tv+thKbEVePDfW/byMM1Kmm0XdObS7oGD/MypMXFPXrCwOtoYjyyn7BV29/MZfsVzpLDdRtuIZnbpXzvlf+ev8MvYr/Gqk4H/kV/G3csdazLuyTMPsbFhzd1UabQbjFvDRmcWJxR3zcfHkVw9GfpbJmeev9F08WW8uDkaslwX6avlWGU6NRKz0g/SHtCy9J30o/ca9zX3Kfc19zn3BXQKRO8ud477hLnAfc1/G9mrzGlrfexZ5GLdn6ZZrrEohI2wVHhZywjbhUWEy8icMCGNCUdiBlq3r+xafL549HQ5jH+an+1y+LlYBifuxAvRN/lVVVOlwlCkdVm9NOL5BE4wkQ2SMlDZU97hX86EilU/lUmkQUztTE6mx1EEPh7OmdqBtAvv8HdWpbrJS6tJj3n0CWdM6busNzRV3S9KTYhqvNiqWmuroiKgYhshMjmhTh9ptWhsF7970j/SbMrsPE1suR5z7DMC+P/Hs+y7ijrQAlhyAgccjbhjPygfeBTjzhNqy28EdkUh8C+DU9+z2v/oyeH791OncxHOs5y2AtTc7nb/f73TWPkD/qwBnjX8BoJ98VVBg/m8AAAk6SURBVFgJVVfbbhvXFd0znOGdFEVSES2aSmA1kmIgqlSgdZy2aFEnAQoU7VOB5iFAgKL/4S/oH/ilLy3Qp6J9KqyXwq0RGIXUIFAqqXZkUYxl8SJRJEXOhZystY/GcQ8gnZk5l73P2muvs2n9JkxFDx8EkijPi8hYrExJvM9PxblZEKdRklnnQmZjkcavfibPH/xF5j7YksvHO5iXlmg8QV/AnIFYuTT2wPyxh31E7Az/p/A3krA5wF7zUtpak/5/j7DOk2lvLE4d8yZXESalsTBEr6tg3BL/80vxd5r47sBAIMd/2pbZBFPQrIwFAx4Mssd7jl856MFQHj0Pwm8jrB+Ku8rDhdLd3oVhfqMtkcIC1j/6o4PJLjbLqVdh6xSbptQIT+U0yjDg6AZ2WvT00ZhOp7CRqAGnTgNsY0lVCooE3zhuHMyLXS3JtDvBOw8ExGCzsz0WW8QBJJF6xo/pzWU8T8R9e14nhc0e95JohMXVgjrm1NOSWqfTOgQH84CzgBdXxvtNRYQQF9//jjrhZi2E4URy91YQhg1dZGdyQLomTjQa6odoRCjz4u0P9H3WOYdBxnkA4zgJjCfKDpwTCQ4Q+5yrz0TCyiYxhwheqKPEK7dZl/72l4A/LX77DCfPS9geSb99AlRrcMyT8AQ2CDNb3EfjQA1mfngbUJmgM/aELTg4Rx/pCckLp7Eo7tobEuy3JGxdKMRLH38ElHIyOT4DKpnrPVwNlZXL4UDkAPlTltRGgyFAEMBQQhyNDDn4bbK7p4Z0HKSMm101z3Prviw2sFl78Crm6bu35ezRE3WGoZ32Qg1BBC4QqeCghfcRMupDzGnBmUBsp74Aj/PK8NmETpiQuKuN2Kb2NMy/RDmPv7S0/zqTl00Ohdj4VOf4O3v6zgywcikcrKQoERE7k4EdkZWPfy6tv/8Dzy72y4m18r/3o+HOkcZPWYqImLQi8b59pgWmX9xIXJOOKaydwCmTCSa/S7pHNEJaLkAnsGh6PIDBMkIyEv/wVNJ3V0BMcGMEYQibEJ56STL3butCnpCNsacTfFciIj0Zd6Zp/G7hZDQeSR6OBLqOZKQh3UN8GAd3xmNdQ+MUOY6TVzbzfnrOqR7iaVLOgsjwdKV7ShElDeFnXodNKqOn4WBuRxAVGraEakoRYiPpQGYYnYH5yAn9NvnsqSSR3mx0sgBVtZn3iWsdUYns4tTjlJ5yiokmFSN4S/ExwsJnphUhnvaYtuSNpxIeixpj7i7XQTaOG3mmtsQqyHCPdr8UO0C6MObUAA6mNugN0genHf2T0TMt5gW/O43CtWEzFhxSyMaSvQPBORng2cA/vTJ92ES+QwEZOtM7KvdcbfuHZL7ZyPxnLLnAVcdeHyG0TClCnyjX1CgvJfftgmRWfVlftwExxSuQ/NZbsvy9O7qcDvNw5Bozjg6FJxH2QGZUfm9HPJ27WoMjxmh8A1IFza1n3CDhqJBsRIwp+G1zxC2D4U0KFcPDSwh7gi8WSYueThABNv/wXBIVoMkY0xOiMO0NJbVwQ6SalFmzhe+GHLPXDFExGWcKzawzhDHzzlMHPeQ1DpMoYxxr41Dgjvq/ZlfzksSevCnhDmDI8VbxxYG+21CsZKX4ak2Kz/tHCp2mGbgYXSEMFd5wPNlQIadDbLFW8NTMIfbTHlHIa6ZwTtgcXiOBPUprE/nJj4+BAO+AABdHh3MwqYd64Kl43UsTvxYgw5WthmGchUg0vtC5RI8pGCNDYwnoPiEnZ3QMaRoXK0xPkpaEtYdXS/LwAU/CvQhtUq6O27oxb63g4ClY/8b15kxR5jccPDjGi1YdQAIhxNrM2ls6zhyfjnzsgRAhXFxD46wtGGZ3tQ6nSqqGNhXJqS+qwUQuCc8JWQ8TWE4RQqNafGZMCbnReoxlOU4yojjpDnEDEr1Qbn54F/nfxB6LkOLqKycKlZuKBtHNwVlKsUOPnDpPDhZggPCkVm9Bv1nn4WPHxJYbs9FgulGXAPXBFFIaN60B4axIm1hgHkMELdneQWrWcOpF6T3+9ytnLh9/oc82IQoRX/bzm99XaPzmMzAcG6GSIdFY2xnoGScoXnMfoXmmaPA7qjuoIIoRTbmSPH/0mcYXA1K4twXkEJKOr6fnN8MVww2bG/BDcNCW3r+eyNKPNmB8gpi54kElZx3qfgnLiAREC/NJIGpC3GbdrhYf6eWiOuXg1suiNiC63vGRHsqEjgVJAOfMgTluLfyhElFccqiA/PYLLEIaNm5I0OnoZEI77YJAN8tA6qnaJOtZxGhqkTfggi1FGON63gsMa0OfGdL4xDxEfGBupM90gJNYETHm0QjphF5RgVqlNhC/ZZRYuxQm3hGvqx83GSC+K0AqLrUgtQgpq6v01i1kwwuYSmlaGo6ZK5sOsFmLf16KyGojlYwxUuo6LPk1pOfVmQwPkjo5/kdn2ezqPAQlBTajlAcpeb+zzX3wnvQf7uqzu5qRypuhnO3oK+ZDLa9DzooJJDTG3eUyDHPjUBlLVK6ORyAiF04kuUktoGSjZEe5ZldrapwEo14wr2u//Ahz0/jt8IVmEldy/N13JpjDCwyVEozPrb+j77SZKPyudt/7z9diI4MSN7Li7/Xlu5/8Wi6mqIK/6orXT0iimJHwK6SlayH3UYbDyekpQjaXw6bgArKYqI1Oe/KD334inUFXZgEqX8i4BYl6/hwp+7InM+iLhRMNn+xD7yykcxUOfFq4b2dwn5/1Jbu6ICEI93JvD0xtgUhVmaICKv4UhPIpq5c4dRangPhYnkQDcCf08d3Hxo4Eh19LYmlR+s9eyGzQw9wZ+q6kl5dFsvgFFmWBHH4/nEJpUV6yXkjkfiH3CRV5nLmFn08+bscqPGcBFHqSebeBy6iFS2Me43XxDttiF/FDBCdOFC3J3vDl1nvz0j22ccJLGft9VcVEEfoBvkYhMMDtFV1ewXGsu8T9kQQpMc6Lyqr9jVnAq5Hs9KSweQcq6EFWjzR+LL3sKsSqiSsQGscLiRdN2AGc2IBrWP+zJRsNpC9+SUGu+TsxUV5AP4TGnGvasjA15TnXGe5BiMhmFpcTwB7JYHdXBg9JWU6izuOp8iY2WFDjJJUPDWfjryGup1NEJOy8QM8bkuFyMN5GSlsgLTWDK4zkx78jmNLfABdT2g4YdpT6AAAAAElFTkSuQmCC";
var idle_clip = THREE.AnimationClip.parse({"name":"MTNX","duration":1.3333333333333333,"tracks":[{"name":"0x00.position[x]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x00.position[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[68.85199737548828,66.0270004272461,68.85199737548828],"type":"vector"},{"name":"0x00.position[z]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.04847791790962219,0.0015220632776618004,-0.04847791790962219],"type":"vector"},{"name":"0x00.rotation[y]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[z]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x01.position[x]","times":[0,1.3166667222976685],"values":[0.0000010807500530063407,0.0000010807500530063407],"type":"vector"},{"name":"0x01.position[y]","times":[0,1.3166667222976685],"values":[44.37459945678711,44.37459945678711],"type":"vector"},{"name":"0x01.position[z]","times":[0,1.3166667222976685],"values":[4.312079906463623,4.312079906463623],"type":"vector"},{"name":"0x01.rotation[x]","times":[0,1.3166667222976685],"values":[-0.019332315772771835,-0.019332315772771835],"type":"vector"},{"name":"0x01.rotation[y]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x01.rotation[z]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x16.position[x]","times":[0,1.3166667222976685],"values":[0.2504335045814514,0.2504335045814514],"type":"vector"},{"name":"0x16.position[y]","times":[0,1.3166667222976685],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x16.position[z]","times":[0,1.3166667222976685],"values":[-0.36787500977516174,-0.36787500977516174],"type":"vector"},{"name":"0x16.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.02174592949450016,-0.24191483855247498,-0.02174592949450016],"type":"vector"},{"name":"0x16.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.13367563486099243,0.12196831405162811,0.13367563486099243],"type":"vector"},{"name":"0x16.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.12843912839889526,0.1067328229546547,0.12843912839889526],"type":"vector"},{"name":"0x11.position[x]","times":[0,1.3166667222976685],"values":[-0.2504335045814514,-0.2504335045814514],"type":"vector"},{"name":"0x11.position[y]","times":[0,1.3166667222976685],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x11.position[z]","times":[0,1.3166667222976685],"values":[-0.36787348985671997,-0.36787348985671997],"type":"vector"},{"name":"0x11.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.02174592949450016,-0.24191483855247498,-0.02174592949450016],"type":"vector"},{"name":"0x11.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.13367651402950287,-0.1219688430428505,-0.13367651402950287],"type":"vector"},{"name":"0x11.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.1284387856721878,-0.10673212260007858,-0.1284387856721878],"type":"vector"},{"name":"0x02.position[x]","times":[0,1.3166667222976685],"values":[-11.213299751281738,-11.213299751281738],"type":"vector"},{"name":"0x02.position[y]","times":[0,1.3166667222976685],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x02.position[z]","times":[0,1.3166667222976685],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x02.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.09657429903745651,-0.21804922819137573,0.09657429903745651],"type":"vector"},{"name":"0x02.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.41555067896842957,-0.39952680468559265,-0.41555067896842957],"type":"vector"},{"name":"0x02.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.18460871279239655,-0.2184663563966751,-0.18460871279239655],"type":"vector"},{"name":"0x03.position[x]","times":[0,1.3166667222976685],"values":[11.213299751281738,11.213299751281738],"type":"vector"},{"name":"0x03.position[y]","times":[0,1.3166667222976685],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x03.position[z]","times":[0,1.3166667222976685],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x03.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.09657429903745651,-0.21804922819137573,0.09657429903745651],"type":"vector"},{"name":"0x03.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.41555067896842957,0.39952680468559265,0.41555067896842957],"type":"vector"},{"name":"0x03.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.18460871279239655,0.2184663563966751,0.18460871279239655],"type":"vector"},{"name":"0x14.position[x]","times":[0,1.3166667222976685],"values":[-0.41413450241088867,-0.41413450241088867],"type":"vector"},{"name":"0x14.position[y]","times":[0,1.3166667222976685],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x14.position[z]","times":[0,1.3166667222976685],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x14.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.050000015646219254,0.5493249297142029,0.050000015646219254],"type":"vector"},{"name":"0x14.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,-0.05262185260653496,0],"type":"vector"},{"name":"0x14.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,0.05465289205312729,0],"type":"vector"},{"name":"0x0F.position[x]","times":[0,1.3166667222976685],"values":[0.41413450241088867,0.41413450241088867],"type":"vector"},{"name":"0x0F.position[y]","times":[0,1.3166667222976685],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x0F.position[z]","times":[0,1.3166667222976685],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x0F.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.050000015646219254,0.5493249297142029,0.050000015646219254],"type":"vector"},{"name":"0x0F.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,0.05262167751789093,0],"type":"vector"},{"name":"0x0F.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,-0.054653242230415344,0],"type":"vector"},{"name":"0x0C.rotation[x]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[y]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[z]","times":[0,1.3166667222976685],"values":[0,0],"type":"vector"},{"name":"0x0A.position[x]","times":[0,1.3166667222976685],"values":[-0.5592799782752991,-0.5592799782752991],"type":"vector"},{"name":"0x0A.position[y]","times":[0,1.3166667222976685],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x0A.position[z]","times":[0,1.3166667222976685],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x0A.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.699726939201355,-0.7139094471931458,-0.699726939201355],"type":"vector"},{"name":"0x0A.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,0.01757616363465786,0],"type":"vector"},{"name":"0x0A.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,0.032890379428863525,0],"type":"vector"},{"name":"0x07.position[x]","times":[0,1.3166667222976685],"values":[0.5592799782752991,0.5592799782752991],"type":"vector"},{"name":"0x07.position[y]","times":[0,1.3166667222976685],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x07.position[z]","times":[0,1.3166667222976685],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x07.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.7052386999130249,-0.7155186533927917,-0.7052386999130249],"type":"vector"},{"name":"0x07.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,-0.013222282752394676,0],"type":"vector"},{"name":"0x07.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0,-0.024822071194648743,0],"type":"vector"},{"name":"0x04.position[x]","times":[0,1.3166667222976685],"values":[-20.56529998779297,-20.56529998779297],"type":"vector"},{"name":"0x04.position[y]","times":[0,1.3166667222976685],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x04.position[z]","times":[0,1.3166667222976685],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x04.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.3786090314388275,0.48234790563583374,0.3786090314388275],"type":"vector"},{"name":"0x04.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.31823110580444336,0.36948269605636597,0.31823110580444336],"type":"vector"},{"name":"0x04.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.5230437517166138,-0.48866602778434753,-0.5230437517166138],"type":"vector"},{"name":"0x05.position[x]","times":[0,1.3166667222976685],"values":[20.56529998779297,20.56529998779297],"type":"vector"},{"name":"0x05.position[y]","times":[0,1.3166667222976685],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x05.position[z]","times":[0,1.3166667222976685],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x05.rotation[x]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.3857927918434143,0.48294132947921753,0.3857927918434143],"type":"vector"},{"name":"0x05.rotation[y]","times":[0,0.6499999761581421,1.3166667222976685],"values":[-0.3141592741012573,-0.3549877405166626,-0.3141592741012573],"type":"vector"},{"name":"0x05.rotation[z]","times":[0,0.6499999761581421,1.3166667222976685],"values":[0.45542970299720764,0.4240347445011139,0.45542970299720764],"type":"vector"}]});
var walk_clip = THREE.AnimationClip.parse({"name":"MTNX","duration":0.7333333333333333,"tracks":[{"name":"0x00.position[x]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x00.position[y]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[61.77399826049805,69.00199890136719,61.77399826049805,69.00199890136719,61.77399826049805],"type":"vector"},{"name":"0x00.position[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[x]","times":[0,0.7166666388511658],"values":[-0.0872664600610733,-0.0872664600610733],"type":"vector"},{"name":"0x00.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x01.position[x]","times":[0,0.7166666388511658],"values":[0.0000010807500530063407,0.0000010807500530063407],"type":"vector"},{"name":"0x01.position[y]","times":[0,0.7166666388511658],"values":[44.37459945678711,44.37459945678711],"type":"vector"},{"name":"0x01.position[z]","times":[0,0.7166666388511658],"values":[4.312079906463623,4.312079906463623],"type":"vector"},{"name":"0x01.rotation[x]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[-0.19198621809482574,-0.23869122564792633,-0.19198621809482574,-0.23869122564792633,-0.19198621809482574],"type":"vector"},{"name":"0x01.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x01.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x16.position[x]","times":[0,0.7166666388511658],"values":[0.2504335045814514,0.2504335045814514],"type":"vector"},{"name":"0x16.position[y]","times":[0,0.7166666388511658],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x16.position[z]","times":[0,0.7166666388511658],"values":[-0.36787500977516174,-0.36787500977516174],"type":"vector"},{"name":"0x16.rotation[x]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[0.11344639956951141,-0.1745329201221466,0.07853981852531433,-0.1745329201221466,0.11344639956951141],"type":"vector"},{"name":"0x16.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x16.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x11.position[x]","times":[0,0.7166666388511658],"values":[-0.2504335045814514,-0.2504335045814514],"type":"vector"},{"name":"0x11.position[y]","times":[0,0.7166666388511658],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x11.position[z]","times":[0,0.7166666388511658],"values":[-0.36787348985671997,-0.36787348985671997],"type":"vector"},{"name":"0x11.rotation[x]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[0.07853981852531433,-0.1745329201221466,0.11344639956951141,-0.1745329201221466,0.07853981852531433],"type":"vector"},{"name":"0x11.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x11.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x02.position[x]","times":[0,0.7166666388511658],"values":[-11.213299751281738,-11.213299751281738],"type":"vector"},{"name":"0x02.position[y]","times":[0,0.7166666388511658],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x02.position[z]","times":[0,0.7166666388511658],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x02.rotation[x]","times":[0,0.3499999940395355,0.7166666388511658],"values":[-0.6981316804885864,0.5235987901687622,-0.6981316804885864],"type":"vector"},{"name":"0x02.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x02.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x03.position[x]","times":[0,0.7166666388511658],"values":[11.213299751281738,11.213299751281738],"type":"vector"},{"name":"0x03.position[y]","times":[0,0.7166666388511658],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x03.position[z]","times":[0,0.7166666388511658],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x03.rotation[x]","times":[0,0.3499999940395355,0.7166666388511658],"values":[0.5235987901687622,-0.6981316804885864,0.5235987901687622],"type":"vector"},{"name":"0x03.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x03.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x14.position[x]","times":[0,0.7166666388511658],"values":[-0.41413450241088867,-0.41413450241088867],"type":"vector"},{"name":"0x14.position[y]","times":[0,0.7166666388511658],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x14.position[z]","times":[0,0.7166666388511658],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x14.rotation[x]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[0.47996553778648376,0,0.47996553778648376,0.8237954378128052,0.47996553778648376],"type":"vector"},{"name":"0x14.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x14.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0F.position[x]","times":[0,0.7166666388511658],"values":[0.41413450241088867,0.41413450241088867],"type":"vector"},{"name":"0x0F.position[y]","times":[0,0.7166666388511658],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x0F.position[z]","times":[0,0.7166666388511658],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x0F.rotation[x]","times":[0,0.1666666716337204,0.3499999940395355,0.5333333611488342,0.7166666388511658],"values":[0.47996553778648376,0.8237954378128052,0.47996553778648376,0,0.47996553778648376],"type":"vector"},{"name":"0x0F.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0F.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0C.position[x]","times":[0,0.7166666388511658],"values":[0.5097500085830688,0.5097500085830688],"type":"vector"},{"name":"0x0C.position[y]","times":[0,0.7166666388511658],"values":[-27.396400451660156,-27.396400451660156],"type":"vector"},{"name":"0x0C.position[z]","times":[0,0.7166666388511658],"values":[1.1306300163269043,1.1306300163269043],"type":"vector"},{"name":"0x0C.rotation[x]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0A.position[x]","times":[0,0.7166666388511658],"values":[-0.5592799782752991,-0.5592799782752991],"type":"vector"},{"name":"0x0A.position[y]","times":[0,0.7166666388511658],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x0A.position[z]","times":[0,0.7166666388511658],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x0A.rotation[x]","times":[0,0.7166666388511658],"values":[-0.6981316804885864,-0.6981316804885864],"type":"vector"},{"name":"0x0A.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x0A.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x07.position[x]","times":[0,0.7166666388511658],"values":[0.5592799782752991,0.5592799782752991],"type":"vector"},{"name":"0x07.position[y]","times":[0,0.7166666388511658],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x07.position[z]","times":[0,0.7166666388511658],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x07.rotation[x]","times":[0,0.7166666388511658],"values":[-0.6981316804885864,-0.6981316804885864],"type":"vector"},{"name":"0x07.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x07.rotation[z]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x04.position[x]","times":[0,0.7166666388511658],"values":[-20.56529998779297,-20.56529998779297],"type":"vector"},{"name":"0x04.position[y]","times":[0,0.7166666388511658],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x04.position[z]","times":[0,0.7166666388511658],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x04.rotation[x]","times":[0,0.3499999940395355,0.7166666388511658],"values":[0.9075711965560913,-0.03490658476948738,0.9075711965560913],"type":"vector"},{"name":"0x04.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x04.rotation[z]","times":[0,0.7166666388511658],"values":[-0.3141592741012573,-0.3141592741012573],"type":"vector"},{"name":"0x05.position[x]","times":[0,0.7166666388511658],"values":[20.56529998779297,20.56529998779297],"type":"vector"},{"name":"0x05.position[y]","times":[0,0.7166666388511658],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x05.position[z]","times":[0,0.7166666388511658],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x05.rotation[x]","times":[0,0.3499999940395355,0.7166666388511658],"values":[-0.03490658476948738,0.8726646304130554,-0.03490658476948738],"type":"vector"},{"name":"0x05.rotation[y]","times":[0,0.7166666388511658],"values":[0,0],"type":"vector"},{"name":"0x05.rotation[z]","times":[0,0.7166666388511658],"values":[0.3141592741012573,0.3141592741012573],"type":"vector"}]});
var jump_clip = THREE.AnimationClip.parse({"name":"MTNX","duration":0.5,"tracks":[{"name":"0x00.position[x]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x00.position[y]","times":[0,0.06666667014360428,0.11666666716337204,0.23333333432674408,0.36666667461395264,0.4000000059604645,0.4833333194255829],"values":[68.85199737548828,52.51850128173828,68.33550262451172,138.94749450683594,69.20449829101562,52.51850128173828,68.85199737548828],"type":"vector"},{"name":"0x00.position[z]","times":[0,0.11666666716337204,0.23333333432674408,0.36666667461395264,0.4000000059604645,0.4833333194255829],"values":[0,0,3.014130115509033,-0.07851400226354599,0,0],"type":"vector"},{"name":"0x00.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.04847826436161995,-0.04847826436161995,-0.24434609711170197,-0.04847826436161995,-0.04847826436161995],"type":"vector"},{"name":"0x00.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,0,0.5759586691856384,0,0],"type":"vector"},{"name":"0x00.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,0,-0.33161255717277527,0,0],"type":"vector"},{"name":"0x01.position[x]","times":[0,0.4833333194255829],"values":[0.0000010807500530063407,0.0000010807500530063407],"type":"vector"},{"name":"0x01.position[y]","times":[0,0.4833333194255829],"values":[44.37459945678711,44.37459945678711],"type":"vector"},{"name":"0x01.position[z]","times":[0,0.4833333194255829],"values":[4.312079906463623,4.312079906463623],"type":"vector"},{"name":"0x01.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.019333012402057648,-0.019333012402057648,-0.4363323152065277,-0.019333012402057648,-0.019333012402057648],"type":"vector"},{"name":"0x01.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[8.898508596644206e-9,8.898508596644206e-9,-0.5585053563117981,8.898508596644206e-9,8.898508596644206e-9],"type":"vector"},{"name":"0x01.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-5.03277917118794e-8,-5.03277917118794e-8,0.20943951606750488,-5.03277917118794e-8,-5.03277917118794e-8],"type":"vector"},{"name":"0x16.position[x]","times":[0,0.4833333194255829],"values":[0.2504335045814514,0.2504335045814514],"type":"vector"},{"name":"0x16.position[y]","times":[0,0.4833333194255829],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x16.position[z]","times":[0,0.4833333194255829],"values":[-0.36787500977516174,-0.36787500977516174],"type":"vector"},{"name":"0x16.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.02174505777657032,-0.60793137550354,0.8998917937278748,-0.60793137550354,-0.030904719606041908],"type":"vector"},{"name":"0x16.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.13367651402950287,-0.07997936010360718,0,-0.07997936010360718,0.13361595571041107],"type":"vector"},{"name":"0x16.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.1284387856721878,0.24832719564437866,0,0.24832719564437866,0.1314122974872589],"type":"vector"},{"name":"0x11.position[x]","times":[0,0.4833333194255829],"values":[-0.2504335045814514,-0.2504335045814514],"type":"vector"},{"name":"0x11.position[y]","times":[0,0.4833333194255829],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x11.position[z]","times":[0,0.4833333194255829],"values":[-0.36787348985671997,-0.36787348985671997],"type":"vector"},{"name":"0x11.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.02174505777657032,-0.6358147263526917,-0.1598721593618393,-0.6358147263526917,-0.030904719606041908],"type":"vector"},{"name":"0x11.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.13367651402950287,0.10045155137777328,0,0.10045155137777328,-0.13361595571041107],"type":"vector"},{"name":"0x11.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.1284387856721878,-0.2565756142139435,0,-0.2565756142139435,-0.1314122974872589],"type":"vector"},{"name":"0x02.position[x]","times":[0,0.4833333194255829],"values":[-11.213299751281738,-11.213299751281738],"type":"vector"},{"name":"0x02.position[y]","times":[0,0.4833333194255829],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x02.position[z]","times":[0,0.4833333194255829],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x02.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.09657429903745651,-0.7648155093193054,0.18744835257530212,-0.7648155093193054,0.09657429903745651],"type":"vector"},{"name":"0x02.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.41555067896842957,-0.1142471581697464,-0.5728170275688171,-0.1142471581697464,-0.41555067896842957],"type":"vector"},{"name":"0x02.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[-0.18460871279239655,-0.15552018582820892,0.4394738972187042,-0.15552018582820892,-0.18460871279239655],"type":"vector"},{"name":"0x03.position[x]","times":[0,0.4833333194255829],"values":[11.213299751281738,11.213299751281738],"type":"vector"},{"name":"0x03.position[y]","times":[0,0.4833333194255829],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x03.position[z]","times":[0,0.4833333194255829],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x03.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.09657429903745651,-0.7545965909957886,-1.7802358865737915,-0.7545965909957886,0.09657429903745651],"type":"vector"},{"name":"0x03.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.41555067896842957,0.16554412245750427,0,0.16554412245750427,0.41555067896842957],"type":"vector"},{"name":"0x03.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.18460871279239655,0.1591869443655014,0.03804817795753479,0.1591869443655014,0.18460871279239655],"type":"vector"},{"name":"0x14.position[x]","times":[0,0.4833333194255829],"values":[-0.41413548588752747,-0.41413548588752747],"type":"vector"},{"name":"0x14.position[y]","times":[0,0.4833333194255829],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x14.position[z]","times":[0,0.4833333194255829],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x14.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.05000019073486328,1.4534176588058472,0.2289872020483017,1.4534176588058472,0.05000019073486328],"type":"vector"},{"name":"0x14.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,-0.03845972567796707,0,-0.03845972567796707,0],"type":"vector"},{"name":"0x14.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,-0.04256770759820938,0,-0.04256770759820938,0],"type":"vector"},{"name":"0x0F.position[x]","times":[0,0.4833333194255829],"values":[0.41413450241088867,0.41413450241088867],"type":"vector"},{"name":"0x0F.position[y]","times":[0,0.4833333194255829],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x0F.position[z]","times":[0,0.4833333194255829],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x0F.rotation[x]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0.05000019073486328,1.4705463647842407,1.6699310541152954,1.4705463647842407,0.05000019073486328],"type":"vector"},{"name":"0x0F.rotation[y]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,-0.00668419199064374,0,-0.00668419199064374,0],"type":"vector"},{"name":"0x0F.rotation[z]","times":[0,0.06666667014360428,0.23333333432674408,0.4000000059604645,0.4833333194255829],"values":[0,-0.007287430111318827,0,-0.007287430111318827,0],"type":"vector"},{"name":"0x0C.position[x]","times":[0,0.4833333194255829],"values":[0.50975501537323,0.50975501537323],"type":"vector"},{"name":"0x0C.position[y]","times":[0,0.4833333194255829],"values":[-27.396400451660156,-27.396400451660156],"type":"vector"},{"name":"0x0C.position[z]","times":[0,0.4833333194255829],"values":[1.1306300163269043,1.1306300163269043],"type":"vector"},{"name":"0x0C.rotation[x]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[y]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x0C.rotation[z]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x0A.position[x]","times":[0,0.4833333194255829],"values":[-0.5592799782752991,-0.5592799782752991],"type":"vector"},{"name":"0x0A.position[y]","times":[0,0.4833333194255829],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x0A.position[z]","times":[0,0.4833333194255829],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x0A.rotation[x]","times":[0,0.23333333432674408,0.4833333194255829],"values":[-0.699726939201355,-0.7398398518562317,-0.699726939201355],"type":"vector"},{"name":"0x0A.rotation[y]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x0A.rotation[z]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x0A.scale[x]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1299999952316284,1,1],"type":"vector"},{"name":"0x0A.scale[y]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1299999952316284,1,1],"type":"vector"},{"name":"0x0A.scale[z]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1299999952316284,1,1],"type":"vector"},{"name":"0x07.position[x]","times":[0,0.4833333194255829],"values":[0.5592799782752991,0.5592799782752991],"type":"vector"},{"name":"0x07.position[y]","times":[0,0.4833333194255829],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x07.position[z]","times":[0,0.4833333194255829],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x07.rotation[x]","times":[0,0.23333333432674408,0.4833333194255829],"values":[-0.7052386999130249,0,-0.7052386999130249],"type":"vector"},{"name":"0x07.rotation[y]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x07.rotation[z]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x04.position[x]","times":[0,0.4833333194255829],"values":[-20.56529998779297,-20.56529998779297],"type":"vector"},{"name":"0x04.position[y]","times":[0,0.4833333194255829],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x04.position[z]","times":[0,0.4833333194255829],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x04.rotation[x]","times":[0,0.23333333432674408,0.4833333194255829],"values":[0.3786090314388275,-2.4434609413146973,0.3786090314388275],"type":"vector"},{"name":"0x04.rotation[y]","times":[0,0.23333333432674408,0.4833333194255829],"values":[0.31823110580444336,-0.45378559827804565,0.31823110580444336],"type":"vector"},{"name":"0x04.rotation[z]","times":[0,0.23333333432674408,0.4833333194255829],"values":[-0.5108264684677124,0.3141592741012573,-0.5108264684677124],"type":"vector"},{"name":"0x04.scale[x]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1519999504089355,1,1],"type":"vector"},{"name":"0x04.scale[y]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1519999504089355,1,1],"type":"vector"},{"name":"0x04.scale[z]","times":[0,0.15000000596046448,0.23333333432674408,0.3166666626930237,0.4833333194255829],"values":[1,1,1.1519999504089355,1,1],"type":"vector"},{"name":"0x05.position[x]","times":[0,0.4833333194255829],"values":[20.56529998779297,20.56529998779297],"type":"vector"},{"name":"0x05.position[y]","times":[0,0.15000000596046448,0.4833333194255829],"values":[31.397199630737305,31.39715003967285,31.397199630737305],"type":"vector"},{"name":"0x05.position[z]","times":[0,0.4833333194255829],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x05.rotation[x]","times":[0,0.23333333432674408,0.4833333194255829],"values":[0.3857927918434143,0.5869542360305786,0.3857927918434143],"type":"vector"},{"name":"0x05.rotation[y]","times":[0,0.23333333432674408,0.4833333194255829],"values":[-0.3141592741012573,-0.7504915595054626,-0.3141592741012573],"type":"vector"},{"name":"0x05.rotation[z]","times":[0,0.23333333432674408,0.4833333194255829],"values":[0.45542970299720764,0.7592182159423828,0.45542970299720764],"type":"vector"}]});
var run_clip = THREE.AnimationClip.parse({"name":"MTNX","duration":0.4166666666666667,"tracks":[{"name":"0x00.position[x]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x00.position[y]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[69.802001953125,61.17399978637695,69.802001953125,61.17399978637695,69.802001953125],"type":"vector"},{"name":"0x00.position[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[x]","times":[0,0.4000000059604645],"values":[-0.09424760937690735,-0.09424760937690735],"type":"vector"},{"name":"0x00.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x00.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x01.position[x]","times":[0,0.4000000059604645],"values":[0.0000010807500530063407,0.0000010807500530063407],"type":"vector"},{"name":"0x01.position[y]","times":[0,0.4000000059604645],"values":[44.37459945678711,44.37459945678711],"type":"vector"},{"name":"0x01.position[z]","times":[0,0.4000000059604645],"values":[4.312079906463623,4.312079906463623],"type":"vector"},{"name":"0x01.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[-0.416435569524765,-0.24190263450145721,-0.416435569524765,-0.24190263450145721,-0.416435569524765],"type":"vector"},{"name":"0x01.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x01.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x16.position[x]","times":[0,0.4000000059604645],"values":[0.2504335045814514,0.2504335045814514],"type":"vector"},{"name":"0x16.position[y]","times":[0,0.4000000059604645],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x16.position[z]","times":[0,0.4000000059604645],"values":[-0.36787500977516174,-0.36787500977516174],"type":"vector"},{"name":"0x16.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[-0.10471975803375244,-0.5235987901687622,-0.5235987901687622,-0.06981316953897476,-0.10471975803375244],"type":"vector"},{"name":"0x16.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x16.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x11.position[x]","times":[0,0.4000000059604645],"values":[-0.2504335045814514,-0.2504335045814514],"type":"vector"},{"name":"0x11.position[y]","times":[0,0.4000000059604645],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x11.position[z]","times":[0,0.4000000059604645],"values":[-0.36787348985671997,-0.36787348985671997],"type":"vector"},{"name":"0x11.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[-0.5235987901687622,-0.06981316953897476,-0.10471975803375244,-0.5235987901687622,-0.5235987901687622],"type":"vector"},{"name":"0x11.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x11.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x02.position[x]","times":[0,0.4000000059604645],"values":[-11.213299751281738,-11.213299751281738],"type":"vector"},{"name":"0x02.position[y]","times":[0,0.4000000059604645],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x02.position[z]","times":[0,0.4000000059604645],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x02.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[0.20943951606750488,0.48869219422340393,-0.45378559827804565,-1.36275315284729,0.20943951606750488],"type":"vector"},{"name":"0x02.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x02.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x03.position[x]","times":[0,0.4000000059604645],"values":[11.213299751281738,11.213299751281738],"type":"vector"},{"name":"0x03.position[y]","times":[0,0.4000000059604645],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x03.position[z]","times":[0,0.4000000059604645],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x03.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[-0.45378559827804565,-1.36275315284729,0.20943951606750488,0.48869219422340393,-0.45378559827804565],"type":"vector"},{"name":"0x03.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x03.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x14.position[x]","times":[0,0.4000000059604645],"values":[-0.41413450241088867,-0.41413450241088867],"type":"vector"},{"name":"0x14.position[y]","times":[0,0.4000000059604645],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x14.position[z]","times":[0,0.4000000059604645],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x14.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[0,1.3089969158172607,1.3962633609771729,1.1079349517822266,0],"type":"vector"},{"name":"0x14.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x14.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x0F.position[x]","times":[0,0.4000000059604645],"values":[0.41413450241088867,0.41413450241088867],"type":"vector"},{"name":"0x0F.position[y]","times":[0,0.4000000059604645],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x0F.position[z]","times":[0,0.4000000059604645],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x0F.rotation[x]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[1.3962633609771729,1.1079349517822266,0,1.3089969158172607,1.3962633609771729],"type":"vector"},{"name":"0x0F.rotation[y]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x0F.rotation[z]","times":[0,0.4000000059604645],"values":[0,0],"type":"vector"},{"name":"0x0C.position[x]","times":[0,0.4000000059604645],"values":[0.5097500085830688,0.5097500085830688],"type":"vector"},{"name":"0x0C.position[y]","times":[0,0.4000000059604645],"values":[-27.396400451660156,-27.396400451660156],"type":"vector"},{"name":"0x0C.position[z]","times":[0,0.4000000059604645],"values":[1.1306300163269043,1.1306300163269043],"type":"vector"},{"name":"0x0C.rotation[x]","times":[0,0.4000000059604645],"values":[0.4099498987197876,0.4099498987197876],"type":"vector"},{"name":"0x0C.rotation[y]","times":[0,0.4000000059604645],"values":[-0.22577229142189026,-0.22577229142189026],"type":"vector"},{"name":"0x0C.rotation[z]","times":[0,0.4000000059604645],"values":[0.17326843738555908,0.17326843738555908],"type":"vector"},{"name":"0x0A.position[x]","times":[0,0.4000000059604645],"values":[-0.5592799782752991,-0.5592799782752991],"type":"vector"},{"name":"0x0A.position[y]","times":[0,0.4000000059604645],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x0A.position[z]","times":[0,0.4000000059604645],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x0A.rotation[x]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.710696280002594,-0.5181533694267273,-1.0943372249603271,-0.710696280002594],"type":"vector"},{"name":"0x0A.rotation[y]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.06042574346065521,0.07063470035791397,-0.23213228583335876,-0.06042574346065521],"type":"vector"},{"name":"0x0A.rotation[z]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[0.05408041924238205,0.15868167579174042,-0.11818112432956696,0.05408041924238205],"type":"vector"},{"name":"0x07.position[x]","times":[0,0.4000000059604645],"values":[0.5592799782752991,0.5592799782752991],"type":"vector"},{"name":"0x07.position[y]","times":[0,0.4000000059604645],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x07.position[z]","times":[0,0.4000000059604645],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x07.rotation[x]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.6981316804885864,-1.0821040868759155,-0.514872133731842,-0.6981316804885864],"type":"vector"},{"name":"0x07.rotation[y]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[0,0.22689279913902283,-0.06981316953897476,0],"type":"vector"},{"name":"0x07.rotation[z]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[0,0.116937056183815,-0.1745329201221466,0],"type":"vector"},{"name":"0x04.position[x]","times":[0,0.4000000059604645],"values":[-20.56529998779297,-20.56529998779297],"type":"vector"},{"name":"0x04.position[y]","times":[0,0.4000000059604645],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x04.position[z]","times":[0,0.4000000059604645],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x04.rotation[x]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.48346665501594543,-1.5707963705062866,2.268928050994873,-0.48346665501594543],"type":"vector"},{"name":"0x04.rotation[y]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.0494905561208725,-0.11249083280563354,0,-0.0494905561208725],"type":"vector"},{"name":"0x04.rotation[z]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[-0.34925782680511475,-0.2914193570613861,-0.34925782680511475,-0.3141592741012573,-0.34925782680511475],"type":"vector"},{"name":"0x05.position[x]","times":[0,0.4000000059604645],"values":[20.56529998779297,20.56529998779297],"type":"vector"},{"name":"0x05.position[y]","times":[0,0.4000000059604645],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x05.position[z]","times":[0,0.4000000059604645],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x05.rotation[x]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[-0.02096838690340519,2.268928050994873,-1.5707963705062866,-0.02096838690340519],"type":"vector"},{"name":"0x05.rotation[y]","times":[0,0.10000000149011612,0.30000001192092896,0.4000000059604645],"values":[0.037088245153427124,0,0.11344639956951141,0.037088245153427124],"type":"vector"},{"name":"0x05.rotation[z]","times":[0,0.10000000149011612,0.20000000298023224,0.30000001192092896,0.4000000059604645],"values":[0.39685121178627014,0.3141592741012573,0.39685121178627014,0.2879793345928192,0.39685121178627014],"type":"vector"}]});
var punch_clip = THREE.AnimationClip.parse({"name":"MTNX","duration":0.5,"tracks":[{"name":"0x00.position[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,0,-8.960000038146973,0],"type":"vector"},{"name":"0x00.position[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[68.85199737548828,59.105499267578125,61.61800003051758,68.85199737548828],"type":"vector"},{"name":"0x00.position[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,5.360000133514404,-11.470600128173828,0],"type":"vector"},{"name":"0x00.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.04847791790962219,0.3490658402442932,0.5106641054153442,-0.04847791790962219],"type":"vector"},{"name":"0x00.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-1.2217304706573486,1.0471975803375244,0],"type":"vector"},{"name":"0x00.rotation[z]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x01.position[x]","times":[0,0.4833333194255829],"values":[0.0000010807500530063407,0.0000010807500530063407],"type":"vector"},{"name":"0x01.position[y]","times":[0,0.4833333194255829],"values":[44.37459945678711,44.37459945678711],"type":"vector"},{"name":"0x01.position[z]","times":[0,0.4833333194255829],"values":[4.312079906463623,4.312079906463623],"type":"vector"},{"name":"0x01.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.019332315772771835,-0.0053961570374667645,-0.3612552285194397,-0.019332315772771835],"type":"vector"},{"name":"0x01.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,0.625332236289978,-0.8389989137649536,0],"type":"vector"},{"name":"0x01.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-0.2698959708213806,0.3677356541156769,0],"type":"vector"},{"name":"0x16.position[x]","times":[0,0.4833333194255829],"values":[0.2504335045814514,0.2504335045814514],"type":"vector"},{"name":"0x16.position[y]","times":[0,0.4833333194255829],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x16.position[z]","times":[0,0.4833333194255829],"values":[-0.36787500977516174,-0.36787500977516174],"type":"vector"},{"name":"0x16.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.02174592949450016,-0.3945351541042328,-0.48602011799812317,-0.02174592949450016],"type":"vector"},{"name":"0x16.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.13367563486099243,0.09363552182912827,0.10312382131814957,0.13367563486099243],"type":"vector"},{"name":"0x16.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.12843912839889526,0.04238217696547508,0.0691194012761116,0.12843912839889526],"type":"vector"},{"name":"0x11.position[x]","times":[0,0.4833333194255829],"values":[-0.2504335045814514,-0.2504335045814514],"type":"vector"},{"name":"0x11.position[y]","times":[0,0.4833333194255829],"values":[-34.06945037841797,-34.06945037841797],"type":"vector"},{"name":"0x11.position[z]","times":[0,0.4833333194255829],"values":[-0.36787348985671997,-0.36787348985671997],"type":"vector"},{"name":"0x11.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.02174592949450016,-0.56704181432724,-0.40779268741607666,-0.02174592949450016],"type":"vector"},{"name":"0x11.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.13367651402950287,0.2127922773361206,-0.13820093870162964,-0.13367651402950287],"type":"vector"},{"name":"0x11.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.1284387856721878,-0.3372499644756317,-0.1235530823469162,-0.1284387856721878],"type":"vector"},{"name":"0x02.position[x]","times":[0,0.4833333194255829],"values":[-11.213299751281738,-11.213299751281738],"type":"vector"},{"name":"0x02.position[y]","times":[0,0.4833333194255829],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x02.position[z]","times":[0,0.4833333194255829],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x02.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.09657429903745651,-1.1763274669647217,-1.1804832220077515,0.09657429903745651],"type":"vector"},{"name":"0x02.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.41555067896842957,0.2726570665836334,-0.5116275548934937,-0.41555067896842957],"type":"vector"},{"name":"0x02.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.18460871279239655,-0.18460871279239655,0.2888467609882355,-0.18460871279239655],"type":"vector"},{"name":"0x03.position[x]","times":[0,0.4833333194255829],"values":[11.213299751281738,11.213299751281738],"type":"vector"},{"name":"0x03.position[y]","times":[0,0.4833333194255829],"values":[-1.0430550575256348,-1.0430550575256348],"type":"vector"},{"name":"0x03.position[z]","times":[0,0.4833333194255829],"values":[3.205125093460083,3.205125093460083],"type":"vector"},{"name":"0x03.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.09657429903745651,-0.6666197776794434,-1.1546138525009155,0.09657429903745651],"type":"vector"},{"name":"0x03.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.41555067896842957,0.7329475283622742,-0.1639176607131958,0.41555067896842957],"type":"vector"},{"name":"0x03.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.18460871279239655,0.18460871279239655,0.5145230293273926,0.18460871279239655],"type":"vector"},{"name":"0x14.position[x]","times":[0,0.4833333194255829],"values":[-0.41413450241088867,-0.41413450241088867],"type":"vector"},{"name":"0x14.position[y]","times":[0,0.4833333194255829],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x14.position[z]","times":[0,0.4833333194255829],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x14.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.050000015646219254,1.1840016841888428,1.0855755805969238,0.050000015646219254],"type":"vector"},{"name":"0x14.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-7.895311426864282e-8,0.046723511070013046,0],"type":"vector"},{"name":"0x14.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,5.107618861188712e-8,-0.07024932652711868,0],"type":"vector"},{"name":"0x0F.position[x]","times":[0,0.4833333194255829],"values":[0.41413450241088867,0.41413450241088867],"type":"vector"},{"name":"0x0F.position[y]","times":[0,0.4833333194255829],"values":[-27.47760009765625,-27.47760009765625],"type":"vector"},{"name":"0x0F.position[z]","times":[0,0.4833333194255829],"values":[0.5354700088500977,0.5354700088500977],"type":"vector"},{"name":"0x0F.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.050000015646219254,1.1214525699615479,1.1279993057250977,0.050000015646219254],"type":"vector"},{"name":"0x0F.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,0.25605377554893494,-1.53377790468312e-8,0],"type":"vector"},{"name":"0x0F.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-0.07065179944038391,9.597042049946936e-10,0],"type":"vector"},{"name":"0x0C.position[x]","times":[0,0.4833333194255829],"values":[0.5097500085830688,0.5097500085830688],"type":"vector"},{"name":"0x0C.position[y]","times":[0,0.4833333194255829],"values":[-27.396400451660156,-27.396400451660156],"type":"vector"},{"name":"0x0C.position[z]","times":[0,0.4833333194255829],"values":[1.1306300163269043,1.1306300163269043],"type":"vector"},{"name":"0x0C.rotation[x]","times":[0,0.30000001192092896,0.4833333194255829],"values":[0,1.3512827157974243,0],"type":"vector"},{"name":"0x0C.rotation[y]","times":[0,0.30000001192092896,0.4833333194255829],"values":[0,-0.2727425992488861,0],"type":"vector"},{"name":"0x0C.rotation[z]","times":[0,0.30000001192092896,0.4833333194255829],"values":[0,-0.5690611600875854,0],"type":"vector"},{"name":"0x0C.scale[x]","times":[0,0.30000001192092896,0.4833333194255829],"values":[1,0.5771480202674866,1],"type":"vector"},{"name":"0x0C.scale[y]","times":[0,0.30000001192092896,0.4833333194255829],"values":[1,0.5807430148124695,1],"type":"vector"},{"name":"0x0C.scale[z]","times":[0,0.30000001192092896,0.4833333194255829],"values":[1,0.5771480202674866,1],"type":"vector"},{"name":"0x0A.position[x]","times":[0,0.4833333194255829],"values":[-0.5592799782752991,-0.5592799782752991],"type":"vector"},{"name":"0x0A.position[y]","times":[0,0.4833333194255829],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x0A.position[z]","times":[0,0.4833333194255829],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x0A.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.699726939201355,-1.3806496858596802,-0.2025611698627472,-0.699726939201355],"type":"vector"},{"name":"0x0A.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-0.7644175887107849,0,0],"type":"vector"},{"name":"0x0A.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0,-0.6194225549697876,0.5224171876907349,0],"type":"vector"},{"name":"0x0A.scale[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,2.3411200046539307,1],"type":"vector"},{"name":"0x0A.scale[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,1.6387799978256226,1],"type":"vector"},{"name":"0x0A.scale[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,2.338710069656372,1],"type":"vector"},{"name":"0x07.position[x]","times":[0,0.4833333194255829],"values":[0.5592799782752991,0.5592799782752991],"type":"vector"},{"name":"0x07.position[y]","times":[0,0.4833333194255829],"values":[-14.277000427246094,-14.277000427246094],"type":"vector"},{"name":"0x07.position[z]","times":[0,0.4833333194255829],"values":[-0.5546950101852417,-0.5546950101852417],"type":"vector"},{"name":"0x07.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.7052386999130249,-0.6981316804885864,-0.6981316804885864,-0.7052386999130249],"type":"vector"},{"name":"0x07.rotation[y]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x07.rotation[z]","times":[0,0.4833333194255829],"values":[0,0],"type":"vector"},{"name":"0x04.position[x]","times":[0,0.4833333194255829],"values":[-20.56529998779297,-20.56529998779297],"type":"vector"},{"name":"0x04.position[y]","times":[0,0.4833333194255829],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x04.position[z]","times":[0,0.4833333194255829],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x04.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.3786090314388275,0,-1.2783995866775513,0.3786090314388275],"type":"vector"},{"name":"0x04.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.31823110580444336,-0.044303085654973984,-1.0862998962402344,0.31823110580444336],"type":"vector"},{"name":"0x04.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.5230437517166138,-1.7266333103179932,-0.3295425772666931,-0.5230437517166138],"type":"vector"},{"name":"0x04.scale[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,1.2415399551391602,1],"type":"vector"},{"name":"0x04.scale[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,1.2423100471496582,1],"type":"vector"},{"name":"0x04.scale[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[1,1,1.2423100471496582,1],"type":"vector"},{"name":"0x05.position[x]","times":[0,0.4833333194255829],"values":[20.56529998779297,20.56529998779297],"type":"vector"},{"name":"0x05.position[y]","times":[0,0.4833333194255829],"values":[31.397199630737305,31.397199630737305],"type":"vector"},{"name":"0x05.position[z]","times":[0,0.4833333194255829],"values":[3.9478800296783447,3.9478800296783447],"type":"vector"},{"name":"0x05.rotation[x]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.3857927918434143,-0.10492675006389618,0.743971049785614,0.3857927918434143],"type":"vector"},{"name":"0x05.rotation[y]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[-0.3141592741012573,-0.047482557594776154,-0.3985302448272705,-0.3141592741012573],"type":"vector"},{"name":"0x05.rotation[z]","times":[0,0.18333333730697632,0.30000001192092896,0.4833333194255829],"values":[0.45542970299720764,1.6120175123214722,0.8205630779266357,0.45542970299720764],"type":"vector"}]});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment